Jump to content

BruceTTT

uniGUI Subscriber
  • Posts

    20
  • Joined

  • Last visited

Posts posted by BruceTTT

  1. I've tried both the anonymous method below and the MainModule's EnableSynchronousOperations = True and I still can't get the following form to block:

            frm:= TUWindowsLogin.Create(UniApplication);
            frm.ShowModal(
                           procedure(Sender: TComponent; Result:Integer)
                           begin
                           if Result=mrOk then
                              begin
                              temp:= frm.AuthenticatedUser;
                              end;
                           end
                         );

            ShowMessage(temp);
     

    The "ShowMessage" call runs *before* the form shows. What am I missing?

  2. Just downloaded the trial edition and made a standalone application that runs successfully on my development PC. When I move the .exe to another host and run it, the browser continually shows "Loading..." from both the local host's browser and a remote browser. Remote hosts can access the app on my Delphi/dev server successfully.

    Is this a limitation of the trial version or do I need to do further installs on new hosts besides the .exe file?

    Thanks, Bruce

  3. I'm brand new to uniGUI; is there a way to expose a desktop window for the standalone server application so it can be closed from that window instead of using task manager to close the server? I'd also like a desktop window showing the server is running on the server host.

    Thanks!

    Bruce

×
×
  • Create New...