Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Read props of mdiChild in vb.net
Name: BelAnWel Date: August 25, 2003 at 10:51:25 Pacific OS: 98 CPU/Ram: 256
Comment:
sup guys!
i'm self-studying vb.net and the first thing i tried to do is a simple multi-document text editor. i created a public property called Filename. in vb6 i think i could set or read it by ACTIVEFORM.PROPERTY=value or variable=ACTIVEFORM.PROPERTY. but in vb.net i dont think its possible anymore. i get the error PROPERTY not a member of CLASSFORM.
is there a way to access properties or public variable using the equivalent of activeform in vb.net? i am able to determine the active child form using:
Dim frmChild As Form = Me.ActiveMdiChild frmChild.Name
but i can't set or read the property i made:
frmChild.Filename
this is where i get the error "Filename not a member of frmEditor"
Summary: Hello everybody. I am trying to create a string that has columns with the use of the tab. In VB6 it was something like : string 3 =string1 & tab(5) & string2 & tab(10) so with the above example i woul...
Summary: Hi friends I have a lot of textBoxes on a form in VB.NET . I have a button of Clear which will empty the text boxes existing on the form. My coding is(which is not proper working) Dim ctl As Control ...