-
Content Count
158 -
Joined
-
Last visited
-
Days Won
9
Jean-Marc Kiener last won the day on June 18 2018
Jean-Marc Kiener had the most liked content!
Community Reputation
21 ExcellentAbout Jean-Marc Kiener
-
Rank
Active Member
Contact Methods
-
Skype
jean-marc.kiener
Profile Information
-
Gender
Male
-
Location
Switzerland
Recent Profile Visitors
222 profile views
-
Works fine. Thank you very much.
-
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.
-
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.
-
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?
-
Sorry for the big delay. I was busy in another project. I will have a look at the code and get then back here.
-
Me too..
-
FRp is not created?
-
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?
-
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.
-
Jean-Marc Kiener changed their profile photo
-
Application crash/timeout with "worker process 'xxxx' failed to stop a listener channel for protocol 'http'"
Jean-Marc Kiener replied to Wicket's topic in General
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. -
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!
- 5 replies
-
- javascript
- pascal
-
(and 1 more)
Tagged with:
-
1422: Error compiling uniGUI25dcl.dpk
Jean-Marc Kiener replied to Jean-Marc Kiener's topic in Installation
Same with version 1404. Must be a problem of Rad Studio 10.2 Update 2. Any ideas? -
[dcc32 Fataler Fehler] uniGUI25dcl.dpk(73): F2051 Unit ExpertUtilities wurde mit einer unterschiedlichen Version von ToolsAPI.IOTASourceEditor compiliert Tokyo 10.2 Update 2
-
TUniDBTreeGrid: How detect if a cell is on a grouped row
Jean-Marc Kiener replied to Jean-Marc Kiener's topic in General
Yes, i have to know if the cell i click on is on a grouped row or not. With "Row.ChildNodes = 0" i could detect this. That's ok. How can that be done?