Hi,
I want to copy the data in a dialog box by either by using CTRL+C or by Edit->Copy. How can I do this?
Thanks,
Kishore
Hi,
I want to copy the data in a dialog box by either by using CTRL+C or by Edit->Copy. How can I do this?
Thanks,
Kishore
Subject: RE: How can i copy the data in a dialogbox?
By using Ctrl+C.
Subject: RE: How can i copy the data in a dialogbox?
I can select the data in Dialogbox but its not copying when I click Ctrl+C
Subject: RE: How can i copy the data in a dialogbox?
This string: Kishore VYwas just now copied from a field in a dialogbox, using Ctrl-C, and I pasted it into here. Perhaps you could describe in more detail how this dialog was opened and what is in it that you want to copy. Could it be that the data are from a form that’s set to not allow copying?
Subject: RE: How can i copy the data in a dialogbox?
Hi,
Thanks for the responce, What I need is, If click a link It opens a dialogbox of XXX form, In that dialog box If I select the data(Content in the form including labels) by dragging the mouse and copy and need to paste the data in word document or any other place.
Thanks,
Kishore
Subject: RE: How can i copy the data in a dialogbox?
Ah. So you have a dialogbox in edit mode and you want to copy the static text from the dialog – not just the data in individual fields.
When a form is in edit mode, it’s not possible to highlight text that’s not in a field – you can only move the cursor around among the fields and other controls on the page, and highlight data within a single field (this is true even if it’s not in a dialog). So it will not be possible to do what you’re asking for unless you can change the design of the dialog form and the code which calls it.
If you can change the design, you could add a “copy” button to the form that assigns a hidden field (as a signal to the calling code) and closes the dialog. The calling code would then notice the hidden field you set and take that as a signal to reopen the dialog form in read mode, not in a dialog, and selectall/copy.
Otherwise, you could use “print screen” button to capture a bitmap snapshot of the dialog.