Jump to content

Die Holländer

Members
  • Content Count

    248
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Die Holländer

  1. Die Holländer

    Slow performance. HELP!

    Is it always on specific SQL statements/queries, like the Select you showed? You can try not to lock those Selects by: 'select * from "myTable" where ..... with(NOLOCK)'; Just to see if the locking READ COMMITTED is the problem. See if the database drivers your users using are still the same.
  2. Die Holländer

    ToolBar just knoledg

    Can you tell what your problem is?
  3. Die Holländer

    ToolBar just knoledg

    Maybe because in design time you copied the toolbar from dmSharedImages module on your form. While pasting the toolbar on your form the IDE knows where the images are located. That's why you see on the form: Images = dmSharedImages.Images In Runtime your form has no connection to the dmSharedImages, so the images are ignored and they disappear.
  4. Die Holländer

    Convert project c# to pascal

    python4delphi
  5. Die Holländer

    Applications for Linux

    Also for FireDac you need at least Delphi Enterprise. (Professional only FireDac local/embedded databases)
  6. Die Holländer

    components ?!

    There are too much components to add them in a book. There are visual, non-visual and thirth party components. Are you talking about components native delivered in Delphi? (Which version of Delphi?) You have to explain what programming problem you want to solve before you know what components you need to use.
  7. Die Holländer

    FMX learning resources?

    Right-Click on the webpage and "Translate to .....". (or where your browser has this option)
  8. Die Holländer

    Realy ?

    No, we are in the desktop application business and Delphi is by far the best using databases, reporting and whatever you think of to do. But if you want to step in the AI business and want to automate your calendar appointments, sort your e-mail and let AI book a flight for you then yes.
  9. Die Holländer

    Is this a change in 12.3??

    public Constructor Create(aOwner: TComponent; aQty:Integer; aFileName:string; aQuery:String; aTitle:string);reintroduce; end; procedure TStatsGridForm.Create(aOwner:TComponent; aQty:Integer ;aFileName:string; aQuery:String; aTitle:string); begin FsQuery:=aQuery; FiQty:=aQty; FsFileName:=aFileName; FsTitle:=aTitl; Caption := FsTitle + ' - Total records..' + IntToStr(FiQty); JobTickets.SQL.Clear; JobTickets.SQL.Add(FsQuery); JobTickets.Prepare; JobTickets.Open; ... end;
  10. Die Holländer

    Is this a change in 12.3??

    In this situation I would pass the parameters to the onFormCreate procedure. procedure TStatsGridForm.FormCreate(Sender: TObject,..,..,aQuery); begin fQuery:=aQuery .... JobTickets.SQL.Clear; JobTickets.SQL.Add(fQuery); JobTickets.Prepare; JobTickets.Open; ... end;
  11. Die Holländer

    Is this a change in 12.3??

    Always take care to put things in onShow. That can be called more often than you wish, unlike onCreate.
  12. Die Holländer

    Introducing Delphi++

    I like this one very much : All comments must be written in haiku format
  13. Die Holländer

    Copy MSSQL Database

    Yes, must be. Just look how much time it takes on the server a 10+GB file (movie or such) is copying from one directory to another.. Here a few GB database backup costs about 20 seconds.
  14. Die Holländer

    AI Rewrite and COBOL Port Announced for Immediate Development

    Instead of COBOL, I highly recommend to GExperts the IBM RPG Programming Language RPG is a high-level programming language for business applications, introduced in 1959 for the IBM 1401. It was one of my first professional programming language before using Delphi and it was a delight to program in columns.
  15. Die Holländer

    Embarcadero needs my location?

    So, if the message is because of a Windows update does that mean Rad studio has always asked for your location without the notification of Windows beforte the update?
  16. Die Holländer

    Creating an app to play Youtube videos

    Maybe you can read the clipboard with a timer and everytime the clipboard has a new "https://www.youtube.com" string you parse, add (see Remy) and start the video.
  17. Which version of Comment-AI are you using?
  18. Die Holländer

    MCP Server in Delphi

    No, you can start the implementation.
  19. Die Holländer

    Alternatives for SQL Anywhere

    and now you want to Create Delphi Azure functions with Azure SQL database (Delphi webbroker app) Getting Started with Azure Cloud Development with Delphi But I didn't find the proper solution (configuration..)
  20. Die Holländer

    Alternatives for SQL Anywhere

    Deploy Azure SQL Database for free We access the database with a limit number of users (3-5) and I don't know if this is limited.
  21. Die Holländer

    Alternatives for SQL Anywhere

    I use Azure cloud with MSSQL (free edition), FireDac and works great. I pay about 5 Euro per month. Very nice is it's Database Management Studio.
  22. Die Holländer

    [Resolved] Window State and position saver

    I always drop a Jedi's JvFormStorage on my form and that's it.. and the position and state..
  23. Die Holländer

    [BUG] Mouse wheel no longer scrolls when highlighting

    Is it me or are there others that have problems by highlighting a line of text by clicking LMB and dragging the mouse along that line and at the same time use the scroll wheel to scroll vertically downwards. Somehow my fingers can't handle this process very well. Should I buy another mouse?
  24. Die Holländer

    FMX learning resources?

    Youtube Embarcadero: Best practices and top tips when developing mobile apps.
  25. Die Holländer

    12.3 or 13/14 as next?

×