Valhalla Legends Archive

Programming => General Programming => Visual Basic Programming => Topic started by: Tazo on September 20, 2005, 09:24 PM

Title: [VB6] MDI: Controls wont intialize
Post by: Tazo on September 20, 2005, 09:24 PM
Ok..I do like this

Dim f as new Form1
f.show

So I changed my addtext function to say like f.rtb1 right? Well It gives me 'Object Required.' same with all controls, including winsock..whats the deal? is there like a IntiliazeControls thing lol
Title: Re: MDI: Controls wont intialize
Post by: MyndFyre on September 20, 2005, 11:38 PM
Is this VB.NET?
Title: Re: MDI: Controls wont intialize
Post by: Tazo on September 21, 2005, 05:42 AM
Oh sorry, Vb6
Title: Re: [VB6] MDI: Controls wont intialize
Post by: rabbit on September 21, 2005, 06:10 PM
Load f
Title: Re: [VB6] MDI: Controls wont intialize
Post by: Tazo on September 21, 2005, 06:19 PM

Private Sub mnuAbc_Click()
Dim f As New Form1
f.Show
Load f
End Sub

No luck.
Title: Re: [VB6] MDI: Controls wont intialize
Post by: rabbit on September 21, 2005, 06:35 PM
Load before .Show
Title: Re: [VB6] MDI: Controls wont intialize
Post by: Tazo on September 21, 2005, 06:40 PM
i Tried that, no luck =/
rabbit got AIM
Title: Re: [VB6] MDI: Controls wont intialize
Post by: rabbit on September 21, 2005, 08:25 PM
Yes, but I'm not on.

This is directly out of one of my MDI projects, and it works:

QuoteDim frm As frmController
    Set frm = New frmController
    Load frm

Meh.
Title: Re: [VB6] MDI: Controls wont intialize
Post by: Tazo on September 22, 2005, 07:21 PM
ok so I did

Private Sub abc_Click()
    Dim f As Form1
    Set f = New Form1
    Load f
    f.Show
End Sub


Everything, like my addtext function (which says f.Rtb1 for the rtb) says '424: Object Required'. Rabbit can I email you the src and you can tell me whats wrong :/ I've tried everything at this point  >:(
btw: addtext is in a mod and the pbuffer in a cls
Title: Re: [VB6] MDI: Controls wont intialize
Post by: UserLoser. on September 22, 2005, 08:17 PM
Not sure if this'll make a difference, but try:


Private Sub abc_Click()
    Dim f As Form
    Set f = New Form1
    Load f
    f.Show
End Sub
Title: Re: [VB6] MDI: Controls wont intialize
Post by: MyndFyre on September 22, 2005, 08:22 PM
Quote from: UserLoser on September 22, 2005, 08:17 PM
Not sure if this'll make a difference, but try:


Private Sub abc_Click()
    Dim f As Form
    Set f = New Form1
    Load f
    f.Show
End Sub


That's exactly what he'd posted.
Title: Re: [VB6] MDI: Controls wont intialize
Post by: UserLoser. on September 22, 2005, 08:26 PM
Quote from: MyndFyre on September 22, 2005, 08:22 PM
Quote from: UserLoser on September 22, 2005, 08:17 PM
Not sure if this'll make a difference, but try:


Private Sub abc_Click()
    Dim f As Form
    Set f = New Form1
    Load f
    f.Show
End Sub


That's exactly what he'd posted.

No, it's not
Title: Re: [VB6] MDI: Controls wont intialize
Post by: Tazo on September 22, 2005, 08:35 PM
Nope.
What I'm going to have to do is move everything into my Form1, like my addtext and pbuffer and stuff =/
Title: Re: [VB6] MDI: Controls wont intialize
Post by: Tazo on September 22, 2005, 09:01 PM
Ok, I moved everything into my main form and it works fine now.
Thanks for the help!
Title: Re: [VB6] MDI: Controls wont intialize
Post by: Adron on September 26, 2005, 12:29 PM
It looks like the original problem was defining f inside a sub and then trying to use it from another sub?