Hello
Can anyone tell me how to create a class
and why we create class
Thank u
Printable View
Hello
Can anyone tell me how to create a class
and why we create class
Thank u
A Class is a kind of module that can be included in your VB program (i am concentrating on classes in VB, nothing else). It allows you to structure your program with an object orientated approach.
This makes creating a solution to certain programming problems a lot easier, as you do not need to be aware of the inner workings of the class if you have designed it well.
when you create a class, you create an 'object' that you can use in the rest of your program. You can call functions in the class that return values etc. I think they are a much better way of structuring programs. They make coding much more easier.
Anyway, this was just a kind of primer. there is much more about classes, but i am tired and am starting to fall asle...zzzzzzzzz
Later(z)
REM