Jump to content

pro_imaj

uniGUI Subscriber
  • Posts

    929
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by pro_imaj

  1. Hi, I get the following error while installing the latest version (1563) on Delphi, how can I solve it? ICannot load package 'uSynEdit_R2023.' It contains unit 'uSynUsp10', which is also contained in package *uSynEdit_R2019*.
  2. Thanks for the answer.@Hayri ASLAN
  3. 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.
  4. Hi, In the example below, in the example on the left, the buttons of the items are correct. The buttons of the items of the objects on the right are under the scroll. How can we make a CSS edit that will change the right upper left lower padding values for the items added to the TUniFieldContainer. RunTimeCreateWithCustomCSS.zip
  5. Thank you for the answers, we have read and evaluated all of these answers, but we could not find a solution. When will this fix? @Farshad Mohajeri
  6. There is no problem creating the runtime object on the form. But this problem occurs when creating UniFieldSet1 object, I think there is a bug here!
  7. 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;
  8. 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;
  9. Hello, Thanks for your help, you got it right, I want to do code completion, I found a resource here. https://codemirror.net/examples/autocompletion/
  10. Yes pascal. https://codemirror.net/5/mode/index.html
  11. What I want to do is mentioned here but I'm trying to figure out how to do it.
  12. Merhaba, Bu örnekte görünmüyor, ancak unigui ile bu şekilde yapıldığını nasıl gördüğümü bilmek istiyorum.
  13. Hi, Is there a way to do pascal code completion with the UniSyntaxEditEx component, can someone who has experienced this write it, thanks.
  14. Merhaba, Sheet1 olan sayfa adını değiştirmenin artık bir yolu var mı?
  15. Hi, Tab closing 1541 version ajax error. Hello, while the attached example works fine in previous versions, error occurs in the new version. Thank you. close.mp4 pageact.zip
  16. 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...