To be honest, I'm not wanting to learn this language, it's just a requirement that I must get out of the way before moving onto a much larger project.
I will apologise now if I speak a lot of C/C++ Objects/Properties/Methods/Functions, I can explain programming better under this language.
So back to VB,
Just to ignore my program, lets say I have a simple form, it has 2 textboxes and a command button to process the information.
Each textbox has field validation, using validate(), so it raises errors to the user as soon as they try leaving the box, so both text boxes must validate before they can leave that box then they can process the information.
However, the first textbox can validate and instead of them changing focus to the second textbox, they click straight on the button, since the first textbox is valid, they're allowed to move on, but they skipped the second textbox and that's the problem.
So I need a means to make sure that both fields contain information before allowing the information to be process. I don't want to use the process button to do this (but will if I can't get it working).
So my intentions is, I'm going to disable this button and want to enable it when both textboxes contain valid information, which means they won't be able to bypass it.
So how would I do this, I think it's called Object Validation, but I'm uncertain if that's VB terminology. While the textbox validation is Field Validation.
So any clues, tips, sites anything that will help me?
Cheers,
MC

