Jump to content

cirirex

uniGUI Subscriber
  • Posts

    25
  • Joined

  • Last visited

  • Days Won

    2

cirirex last won the day on August 11 2023

cirirex had the most liked content!

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

cirirex's Achievements

Newbie

Newbie (1/4)

2

Reputation

  1. Sorry, any chance to know if my code to bind a single server IP is correct or not? Or, better, I should bind the internal IP and not the external one like 54.76... ? Sorry for my english and thanks for any contribute.
  2. Hi all. Standalone Windows application, Delphi 10.4.2, UNIGUI 1.90.0 build 1568 On a Windows server with two public IPs I want that my Unigui app uses port 443 on a specific IP (port 443 is already occupied on the other IP, so I can't use it). On the production build, Server Module, OnBeforeInit event, I've put this code {$IFDEF Produzione} /// //////////// SSL.Enabled := TRUE; //kill the standard bindings Port := 0; SSL.SSLPort := 0; //create specific bindings Bindings.Clear; with Bindings.Add do begin IP := '54.76.228.197'; Port := 443; end; {$ENDIF Produzione} Once deployed I always get a "Could not bind socket error" : seems as port 443 is already in use, but it should be used *not* on 54.76.228.197, is my code wrong or have I to dig more on the Windows Server configuration? Thanks for your help.
  3. Sherzod, I've fixed the problem compiling every package, and installing the design ones, this time one by one (without the need to run the IDE as administrator). Now I've all stuff installed in Alexandria, too. Thanks for your, always fast, feedback. Marco
  4. Yes, it was the first step before installing 1568 version. Marco
  5. Hi All. Same problem here , installing every D.. Unigui (Personal Version 1.90.0.1568) package on latest Delphi 11.3 version. No third party Unigui components used. Starting IDE as Administrator didn't help. Same 1568 version runs without problems on same VM with Delphi 10.4. Any idea? Hope someone found a solution... Thanks! Marco
  6. Thanks Sherzod. Fixed: I had to cancel 50% and 50% for two labels width (layoutconfig) to get the expected right alignments. Marco
  7. Thanks Sherzod, if I can't fix it I'll try to send a testcase: in the meaning may you confirm that in your tests you use all my client layout settings (table layout, cols, ecc.) that I'm using, or your project modifies and uses only UniGroupBox1.LayoutConfig.Cls, LabelB.Alignment and CustomCSS to get the right alignment? Marco
  8. Sherzod, I'm missing something. May you please share source code of your demo? Thanks Marco
  9. And this if I set labelb.autosize := TRUE, not much better: Thanks Marco
  10. Hi Sherzod. CustomCSS in ServerModule, right? This is what I get now : And if I just cancel "customBox" from LayoutConfig.Cls: Thanks for your help. Marco
  11. Hi. I use a TUniGroupBox with AlignmentControl set to uniAlignmentClient and layout set to "table" (with LayoutAttribs.Columns set to 2). Inside that table layout I put two TUnilabels each row, one left aligned, the second right aligned, 50% of the width for each one). So this is my (wanted) layout: -------------------------------------- | Label A | Label B | Despite I set Alignment of Label B to taRightJustify I alway get a left alignment of the text (see screen, right column tunilabels text is still left aligned): I suspect that using a client alignment maybe I have to bypass Unigui and set the style of that label with something like this style:{"float":"right"} Someone can help me to get this? Using Unigui Professional second last available version. Thanks! Marco
  12. Thank you Sherzod, I'm digging more in the Forum on the argument. Anyway, the video doesn't seem to be available at the moment. Marco
  13. Ok, I do not know what is a XTemplate: may you please point me to it? The subject of my post was also: what to do to speed up things if I'd have necessarily to use a TUniScrollList, so someone can send me tips or best practices if I'ìl have to fall back to that component? Thanks again. Marco
  14. Hi Sherzod. Attached is what my customer asked to see in his online order system, may you confirm if this is achievable with a UniDbGrid? Thanks! Marco
  15. Hi Sherzod. I thought that creating panels and put inside each one a frame was a good choice, also for the speed of the creation of the whole form. And the scrollbox was the right choice, too, as container of a list of panels. I need from 2-5 to 400-500 items inside the scollbox because I need a list on that summary form for a selection of products (a cart for an online order), in particular a books list made by users of the website of one of my customers. I'm aware that is my first big project with Unigui, maybe there is an original sin in my logic (beacuse of my little experience with Unigui)? Hope to have answered to your question.. Thanks for your help. Marco
×
×
  • Create New...