I'm a VB beginner so can anyone help me and emplain to me
what does "Public const" means?
I will thank you very much!!!
Printable View
I'm a VB beginner so can anyone help me and emplain to me
what does "Public const" means?
I will thank you very much!!!
Public means that the variable (const) can be used throughout the project.
Const means that the number has a constant value. You might use this when you have an ugly number that you don't feel like typing all the time, for example:
Now you can use that number throughout your App with having to type 3.14...Code:'Constant for Pi
Const Pi = 22/7