Jump to content

snow

uniGUI Subscriber
  • Posts

    49
  • Joined

  • Last visited

Everything posted by snow

  1. Hi all, I am using uniGUI version 1.90.0.1563. I set up a single hyperserver for multiple applications in subdirectories, like this: D:\hyperserver.exe D:\folderOne\one.exe D:\folderTwo\two.exe I added these lines to the hyperserver.cdf file: [application-0] enabled=1 alias=one binary_name=folderOne\one.exe max_nodes=1 [application-1] enabled=1 alias=two binary_name=folderTwo\two.exe max_nodes=1 Works fine, apart from the cache. Hyperserver uses folder D:\cache, one.exe uses D:\folderOne\cache and two.exe uses D:\folderTwo\cache. So basically my applications create files in their respective cache, but hyperserver cant't find them because it's looking in the wrong folder. Copied form logfile: hyper_server.exe: 00001FD4: 09:43:54 [HandleFileRequest[127.0.0.1]]:File not found: D:\cache\one\n0\0_Lu3oLOfBSX10E3B6404\favicon.ico hyper_server.exe: 00000B8C: 09:43:54 [HandleFileRequest[127.0.0.1]]:File not found: D:\cache\one\n0\res\__0F4A15AF66BC1FF976081089.png hyper_server.exe: 00002068: 09:43:54 [HandleFileRequest[127.0.0.1]]:File not found: D:\cache\one\n0\res\__AF7772F92930D13BD8A84A63.png hyper_server.exe: 000033A4: 09:43:54 [HandleFileRequest[127.0.0.1]]:File not found: D:\cache\one\n0\res\__B323E5AD16F4E975CA637FDE.png hyper_server.exe: 00002DA4: 09:43:54 [HandleFileRequest[127.0.0.1]]:File not found: D:\cache\one\n0\res\__28A5BAA8CD8E242BDC50A713.jpg I noticed that a recent release added the hyperserver parameter files_folder. So I tried setting cache_folder like this: cache_folder=folderOne\cache I have also tried setting it like this: cachefolder=folderOne\cache However, neither of them works. I have not tried setting the cache folders of my applications to D:\cache, because they are separate applications and should have separate cache folders. What hyperserver parameter do i need to use for this to work? Or does hyperserver simply not support cache folders in subdirectories? Thanks in advance.
  2. Thank you so much... that did the trick!!! Thanks to everyone involved for your support. Greatly appreciated!!!
  3. With Samsung virtual keyboard it's just the same.
  4. No, i meant the "blur" event... I've already tried with ExtEvent keypress... this doesn't fire either.
  5. I changed TabStop to false for both Controls in the sample project above. Inside TUniComboBox it works, inside TUniEdit focus still changes to the next control (no key event is fired) when pressing the virtual button.
  6. Unfortunately, this doesn't change the behaviour at all. We're already using special prefixes/suffixes for the scanners to handle scans. However, in this case nothing is scanned but the program shall handle input via the virtual keyboard. Different virtual keyboards don't seem to help. With Samsung virtual keyboard (on mobile phone) it just behaves the same. I don't see how "blur" event can help me in this case. It fires every time the control loses focus... is there any way to catch the pressed key with this event?
  7. With a standard keyboard everything work's fine. We are using our software on different scanner models. On models with hardware keyboard there's no problem. The problem appears on models without hardware keyboard where the virtual keyboard has to be used. Here no keyboard event is fired whatsoever... instead focus changes to the next control. As this behaviour of TUniEdit is different from e.g. TUniComboBox your help on how to catch OnKeyDown in this case is greatly appreciated...
  8. Unfortunately, there's no key event fired whatsoever when pressing this button inside a TUniEdit.
  9. But why is it working in TUniComboBox and not in TUniEdit? This is a problem as we often catch KeyDown-Event for Return in our application...
  10. I mean the blue Open/Ok-Button (see attached screenshot). When pressing this button inside a TUniEdit none of the above mentioned key events is fired. Instead focus changes to the next control.
  11. Just set Breakpoints and touch the mentioned button when inside the edit... shouldn't stop there. Thx.
  12. Hi there, my problem is that neither OnKeyDown nor OnKeyPress is firing when I press the Enter/Return key on the Android virtual keyboard (GBoard) inside a TUniEdit component. Inside a TUniComboBox it's working though... Any ideas how to catch the event? Using Professional Edition v1.90.0.1563 Attached is a simple project where it can be reproduced. Thanks in advance. Project1.zip
  13. Hi Sherzod, is there a possibility to rewrite the renderer function on cell base? The problem with rewriting the renderer function for a column is that my FixedRow gets painted like a normal cell. Thanks in advance. Regards
  14. Hi Sherzod, yes I have. But I found only solutions for modifying whole columns and also not really during runtime. What I need is a function like AddCheckBox(Col, Row) which I can call during runtime. Is that possible? Regards
  15. Hi there, is it possible to add a checkbox to just a single cell (not whole column) of TUniStringGrid during runtime? If so, how to achieve that? Thanks a lot in advance for your help. Regards
  16. Hi, I need to add a ClientEvent.ExtEvent to a form during runtime as the code is created dynamically. If added via the designer everything works as expected but if I add it in runtime (FormCreate) it doesn't work. To show what I mean I've added two simple projects showing a messagebox on activation of the form (or rather not). Is there a way to solve this problem? Thanks in advance. Regards works.zip doesn't work.zip
  17. That did the trick: .x-grid-td { line-height: normal; vertical-align: middle; }
×
×
  • Create New...