Jump to content

Gustavo.deo

Members
  • Posts

    43
  • Joined

  • Last visited

Posts posted by Gustavo.deo

  1. Estou tentando publicar no servidor para teste em standard alone mesmo... mas quando tento acessar no servidor, fica loadind mas não abre nem o template inicial do Unigui... tem q colocar alguma dll para funcionar??? Pois no pé de desenvolvimento está funcionando perfeitamente..

    Obrigado!!!

  2. some example of decode and encode for qr code ???

    I need to read a vehicle license plate and generate a qr code with the identification of this card ...

    and then I need to read a generated qr code and extract the information ... any examples or tips?

  3. Hello ... Thank you in advance for your attention ...

    i

    I made the code

     

      fTest: = TfTeste.Create (UniApplication);

    if fTeste.ShowModal = MrOk then

      FreeAndNil (fTest);

     

    But it did not work the way I need it ..

     

    I need it when calling ShowModal, stop the execution and only go to the next execution lines, when the fTest screen is closed ...

     

    I need this, because after closing the screen and before destroying the form of memory, I will have other objects to be treated ...

     

    How can I do it???

     

    Thank you!!!

  4. Why ?!

     

    Wherefrom did you download this build?

     

    Please use the latest version and build !

     

     

    With the new version it worked out !!!

    Thank you!!!

    Now the other doubt ...

    Can I save the order of the grid columns that were scrambled at runtime?

    At the opening, can you recover that order ???

    Thank you!

  5.  

    Hi,

    UniDBGrid1 -> Options -> dgColumnMove = True
    
    UniDBGrid1.Columns[1].Index := NewIndex;
    thanks for the feedback!
     
    I have version 0.99.96.1346 ..., in this version I did not find the dgColumnMove option ...
     
    Leveraging your knowledge ... how do I save and load the user's column schema at runtime?
     
    Thank you!!!
  6. but I call showmodal, should not stop until I close the screen, and just continue ????

    how should I do to wait for me to close the screen to proceed ???

    thank you!!!

  7. I'm trying to use Free Form in the application ...
    But when using the code below, it does not showmodal, going straight through to the next instruction ...

    I already tried the following options ..

     

    var 

      fTeste : TfTeste;

    begin
    try
      fTest: = TfTeste.Create (UniApplication);
      fTeste.Showmodal;
    finally
      FreeAndNil (fTest);

    end;


    and I already tried

     

    var

      fTeste : TFteste;

    begin
      fTest: = TfTeste.Create (UniApplication);
      fTeste.Showmodal;
      FreeAndNil (fTest);

    ..

    Can someone help me???

×
×
  • Create New...