Jump to content

Wilton Ergon

uniGUI Subscriber
  • Posts

    626
  • Joined

  • Last visited

  • Days Won

    21

Posts posted by Wilton Ergon

  1. I'm testing the trial version, however to send the executable for my vps server running windows server application does not start, just get the message starting ...
     
    after I created just a simple application with a button and a hello world, and is the same.
    test on two remote servers.
     
    in the trial version of its limitations and do not run on windows server?

     

     

  2. ShowModal continues running the application.
    obtaining the return when the form is completed

     

     
    function PegaData(padrao: TDatetime; texto: string; ValidaAno: Boolean): Tdatetime;
    begin
        Result := 0;
        if padrao > 0 then
           frmPegaData.edDate.date := padrao;
        frmPegaData.lbldata.Caption := texto;
        frmPegaData.ValidaAno := ValidaAno;
        if frmPegaData.ShowModal =mrOk then
           BEGIN
           if frmPegaData.edDate.date > 1 then
              Result := frmPegaData.edDate.date;
          END;
    End;
     

    in line

        if frmPegaData.ShowModal =mrOk then

    compile erro  - Incompatible types.

     

     

     

     

    function PegaData(padrao: TDatetime; texto: string; ValidaAno: Boolean): Tdatetime;
    begin
        Result := 0;
        if padrao > 0 then
           frmPegaData.edDate.date := padrao;
        frmPegaData.lbldata.Caption := texto;
        frmPegaData.ValidaAno := ValidaAno;
         frmPegaData.ShowModal;
         if  frmpegaData.IsOk then   //IsOK var type boolean;
              Result := frmPegaData.edDate.date;
    End;

     

     

    after showmodal, line if frmpegadata.isOk    its run...

     

     

     

  3. how to increase the session timeout
    I'm testing the trial version and test application, been constantly ends up alone with the timeout message, so that the trial version can be set to 3 minutes.
    how to increase this time or show a question to the User if you want to continue ..
    our great master of the magicians, Farshad Mohajeri, says the trial version has some limitations, I wonder where I find what those limitations.
    because we are about to purchase the product, the incredible ease of use it to developers in Delphi.

     

×
×
  • Create New...