Jump to content

Bocchi

uniGUI Subscriber
  • Posts

    56
  • Joined

  • Last visited

Posts posted by Bocchi

  1. 6 minutes ago, Sherzod said:

    Hi,

    Which edition of UniGUI are you using?

    How can we reproduce this issue?

    Hi,

    version 1.50.0.1481

    I can tell you what the form do, at this moment I can't give you external access to the application.
    I'm using a DBGrid loading data from db with one hidden column, some readonly  columns and some editable with roweditor.

  2. Hi, 

    I've a strange problem with roweditor's buttons.

    The buttons seem to disappear when I try to edit the last row of the grid. In this case buttons are placed on the top of the row editor while when editing other rows the buttons are placed on the bottom.

    How can I force to place always buttons on bottom?

    Thanks

    Alessandro

    bad.jpg

    ok.jpg

    rows.jpg

  3. I have the same problems. Event OnBrowserClose is not fired. Also TerminateOnBrowserClose doesn't work.
    I'm using UniGUI 1.50.0.1481.

    - Microsoft Internet Explorer 11.836.18362.0 -> WORK
    - Microsoft Edge 83.0.478.37 -> NOT WORK
    - Google Chrome 83.0.4103.61 -> NOT WORK

  4. My environment:

    - uniGUI 1.50.0.1481

    - Delphi 10.3.3

    - Windows 10 64 bit

    I created a 32 bit application with only one form and a TWebBrowser component that call uniGUI Touch Demos (Demos\Touch\AllFeatures\mdemo.exe).

    Page opens correctly but I cannot select any items from the UnimNestedList.

    How can I solve this?

    Thanks.

    UNIGUI_TOUCH_DEMO.thumb.png.2366b882fa5e05988f4846bfa7337a15.png

     

  5. Hi,

    Yes I did. 

    The code is something like this

    procedure xxx.btnbtn1Click(Sender: TObject);
    begin
      inherited;
      MessageDlg('Question?',mtConfirmation, [mbYes,mbNo], CallBackProc);
    end;

     

    procedure xxx.CallBackProc(Sender: TComponent; Res: Integer);
    begin
      inherited;

      if (Res = mrNo) then
        Exit;

    ShowMask('message');

    UniSession.Synchronize;

    code

    HideMask;

     

    The mask appears for less than a second before messagebox is displayed, then it disappears.

    I've tried this 

     but it doesn't work.

    I also found someone saying that Synchronize doesn't work with callback procedure 

  6. Hi, 

    I have a similar problem showing the screen mask during the elaboration of the callback procedure called from a yesno MessageDlg opened with a button.

    I've disabled the button screenmask and enabled the form screenmask. I call ShowMask in callback procedure after  checking the user response. The mask appears and immediatly disappear.  

×
×
  • Create New...