Re: Compile Error Message
If you get the error sub or function not defined, it means that you are making a call to something that isn't there. Most of the time, this is a typpo. This has got absolutely nothing to do with the version of VB.
Another common mistake that causes this behaviour is when just typing the name of a control, without anything else, like when you are typing the name of a label, and halfway, you go and check something else in the code and forget to complete your line.
private Sub DoSomeThing()
' some code here
End Sub
private Sub Command1_Click()
DoSomething ' no problem
DoSimething ' sub or function not defined
Label1.caption = "Test" ' again, no problem
Label1 ' sub or function not defined
End Sub
Tom Cannaerts
[email protected]
Programming today is a race between software engineers striving to build bigger and better idot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning -- Rich Cook
Re: Compile Error Message
Still no luck getting this fixed.. I created a another text editor with just 1 option save and just trying to figure out how to get that 1 thing working.. You can D/L and look what I have done so far and see for your self what I am doing wrong.. I am am sure I am following the tuturial through correctly not missing any thing but I must be since it dont work.
Grr host wont let me upload that type of file, my ICQ is 4244789 if any one wants to help me further with this.
Zom