Jump to content

luciano_f

Members
  • Content Count

    57
  • Joined

  • Last visited

Community Reputation

3 Neutral

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. luciano_f

    Permanently the "Lock Controls" in IDE

    For those who want to fix the bug, the correction was made with CnPack https://github.com/cnpack/cnwizards/issues/181
  2. luciano_f

    How to detect when a Form is active in Designer

    For those who want to fix the bug, the correction was made with CnPack https://github.com/cnpack/cnwizards/issues/181
  3. luciano_f

    How to detect when a Form is active in Designer

    Help exemple IOTAModule.GetModuleFileEditor(0).AddNotifier. ?
  4. luciano_f

    How to detect when a Form is active in Designer

    Exactly my friend, that's right. However, I believe it is possible to solve this problem. I need to know how to create a BPL where I can detect when a Form is opened or active I need to know how to register this TMyFormNotifier = class(TNotifierObject, IOTANotifier, IOTAFormNotifier) protected procedure FormActivated; procedure FormSaving; procedure ComponentRenamed(ComponentHandle: TOTAHandle; const OldName, NewName: string); end;
  5. luciano_f

    How to detect when a Form is active in Designer

    Because I like to work with the controls locked so I don't accidentally click and move components unnecessarily I've been working for a long time, always blocking the components. But I'm tired of always having to deactivate and activate "Lock Controls" every time I open Form it.
  6. luciano_f

    How to detect when a Form is active in Designer

    Using the "Lock Controls" option in Delphi's "Edit" menu I can lock the components, but each Form I open I have to deactivate and activate. This way, I want to create a BPL where I can detect when a form is opened and automatically perform the procedure for deactivating and activating the "Lock Controls" option
  7. How to detect when a Form is active in Designer Guys, I'm posting here because in this area I know that you are the experts in OTA I posted this topic in another area of the forum https://en.delphipraxis.net/topic/10262-permanently-the-lock-controls-in-ide/ When searching I found this link https://www.gexperts.org/open-tools-api-faq/ However, it does not have an example explaining how to register only that: IOTAModule.GetModuleFileEditor(0).AddNotifier TMyFormNotifier = class(TNotifierObject, IOTANotifier, IOTAFormNotifier) protected procedure FormActivated; procedure FormSaving; procedure ComponentRenamed(ComponentHandle: TOTAHandle; const OldName, NewName: string); end; I want to detect when the forms are opened and check if the Menu EditLockControlsItem it is activated and if it is activated I deactivate it and activate it again so I don't have to keep every form I open performing this action.
  8. luciano_f

    When will we have a 64-bit IDE version ?

    I wonder how much work a system of this size requires for 8 million lines of code. must be several programmers And as I say, Embarcadero had to think about these things because a system that generates 64-bit applications is comical and it itself isn't. Marco Cantu read my post see https://quality.embarcadero.com/browse/RSP-42372 I said harsh words to them
  9. luciano_f

    When will we have a 64-bit IDE version ?

    Does the friend have a website ? How did you manage to run in the Cloud ? Is it for Microsoft terminal server ?
  10. luciano_f

    When will we have a 64-bit IDE version ?

    I was curious because your project for me is gigantic. My project has 490 thousand lines in 350 forms and I already think it's too big Tell me what type of company is your project for? Do you have any website ?
  11. luciano_f

    Permanently the "Lock Controls" in IDE

    Based on this link, I believe it is possible to create a BPL that can automatically Disable and Enable the "Lock Controls" for each form that is opened. https://github.com/DGH2112/DGH-IDE-Notifiers/blob/master/Source/DGHIDENotifiers.FormNotifier.pas
  12. luciano_f

    Permanently the "Lock Controls" in IDE

    In Delphi there is an option in "Edit" -> "Lock Controls" but this option I have to disable and enable again for each form that opens, I would like to do this automatically once only and all the forms that I open are already locked I believe it must be something related to OTA but I don't know how to do it https://github.com/DGH2112/DGH-IDE-Notifiers/blob/master/Source/DGHIDENotifiers.FormNotifier.pas
  13. Every form I open I have to deactivate and activate "Lock Control" again. Is there any tool or way to do this automatically ?
  14. luciano_f

    How to change the TVirtualImageList editor?

    @Softacom Company Simply fantastic Last question for Master of Mages How did you extract the Form Components without having access to it ? file "ImageCollectionEditorForm.dfm"
×