Jump to content

dummzeuch

Members
  • Content Count

    2671
  • Joined

  • Last visited

  • Days Won

    92

Posts posted by dummzeuch


  1. I have just updated the Delphi Custom Container Pack sources to support Delphi 10.3 Rio. This time it required than creating the packages for the new version and adding the latest version of the Delphiversions.inc file. When loading the designtime package an EAssertionFailed exception ...

    https://blog.dummzeuch.de/2018/12/29/delphi-custom-container-pack-updated-for-delphi-10-3-rio/

    • Thanks 1

  2. TDbf is an open source library to access Dbase tables. It's released under the LGPL license (which makes in impractical for most commercial Delphi development). It is also used in Lazaraus (I haven't checked the license there, but apparently you can develop commercial programs with it.)

    The project seems to be rather dead though. Apparently nobody noticed ...

     

    https://blog.dummzeuch.de/2018/12/26/tdbf-packages-for-delphi-10-3-rio/


  3. 31 minutes ago, Achim Kalwa said:

    Did you had success in contacting Lars Dybdal?

    Yes, I did get a very short response:

    But apart from saying that dybdahl.dk has been closed, he didn't react to any of my follow ups.

     

    31 minutes ago, Achim Kalwa said:

    Thomas, do you have write access to the dxGetText project on sourceforge? I would like to send you some patches then.

    Yes, for now I still have, but Lars has blocked my write access before when he didn't like what I committed. OTOH it doesn't look as if he is interested in the project much any more.

     

    But do send me the patches, I'll do what I can.

     

    twm

     

     


  4. 3 hours ago, Uwe Raabe said:

    What helped us in the past was disabling opportunistic locking at the server side (where the database files reside). For this you have to change the value of HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters\EnableOplocks from 1 to 0 (as 1 is the default value, it might even be absent). Note that you have to restart Windows to make this change effective.

    If I remember correctly, it is possible to set this on a per file type basis, but I am not sure whether that was on Windows or Linux/Samba.


  5. 1 hour ago, Sherlock said:

    Oh, thanks. I thought there was an article on FMXExpress. I'm sad to say I don't have time to inspect code that comes without any explanations regarding purpose, function or instructions. So I wont be looking into this, but thanks anyway.

    If I remember correctly, there was a post here on DP-en about this, right when the forum opened.

    • Thanks 1

  6. 22 hours ago, dummzeuch said:

    So, I have some questions, all regarding keyboard only navigation:

    1. How do I get from the Filter Box to the property list? Since Tab does not work? (Edit: Unexpectedly Shift+Tab gets me there)
    2. How do I get from the property list to the Filter Box?
    3. Does anybody think it is a good idea to let tab switch from the filter box to the form or code editor?

     

    Any hints on my question 2?


  7. If I press the Tab key in the Filter box of the Object Inspector, one of two unexpected things happen:

    1. If the Form is visible, the focus switches to the form and the currently selected control. Further Tab presses seem to follow the tab order on the form. There seems to be no way to directly get back to the Object Inspector without using the mouse. I can press F11 twice which brings me first to the code editor and then to the Object Inspector.
    2. If the code editor is visible, the focus switches to that and then any input goes to the code editor. In this case F11 gets me back to the Object Inspector.

     

    So, I have some questions, all regarding keyboard only navigation:

    1. How do I get from the Filter Box to the property list? Since Tab does not work? (Edit: Unexpectedly Shift+Tab gets me there)
    2. How do I get from the property list to the Filter Box?
    3. Does anybody think it is a good idea to let tab switch from the filter box to the form or code editor?

     


  8. 1 hour ago, Juan C.Cilleruelo said:

    Maybe, catch the exception with the intention of re-raise the same one, is useful for someone, but... the "Exit;" instruction too?

    The exit doesn't make sense, but it is quite possible that it is left from a previous version of the code that didn't re-raise the exception.

    (Or it's just from somebody who didn't understand the way exceptions work.)


  9. 12 minutes ago, FPiette said:

    There is probably a way to do that since other IDE windows have a popup menu with a dockable item you can check/uncheck.

    When an IDE form is dockable, it can be tricky to move it exactly where you want to put it.

    You can simply hold down the Ctrl key and move a dockable window like any other window.

    • Like 1

  10. 1 hour ago, David Heffernan said:

    I know, but if you want to break on an exception, why would you disable that? Writing naff code instead of using the tools of the debugger is pointless.

     

    My question was rhetorical. If you disable debugging, it would be odd to then jump through hoops to debug your program. 

    Sorry, to answer a rhetorical question (again), but:

    There are types of exceptions I usually don't care about and are therefore disabled in the debugger, e.g. EAbort. Sometimes, if there is a problem with these in a particular part of the code, I want to catch them and follow the exception handling further up. But even then I don't want to enable them everywhere else. That's a possible use case for the above construct.

×