Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 06/29/20 in all areas

  1. Uwe Raabe

    TTabSheet - Set color and remove margin?

    Seems that a TCardPanel is better suited for your needs.
  2. Anders Melander

    TButtonItem does not have a TAG property

    Use the TButtonItem.Data property instead - or TButtonItem.Action.Tag?
  3. Edwin Yip

    TTabSheet - Set color and remove margin?

    See: https://stackoverflow.com/a/6275161/133516 Also note my comments under that answer.
  4. limelect

    3 explorer running

    As I said we will meet again Today I had my problem again. Explorer was hidden. A while ago I wrote a program that shows the explorer directory name although explorer was HIDDEN. So I had an indication. Searching again for an answer I found a solution. https://stackoverflow.com/questions/12946150/how-to-bring-my-application-to-the-front I added SetWindowPos(WebBrowserApp.HWnd, HWND_NOTOPMOST,0,0,0,0, SWP_NOMOVE or SWP_NOSIZE); SetWindowPos(WebBrowserApp.HWnd, HWND_TOPMOST,0,0,0,0, SWP_NOMOVE or SWP_NOSIZE); SetWindowPos(WebBrowserApp.HWnd, HWND_NOTOPMOST,0,0,0,0, SWP_SHOWWINDOW or SWP_NOMOVE or SWP_NOSIZE); and it worked. It poped up explorer. Thanks again
  5. David Heffernan

    TTabSheet - Set color and remove margin?

    I'm sure you know how to work with list objects, and how to set the Visible property.
  6. Arnaud Bouchez

    tiny computer for Delphi apps

    I don't know which size are your projects, but I used a 4GB Win10 computer until recently, with no memory issue at all. With hunderths of thousands of source code lines...
  7. Stefan Glienke

    Your RAD Studio 10.4 Sydney issues

    FWIW - reported as https://quality.embarcadero.com/browse/RSP-29564
  8. Mahdi Safsafi

    Possible custom Format types?

    @Mike Torrettinni I don't know if this going to help. A while ago I wrote a regular expression to match the following pattern ""%" [index ":"] ["-"] [width] ["." prec] type" for format %((\d+|\*)\:)?[\-]?(\d+|\*)?(\.(\d+|\*))?[duefgnmpsx] The regex was used with Perl but I believe its still compatible with PCRE like.
  9. Mahdi Safsafi

    Load form icon while using styles

    And that's not your first time when you show un-professionalism behavior(remember last time) ! I believe that I never showed disrespect for anyone here. All what I did is argumenting. So I really don't know why you think that disagree with someone is an attack ! And telling someone that he is not a judge, I think that's not an attack ... is it ? Go on all those posts, I challenge you to prove that its me who started a discussion ! For this post, I gave an explanation to the bug, as well as an answer, I was argumenting with some people peacefully ... until some people started provocating me! So please don't be driven by your subjectivity and try to view things neutrally. Peace.
  10. Sherlock

    Pipeline with global variable

    Sorry, didn't catch the subform. Can't help then.
  11. David Heffernan

    TButtonItem does not have a TAG property

    I have never understood why Tag would ever be used. I mean I get it for a toy program knocked up in a couple of minutes. But not for real world code.
×