Jump to content

Jean-Marc Kiener

uniGUI Subscriber
  • Posts

    217
  • Joined

  • Last visited

  • Days Won

    10

Jean-Marc Kiener last won the day on November 12 2021

Jean-Marc Kiener had the most liked content!

Profile Information

  • Gender
    Male
  • Location
    Switzerland

Contact Methods

  • Skype
    jean-marc.kiener

Recent Profile Visitors

2494 profile views

Jean-Marc Kiener's Achievements

Advanced Member

Advanced Member (4/4)

30

Reputation

  1. Can't build: [dcc32 Fatal Error] uniGUI29dcl.dpk(74): F2051 Unit uniGUIEditors was compiled with a different version of ColnEdit.TCollectionProperty Any ideas what i could do to fix the problem?
  2. Hi forum users, I am searching for a HTML editor where the user can write text as any editor and additionally can use a @ char to tag a user from a list. Something like the jira editor can do (see the picture below). Knows anybody how i could implement this in UniGui? Or is there a standard unigui component who can do that already? Or has anybody already made a component with a functionallity like that? Thanks in advance for your suggestions.
  3. Maybe this is because of file access right. Windows service runs on user "local service" or so. For test it, run the service with a administrator account and try again.
  4. Cool. Very interesting. Thanks for sharing here. Is the download site also available in english? I am struggeling with... chinese?
  5. Hello unigui team, We need a solution to input and display big numbers like houndred thousands, millions and more. At moment, TuniNumberEdit does not support thousend separators. Big numbers are not readable: 10000000 (vs. 10,000,000) Is there a solution to show thousend separators in a TuniNumberEdit?
  6. You should remove or disable the extension ".dll" from mime/type list in IIS.
  7. Same here. How to sort TuniTreeNode items by text? Is this possible? I want to write a function to move a TuniTreeNode to another place in a tree. I can use TuniTreeNode.MoveTo to move a node to another node as child , but i cannot figure it out how to set the node to the right place in order of the text.
  8. Is this correct? procedure TDirectoryTree.ClearNodes; var Index: integer; begin for Index := 0 to FTreeView.Items.Count -1 do begin FreeAndNil(TNodedata( FtreeView.Items[ Index ].Data ) ); end; FTreeView.Items.Clear; end; Or would al simple: procedure TDirectoryTree.ClearNodes; begin FTreeView.Items.Clear; end; be enough?
  9. Hello, I have following small TThread class: TOnProgress = procedure( Sender: TObject; Value: integer; Msg: string ) of object; TWorker = class(TThread) private { Private-Deklarationen } FMin: integer; FMax: integer; FOnProgress: TOnProgress; FProgressMsg: string; FPosition: integer; procedure DoOnProgress( aValue: integer; aMsg: string ); protected procedure Execute; override; public constructor Create( aOnProgress: TOnProgress ); reintroduce; property OnProgress: TOnProgress read FOnProgress write FOnProgress; property ProgressMsg: string read FProgressMsg; property Position: integer read FPosition; end; When i create the TWorker Object in a unigui form with a aOnProgress procedure parameter it does not work properly ( per example FWorker1 := TWorker.Create( UpdateGUI1 ); ). The TOnProgress method "UpdateGUI1" of the unigui form is called, but mostly it does nothing. I assume that i have to find the "right" unigui form instance from where the thread was called?
  10. I found uni-xtheme.css in my 1.90.0.1534 version: /* common for uni custom themes */ /* in future it must be moved to uni CSS of each theme separately */ /* .x-form-trigger-btn { background-image: none !important; background: linear-gradient(#fff, #ddd) !important; border-radius: 1px 3px 0px 0px; border: 1px solid #bbb !important; padding-top: 1px; } */ .x-uni-checkcolumn-text { padding-left: 14px; } "in future it must be moved to uni CSS of each theme separately" So i copied it from 1534 to my 1561 installation.
  11. Hi Bahry, I installed TMS Cloud Pack and played around with it. I came to the same question like @d.bernaert : How do you handle the oauth authentication in Unigui?
×
×
  • Create New...