|
-
Apr 11th, 2003, 12:28 AM
#1
Thread Starter
Addicted Member
-
Apr 11th, 2003, 12:40 AM
#2
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Apr 11th, 2003, 12:55 AM
#3
Thread Starter
Addicted Member
i did reference it
then i call the textbox
X.txtTEXTBOXONE.Text = "TEST"
this code it one the frmForm2
Thanks
-
Apr 11th, 2003, 05:53 AM
#4
You still have not explained it very well.
But your code has nothing to do with frmForm2, you have no references to it at all.
e.g
' Create a new instance of frmForm1
Dim X As New frmFORM1
'Put the text "TEST" into the textbox on the new instance of frmForm1
X.txtTEXTBOXONE.Text = "TEST"
You have to remember the BIG fact that everything in VB.net has to be a instance of an object. You might want to have a good read on the differences between vb6 and vb.net.
-
Apr 11th, 2003, 06:11 AM
#5
Frenzied Member
if frmFORM1 is already open then your code wont work cause you create and work with a new isntance if it, not the one which is open. If not open then when u open it txtTEXTBOXONE.Text value should be the one you specified here.
Last edited by Lunatic3; Apr 11th, 2003 at 07:34 AM.
'Heading for the automatic overload'
Marillion, Brave, The Great Escape, 1994
'How will WE stand the FIRE TOMORROW?'
Eloy, Silent Cries and Mighty Echoes, The Vision - Burning, 1979
-
Apr 11th, 2003, 12:30 PM
#6
Thread Starter
Addicted Member
Makes sense Thanks
Hey that makes sense thanks alot
-
Apr 11th, 2003, 12:34 PM
#7
Thread Starter
Addicted Member
is there anyway to change a text box
Is there anyway to change a textbox on one form from another form while they are both open?
Thanks
-
Apr 11th, 2003, 01:00 PM
#8
Frenzied Member
'Heading for the automatic overload'
Marillion, Brave, The Great Escape, 1994
'How will WE stand the FIRE TOMORROW?'
Eloy, Silent Cries and Mighty Echoes, The Vision - Burning, 1979
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
|