Jump to content

pro_imaj

uniGUI Subscriber
  • Posts

    929
  • Joined

  • Last visited

  • Days Won

    5

Posts posted by pro_imaj

  1. Hi,

    To distribute a project made in Unigui, we have to install Unigui_Complete_runtime.exe on the relevant computer, is there a way to install unigui related files in our own project without this installation?
    In this way, instead of installing unigui for each project separately, I want to have the unigui files installed in the project file.

    Unigui does not make us install Sencha separately in its own distribution, the necessary files come in unigui, you can think of it that way.

  2. 22 minutes ago, Sherzod said:

    Hi,

    Use CreateOrder property. 

    The DateTimePicker, which I use as you wrote, produces the latest!

      aDate := TUniDateTimePicker.Create(self);
      aDate.Parent := UniFieldSet1;
      aDate.FieldLabel := 'DateTime' + i.ToString;
      aDate.CreateOrder := 0;
    
    
      aEdit := TUniEdit.Create(self);
      aEdit.Parent := UniFieldSet1;
      aEdit.FieldLabel := 'Edit' + i.ToString;
      aEdit.CreateOrder := 1;

    image.png.27c779e2aeb92fb6be759973827dcca6.png

  3. Hi,

    Why does Unigui TUniDateTimePicker render last?

    Why is the datetimepicker always at the bottom when I want to create objects in the commands below at runtime?

    Why doesn't Unigui generate code by order? Why does the DatetimePicker always spawn at the bottom?

     

    procedure TMainForm.UniButton2Click(Sender: TObject);
    var
      i: Integer;
      aEdit: TUniEdit;
      aCombo: TUniComboBox;
      aCheckBox: TUniCheckBox;
      aDate: TUniDateTimePicker;
      aSpin: TUniSpinEdit;
    begin
    
      aDate := TUniDateTimePicker.Create(self);
      aDate.Parent := UniFieldSet1;
      aDate.FieldLabel := 'DateTime' + i.ToString;
    
      aEdit := TUniEdit.Create(self);
      aEdit.Parent := UniFieldSet1;
      aEdit.FieldLabel := 'Edit' + i.ToString;
    
      aCombo := TUniComboBox.Create(self);
      aCombo.Parent := UniFieldSet1;
      aCombo.FieldLabel := 'Combo' + i.ToString;
    
      aCheckBox := TUniCheckBox.Create(self);
      aCheckBox.Parent := UniFieldSet1;
      aCheckBox.FieldLabel := 'CheckBox' + i.ToString;
    
      aSpin := TUniSpinEdit.Create(self);
      aSpin.Parent := UniFieldSet1;
      aSpin.FieldLabel := 'SpinEdit' + i.ToString;
    
    end;

     

    image.png.e8558c85ab05aab9d6373f66c2405dcc.png

  4. 32 minutes ago, pro_imaj said:

    This error also occurred in the 1541 version released today as Delphi 10.4. I uninstall and reinstall but the problem is not solved, what is the problem?

     

    [dcc32 Fatal Error] uniTools27.dpk(52): F1026 File not found: 'InstDecode.pas'

    image.png.3bea0b141afef30c88f822bf22aa4292.png

    We solved the problem by connecting @Farshad Mohajeri
    While installing Component, I was doing Clean first, because it deleted all DCU's in this way, there was an error.

    Thanks.

×
×
  • Create New...