Jump to content

sagt3k

Members
  • Posts

    59
  • Joined

  • Last visited

Everything posted by sagt3k

  1. T:=TUniMenuItem.Create(ApplMainForm); OK I replaced, but it does not work the same. A doubt, but the main form when they are in 'vcl_session' or the web session is always 'ApplMainForm' ? Where ApplMainForm is assigned as : TApplMainForm = class(TUniForm) .... function ApplMainForm: TApplMainForm; ....
  2. Test case: //T2 is created on MainMenu, and UniButton3 on MainForm procedure TMainForm.T2Click(Sender: TObject); begin UniApplication.Terminate('') end; procedure TMainForm.UniButton3Click(Sender: TObject); Var T:TUniMenuItem; Begin T:=TUniMenuItem.Create(UniApplication); T.FreeOnRelease; T.Name:='T1'; MainMenu.Items.Add(T); T.OnClick:=T2.OnClick; T.Visible:=True; T.Enabled:=True; T.Caption:='T1'; end; The problem is that T1 is created at runtime, it does not work when pressed. In practice I have to create a dynamic menu at run time and assign events at runtime. Thanks in advance for your support.
  3. Hi I would assign an TNotifyEvent object to another object T1.OnClick: = T2.OnClick; T2.Onclick = TNotifyEvent is created directly on the program, and T1.OnClick is null, I would assign OnClick T2 to T1 or other events, but apparently does not work at RunTime T1.Onclick after I press the menu web T1. How can I fix this? Thanks
  4. Hello to all, Me and my group decided to develop our new software UNIGUI, but it is important to know the roadmap of development UNIGUI, so to better estimate costs and development time.
  5. In the process of converting a great management software that is currently been developed in Delphi 7 with a hundred masks for a huge company with hundreds of licenses, we would like to know if the final version marketed unigui will be available shortly. If so, when? We would also like to know if the project is the possibility of using StringGrid as a pivot, ie the ability to merge cells, formatting, select multiple cells to make sums, similar to Excel. Thanks.
  6. Thank you, but then before generating the SessionID, it would be interesting to be able to generate the string us with our algorithm. This is possible?
  7. Hi I am new to this topic. Congratulations for UNIGUI it's exceptional. Two questions: 1) It's possible, in the generation of a session, to give ourselves a SessionID value to string? It would be interesting to manage the value of the session in order to drive value creation. 2) If I had two independent server applications, with two ports 8077,8088 admit, it is possible to generate the session with the first application, the session redirected to the second application server, of course, the main form they would be on the second application. The first application handles the login and the generation of the session. This could be useful for creating different instances of the second application to balance the access of different PC-servers, for example. thanks SAGT3K
×
×
  • Create New...