Jump to content

rgreat

uniGUI Subscriber
  • Posts

    421
  • Joined

  • Last visited

  • Days Won

    9

Everything posted by rgreat

  1. Without them and with disabled border editor is not visible at all!
  2. Excellent! Is there any way I can educate myself about how all of this works? Demos/Examples included in UniGUI are nice but not really enough to grasp such an extended topic.
  3. Definitely not enough documentation on how uniAlignmentClient works with LayoutConfig/LayoutAttibs. I have the same problem. I need to make back panel to fit all child panels/components placed on it. Tried vbox and some semi-random tinkering, and components inside panel align themselves just fine, but that underlying panel just does not resize to fit them all when I make error label visible. And no, I do not want to fit all of this into full screen form, just into panel (outside rectangle on gif). How to design that?
  4. http://www.unigui.com/doc/online_help/preparing-linux-development-en.htm
  5. Oookaay... Never seen this. Thank you. But it is kinda counter-intuitive. At least for good old VCL users. Maybe you will add this one as a nested separate control?
  6. Component name? Don't you confuse TUniCheckListBox with TUniCheckComboBox?
  7. Yep. I checked it is not working now. Still you could call Close; in form OnShow event. Something like: procedure TUniForm1.UniFormShow(Sender: TObject); begin if CreateNonVisual then Close; end; That will do the trick. That's quite a dirty way to do things, though. I wish Farshad will change this behavior at least for free forms.
  8. Just call vSF0270.Close; before UniSession.Synchronize; Form will not be shown. Maybe you should also set vSF0270.FreeOnClose:=False, if you want to work with form properties later.
  9. UniGUI forms are shown right after they are created. That's normal. Do not create form or call Close before Synchronize, if you do not want it to be shown.
  10. does it mean - that i can create a similar thing like unigui.dll just for linux? is the result a Shared Objects (*.so) files what i can upload to an linux-webhoster-standard-server? Usually it is a standalone linux console application, which can be configured to run as a Linux daemon. Not sure if it can be installed as Apache .so library. Never tried it myself as first approach is just easier under Linux. Must i switch to Lazarus? ..actual i use Delphi XE4 No. Delphi only. Versions which have Linux support. in delphi - i user a reportdesigner to produce PDF files - what soultuion can i use in the future? The one which can compile for linux. is the performance higher on a linux system (running a shared object <-> running a dll on windows) ? System perfomance is about the same, but linux compiler for delphi is currently less effective. So your code will generally be slower on Linux. if Quasar is ready to use - is the basic avantage the "cheaper webhosting" ? - or are there other avantages? Linux considered as more stable hosting platform. And sometimes you just can't choose the OS as you like.
  11. For example, I need to only change text for one cell in a row, but change background color for the whole row. But seems like OnDrawCell for a cell just does not fire without changing cell text. And "changing" cell text with the same old value does not work either. The only way I can guess now is to change the cell text for an every cell in a row twice. 1. To some temporary value. 2. Back to original value. That's quite ineffective and generate unwanted traffic. Please advise how can I forcibly fire OnDrawCell event? Or maybe some other solution?
  12. rgreat

    TUniChart

    How to filter X coord's labels in TUniChart? The same way as Y coord's filtered. These are dates. Looks completely unreadable. I can't find any options for that.
  13. Not so unreal for new/updated software.
  14. UniDBGrid have nice event - OnFieldImage. Can I have similar functionality in UniStringGrid? In any way, except adding <img src="..."> tag into cells manually? I need to render images in UniStringGrid cells. And that's the difference between: http://www.unigui.com/doc/online_help/api/uniGUITypes_TUniCellAttribs_DefaultColor.html and http://www.unigui.com/doc/online_help/api/uniGUITypes_TUniCellAttribs_Color.html ?
  15. It is quite different, have less functionality compared to VCL TUniLabeledEdit, and also harder to use as it not WYSIWYG in designer. It is also broken on older versions of browsers. TUniLabel+TUniEdit combo is more useful.
  16. Not sure if this version works, so I will attach my working version. Unichecklst.zip
  17. Should be pretty simple, but quite useful.
  18. Copied this directory from my home machine. That helped. Thank you for the fast help. I would not use Clean in future. P.S. I wish you guys shared full (mostly?) sources.
×
×
  • Create New...