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
832 Views Asked by zrocker At
1
There are 1 best solutions below
Related Questions in DELPHI
- How can I read the header of request to webserver
- Receiving Notifications for Individual Task Completion OmniThreadLibrary Parallel.ForEach
- Delphi - How to get result of function from QuickReport without viewing a report?
- Out of memory while adding documents to a Firebird BLOB field with Delphi
- How to MakeScreenshot fullpage on Delphi
- How to program a COM object with an IEnumerator, IEnumerable interface inside
- How to Dynamically Add Controls to Delphi Form
- How to write a string in Stringrid with DelimitedText in FMX Delphi 11
- TGrid/TStringGrid multi cell selection / multi editing in delphi firemonkey (12)
- How to localize "Today" in the Delphi TMonthCalendar?
- How can I call a SOAP webserver method in Vue.js?
- Efficiently Handling Large Number of API Calls with Delphi 10.4 and OmniThreadLibrary
- Delphi can not compile the unit create by its "XML Data Binding Wizard"
- Save Form Properties in File and then restore those Properties after reopening
- Is it possible to open a blob without saving it to file
Related Questions in CLIPBOARD
- Copy Text converted using TTf fonts to clipboard
- How to copy a dataframe to the clipboard such that when pasted, the ouptut is the same as when copying manually from the console of RStudio?
- Does the Excel desktop client have a DOM Document, and how do I get to it?
- Why Electron.js Clipboard returns the same image twice while doing clipboard.readImage()?
- Get keys pressed with Clipboard event in Javascript?
- how to make clipboard with Paragraphs of text in using daisyui?
- how to use MDM Clipboard API with http requests JS
- HTML id with javascript to trigger a write to clipboard
- Alternate solution for the deprecated execCommand when copying a rich-text from the displayed HTML
- Trying to create a "copy" button for my website, isn't working
- How to copy images and text to clipboard at the same time
- How to remove the ASCII nul at the end of clipr::wirte_clip?
- Firefox: navigator.clipboard.readText is not a function
- Modify clipboard in paste event and paste new text
- Copy paste over Citrix loses formatting
Related Questions in TCOMPONENT
- Confused with error -- E2193 Too few parameters in call to '_fastcall TComponent::GetComponent(int)
- How to invoke a procedure created inside the New Component during the implementation
- I am getting an error "Undeclared Identifier" on my newly created component with TComboBox ancestor
- How to Create and Destroy TGrid at Runtime in Firemonkey — Android and iOS App Dev
- delphi (RIO 10.3 ) get access to the component icons at runtime ( from the package binary resources ? )
- Handle copy component from one form to another in Delphi
- Delphi: inherited Create gives Access violation
- Firemonkey: cascade a styled Lookup change for a FMXObject where other objects inherit the stylename
- Delphi: Save TComponent to Clientdataset blob field
- Delphi XE5 ComponentCount segmentation fault (Search parented tcomponent )
- Is passing a NULL Owner argument for dynamically created TComponent derived class instances OK?
- Can I serialize a Delphi TPersistent as a field of TComponent using the default WriteComponent action?
- Can I use .Create(Nil) instead of .Create(Application)
- 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 # Hahtags
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.