Jump to content

Jean-Marc Kiener

uniGUI Subscriber
  • Posts

    220
  • Joined

  • Last visited

  • Days Won

    10

Everything posted by Jean-Marc Kiener

  1. The RESTResponse creates and returns a valid TJSONObject. You do not have to create one first, i think. Comment out and see what's happened.. //Return := TJSONObject.Create;
  2. What type of programs you have? Windows Desktop Applications directly connected to a DB server? Db is local or on a other server?
  3. Hi, Because unigui is stateful i need to know how to config a gateway like netscaler to work with per example two webserver behind the gateway. Or ist there no special configuration needed?
  4. Seems that you handler mapping is not correct. You have to enable ISAPI-DLL Handler
  5. No. see: Years ago we used a constellation (Windows-apache-isapi) for deploying some application developed with morfik*. Running on apache had its drawbacks compared with IIS. So we moved to IIS. * Morfik was a fabelous IDE making database driven web applications. On server and also on client (browser) you could use FreePascal. On client the pascal code was compiled to javascript. It was an amazing platform. Unfortunately it is not developed anymore.
  6. If you have Delphi then create a new empty mobile project. Then add a webbrowser component to it and set the url to your unigui web app.
  7. Maybe frRichView use some OLE libraries who must be present on the server?
  8. Hi, We ned to show and let edit the user a ini file. TUSynMemo has a highlighter for INI Formats, TUSynIniSyn. It wopuld be very nice if we could have this higlighter also in the "language" property of TUniSyntaxEditEx. Or is there a way to add the INI highlighter by code in my project?
  9. I am not shure if i wrote my post to complicated.. I just want to know how i can get the selected rows if i press the enter key. it seems that the grid lost the selected items if i press enter before a key event occurs.
  10. Create a own local account. Run the service under this account. Set read/write permissions for this account to all directories you want to write.
  11. Hi, i updated to unigui version 1.50.0.1482. Now i have a problem in a modal search form who contains a TUniDBGrid. The grid has dgRowSelect, dgCheckSelect and dgMultiSelect set to true, so the user can select serveral rows with the keyboard. When hit the enter key i take the selected rows and do some things. I have a OnKeyDown event on the grid to catch enter key. Before updating to the new version all works like expected. Now the behaviour of the grid has changed. Immediatly after hitting enter key the selection is lost. I am not able to get the selected rows and take some action with the enter key. You can try it for yourself in "GridCheckSelect" demo. Add a OnKeyDown event handler to the grid and see whats happening. Selection is lost after hitting the enter key. Is this a bug or a wanted new behaviour of the Grid?
  12. Sorry for the big delay. I was busy in another project. I will have a look at the code and get then back here.
  13. Hi, We use a unigui project compiled to an isapi module to upload files to our network attached storage. It works very well and stable. We load big sized files (> 500 MB) without problem to our NAS. The applicaton pool runs under a special accout who has full access to the NAS directory. However, i tryed to run it as hyperserver and followed the instructions in the help file (Version 1.50.1482). It works well until it should upload some files. The upload progress starts and hang immediately. It seems to have no access to write to the NAS directory. But it is the same account as we use when we just use the compiled isapi dll. Does anyone have an idea what i am doing wrong?
  14. Our unigui app is a portal app for logging and controlling a non visual delphi program. The delphi program starts the unigui portal when itself starts and close it when itself closes. The portal app should not show any tray icon. It should run silently in background and serve the portal website for the non visual delphi program (http://localhost:8080). Running the unigui app as a service is no option. We are not allowed to install it as a service. It would be nice if we could set a property "ShowTrayIcon" in ServerModule.
  15. Did you add some database stuff to your app?. Or you use some other third parrty components?. Check for CoInitialize/CoUnitialize. There is a property "AutoInitialize" or so in the servermodule. Try to set it to true.
  16. Mostly this has to do with a component who use OLE Objects internaly. In ServerModule try AutoCoInitialize := true; Alternatively you can do this: Coinitialize(nil); try //Do your stuff here.. finally CoUninitialize; end; You have to add WinAPI.ActiveX to your "uses" section.
  17. Are there plans to write client events in pascal too? Something like this? https://github.com/bytbox/pas2js Anyone knows morfik ( http://www.morfik.com/)? With this dev-tool you are able to write in pascal for client and for server side. Client side pascal will then compiled into javascript. Great concept, very elegant. But unfortunatly morfik is not maintained anymore. Cheers!
  18. Same with version 1404. Must be a problem of Rad Studio 10.2 Update 2. Any ideas?
×
×
  • Create New...