
Tokay
uniGUI Subscriber-
Content Count
403 -
Joined
-
Last visited
-
Days Won
14
Tokay last won the day on April 28 2020
Tokay had the most liked content!
Community Reputation
51 ExcellentAbout Tokay
-
Rank
Advanced Member
-
No, server side nedded.
-
HI! I need to know FormStyle of the topmost form: fsNormal or fsStayOnTop, and in the different cases do the different things.
-
How to find active (topmost) form?
-
Hmmm. Ok, thank you.
-
up
-
Hi! I try to placed the TUniSweetAlert on the Application Datamodule (in the UniGUI terms). I call TUniSweetAlert.Execute and it hangs here: UniSession.ProcessEvents even after 'OK' button pushed on the alert. When TUniSweetAlert placed on the form all works fine.
-
Для дат/времен специальных фильтров очень не хватает, подтверждаю. Костыльные варианты есть, но всё не то.
-
I'ts important to understand that all the data are located in the connected to a grid dataset, but not in the grid. And all needed data manipulations should be carried out with the dataset.
-
How to check value of Public variable assigned in LoginForm at MainModule
Tokay replied to CCH4UNIGUI's topic in General
Better way for community is to tell how you fixed the issue. -
Migration from other third party components
Tokay replied to Economopoulos Costas's topic in General
DevExpress need to be rewritten, JCL and nonvisual JVCL mostly could work as is. The Indy, UniDAC, EAN I think also would work fine, QR could be rewritten, you can do the search on this forum about it. -
I've try to open descendant of the TServerControlPanelForm directly from my code (ServerControlPanelForm37.Show), not from the /server link. I also enabled soEnableSessionMonitor and soEnableSessionMonitorAdmin and added code on the descendant OnCreate: UniSession.AllowSessionAdmin := True; SessionsMenu.Enabled := True; ShowSessions1.Enabled := True; TermToolButton.Enabled := True; ShutdownServer.Enabled := True; The form shows and all needed menus and contorl is visible and enabled, but when I push the ShowSessions1 menu item, the form and the app is hangs. I used debug
-
Ok, great! The TabSessions works great. But how about the ManageServer? It's disabled. I think I found it. The soEnableSessionMonitorAdmin option is needed to enabled on the server module.
-
You can make descendant from the TServerControlPanelForm (module uniGUIServerCP). And add in the OnCreate event any translation code: with UniStringGrid1 do begin ColWidths[0] := 180; Cells[1, 0] := 'Текущий'; Cells[2, 0] := 'Пик'; Cells[3, 0] := 'Макс'; Also in your descendant form any modification is possisble.