Jump to content

Abaksoft

uniGUI Subscriber
  • Posts

    1558
  • Joined

  • Last visited

  • Days Won

    87

Everything posted by Abaksoft

  1. @MOSSY, Is the same team who has developed the old VCL App and your new Unigui app ? There are mens who use a conventional SQL Transactions, and mens who don't use any SQL Transaction !!! So, It is important to know how work your 2 motors ... As you describe your problem, it seems to me that is a Transaction issue.
  2. Yes each app should have its own start port. http://forums.unigui.com/index.php?/topic/14556-one-server-two-applications-one-calls-the-other/ http://www.unigui.com/doc/online_help/installing-and-configuring-hyp.htm?zoom_highlightsub=start_port
  3. Hello, If this can help you : In windows 11, we can no longer write (without admin rights) on : C:\ C:\Program Files C:\ProgramData Even with a simple iniFile. 1. Try to give all authorisations to your folders as admin rights : (read - write ). 2. Try to run your app as admin (project > options > manifest)
  4. We are using unigui with Delphi Alexandria 11.1 as a sharme. I guess there couldn't be a problem with 11.2. That said, you can do a test in a separate PC, by dowloading the community edition 11.2 and the trial unigui.
  5. Hello Muhammad, Sorry, I couldn't find a way. But if you do this setting : - MainForm : Layout : vbox - UniContainer1,2,3 : LayoutConfig > Width : 100% - UniEdit1 and UniComboBoxe1 and UniDataPicker1 LayoutConfig > Width : 100% You will get what you want (Fig 1). The idea is to put somme code like this : function window.beforeInit(sender, config) { if (width < 600) { sender.setLayout({type: "vbox"}); } else { sender.setLayout({type: "column"}); } sender.updateLayout(); } But not work. Maybe Our Friend Sherzod can help
  6. Thx to @albertovesx http://forums.unigui.com/index.php?/topic/12454-responsive-design-question-placing-tunipanels/&do=findComment&comment=66305 Can you try this : -ServerModule MainFormDisplayMode: mfPage - MainForm AlignmentControl : uniAlignmentClient Layout : Border - contTop AutoScroll : True Layout : column Flex : 1 Region : north - contCenter AutoScroll : True Layout : fit Flex : 2 Region : center - UniTabSheet1 AutoScroll : True - contBottom AutoScroll : True Layout : fit Flex : 1 Region : south Technique2.1.7z Technique2.2.7z
  7. Ok. You have to add an other Layout logic under containers. I will try to do it tomorrow ان شاء الله
  8. Dears, ============= Responsive : ============= There is no thing to do. Only this : - ServerModule > MainFormDisplayMode : mfPage - MainForm > AlignmentControl : uniAlignmentClient > Layout : Column Try this ... Technique2.7z
  9. Try this example Responsive layout That what i sent you in Layout_Exemple.7z http://forums.unigui.com/index.php?/topic/7848-layout-advanced-tutorial/&do=findComment&comment=48504 It's for Mobile, but you can use the same logic on Desktop. Responsive.7z
  10. Muhammed, Try this: http://forums.unigui.com/index.php?/topic/13475-one-page-back-one-page-forward/&do=findComment&comment=72262
  11. May be this can give you an idea: http://forums.unigui.com/index.php?/topic/9570-when-will-unicombobox-support-value/&do=findComment&comment=50674
  12. We are using WMI Technic. Thx to : Rodrigo Ruz https://github.com/RRUZ/wmi-delphi-code-creator See our mini Unigui project in attachment : WMI_Unigui.7z
  13. Yes of course : 32 and 64 compile as a sharme : all is OK
  14. We are using : • Unigui build 1563 • with Delphi Alexandria 11.2 without problem. Try to uninstall previous Unigui version and re install again the 1563.
  15. A good portal : https://www.w3schools.com/jsref/prop_style_columnwidth.asp
  16. Hello, Try this : procedure TMainForm.Clear_My_UniStringGridClick(Sender: TObject); begin BeginUpdate; //1. Force all to Zero UniStringGrid1.RowCount:=0; UniStringGrid1.ColCount:=0; //2. Re introduce Col and Row Count UniStringGrid1.RowCount:=100; UniStringGrid1.ColCount:=5; EndUpdate; // UniStringGrid1.Refresh; // UniStringGrid1.Repaint; end; This works only for clearing the UniStirngGrid, but keep in memory the OLD values ! so, if you do showmessage( UniStringGrid1.Cells[2,3] ); after clearing, you will get the old value.
  17. We will never be able to thank so much our dear friend Sherzod . He is always available and sharpened to the smallest detail. Many thanks Maestro. God bless you and your Family.
  18. Hello, it is not by a magic wand, that this is done (although conversion tools exist VCL --> Unigui). You may be tempted to do so, but sooner or later you will run into problems. On web, you have to think differently: • Multiple sessions • Resource management • Server side, client side it would be wiser to start from scratch, create a new 100% unigui project. And....don't be discouraged. It will go fast...
  19. Try our installer : http://forums.unigui.com/index.php?/topic/14869-windows-service-issue-via-hyperserver/&do=findComment&comment=81109
  20. Contact Marlon He will be glad to solve this issue. http://forums.unigui.com/index.php?/profile/545-marlon-nardi/
  21. Hello, Til now, I have not use Farm Server. But you can find on forum this: http://forums.unigui.com/index.php?/topic/17886-server-farm-binary-name-cfg/ Wilton Ergon seems to have a good knowledge in farm server.
  22. http://forums.unigui.com/index.php?/topic/15289-delphi-professional-with-linux/ Given the alarming advertising emails from EMB this summer, it is clear that EMB is in bad shape. I think it's time to vote for EMB to launch a Delphi Pro version with the Linux option
  23. http://forums.unigui.com/index.php?/topic/1312-development-status/&do=findComment&comment=113820
  24. Hello Aberto, Sorry for my ignoring. Why using REST, when we can do all thing in Server side ? In an other words, what are the benefits for using REST ? Thxs.
×
×
  • Create New...