Writing my own Delphi VCL component inherited from TComponent with a bunch of properties, that must be unique to component's owner form. When I copy component from one form to another (with simple Ctrl+C, Ctrl-V) all properties are copied too. Any ideas on where (or how) I can handle copying or pasting the component on form and clear copied values (or set them to default)? For now I ended up with the idea of keeping component's owner form name (or other unique property) in the special component property and compare it with actual owner name in component's Loaded method. Maybe there is a more elegant or simpler way?
Handle copy component from one form to another in Delphi
831 Views Asked by zrocker At
1
There are 1 best solutions below
Related Questions in DELPHI
- How to not load all database records in my TListbox in Firemonkey Delphi XE8
- How to catch WM_DEVICECHANGE in a control other than TForm?
- show information with Rolling / moving messages delphi xe7
- What is the different between "Console target" and "GUI target" in DCC32 option?
- How to add new online ressources to RAD Studio help system
- C# and Delphi code have different behaviour when importing unmanaged dll
- Loop through records on a cxgrid and update a field/column
- Delphi 7 - Save to a Specific .INI Files Name
- TImagelist for large images
- how to modify a function so it returns an array of strings
- Checking for internet connection in runtime
- How can I make the main form align correctly after my control height is autosized and then I maximize the form?
- fetch data from web service to dataset in Delphi
- Load candlestick data from file
- Infinite loop in parsing a string using pointer math
Related Questions in CLIPBOARD
- Add paste item to windows right click menu in c#
- How to programmatically copy asynchronous dependent content to the clipboard following a click?
- Copying text from gvim editor to system clipboard works only once per session
- Prevent single letter deletes to spam clipboard manager
- How do I save data to the clipboard on MacOSX in C
- How to copy Images/files to clipboard in android? Any Alternative methods/steps to get this
- Clipboard.SetText not copying new line characters properly
- Copying to clipboard in vi
- Copy to clipboard like Google Drive does
- How can I put a device-independent bitmap into the Windows clipboard using just direct WinAPI? (No MFC or other wrappers)
- Visual Studio 2013 C++ watch window: arrays copy incorrectly to clipboard
- Copy Tooltip text from RichTextBox instead of Controls.image
- How can i display a toast message in the clipboard copy option click in android
- System.Windows.Forms.Clipboard works on desktop, but does not work on IIS
- Copy text and placeholders, variables to the clipboard
Related Questions in TCOMPONENT
- Can I use .Create(Nil) instead of .Create(Application)
- How to Create and Destroy TGrid at Runtime in Firemonkey — Android and iOS App Dev
- I am getting an error "Undeclared Identifier" on my newly created component with TComboBox ancestor
- How to invoke a procedure created inside the New Component during the implementation
- delphi (RIO 10.3 ) get access to the component icons at runtime ( from the package binary resources ? )
- Is passing a NULL Owner argument for dynamically created TComponent derived class instances OK?
- Delphi: inherited Create gives Access violation
- Delphi: Save TComponent to Clientdataset blob field
- Handle copy component from one form to another in Delphi
- Firemonkey: cascade a styled Lookup change for a FMXObject where other objects inherit the stylename
- Can I serialize a Delphi TPersistent as a field of TComponent using the default WriteComponent action?
- Confused with error -- E2193 Too few parameters in call to '_fastcall TComponent::GetComponent(int)
- Delphi XE5 ComponentCount segmentation fault (Search parented tcomponent )
- How to access design position on non-visual Delphi components?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Found a solution myself. This is a kind of hack, but nonetheless it works.
First of all, when we copy the component, Delphi only copies the published properties - they are written in dfm file. It is more correct to say that Delphi will copy the implementation of the component in dfm format. You can easily verify this by copying the component and pasting it into Notepad. So now we can use the clipboard to analyze it in the newly pasted instance of our component and decide whether to clear the properties or not (or do something else).
A small example of such a check - a procedure that analyzes the values in the clipboard for compliance with the current component:
It returns true when the clipboard contains such a component, and false if not. I use it in Loaded method of my component.