|
-
Apr 25th, 2009, 04:15 PM
#1
Thread Starter
Addicted Member
Is It Possible To Have Two Forms Focussed At The Same Time?
Hi, I need to have text selected in a box in one form, and edit text in another at the same, if this is possible, how do I do this?
-
Apr 25th, 2009, 04:39 PM
#2
Re: Is It Possible To Have Two Forms Focussed At The Same Time?
It's possible to access information from another form. You can do this by declaring an object of the form and then referncing the information.
For example:
If you had these objects:
Form1 - Main Form
Form2
TextBox1
In form one:
Code:
Dim 2ndForm As New Form2
Now that we've done that, we can access TextBox1 that is on the second form like this:
Code:
2ndForm.TextBox1.Text = Blah Blah Blah
It's hard for me to understand exactly what it is you're asking for. So, if you can clarify a little bit, I think I can give you a better example of what you're asking.
CodeBank contributions: Process Manager, Temp File Cleaner
 Originally Posted by SJWhiteley
"game trainer" is the same as calling the act of robbing a bank "wealth redistribution"....
-
Apr 25th, 2009, 04:59 PM
#3
Thread Starter
Addicted Member
Re: Is It Possible To Have Two Forms Focussed At The Same Time?
I meant one text box on a separate form with highlighted text, with the ability to keep editing text on another form at the same time.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|