Library code snippets
Shorter Visual Basic code isn't always efficient code
In a previous tip, we showed you an object-oriented way to pass values
to form variables. To do so, we added property Get and Let statements
to the form's underlying code module. This created a public property for
the form that you could set with code similar toForm1.myProperty = "Fifty"
Many of you pointed out that as an alternative to the lengthy Get and
Let procedures we used in the tip, you could also simply declare a
form-level public variable, as inPublic myProperty as Integer
Given this declaration, you could then set and retrieve the property
using the same syntax we used above.
While declaring the property in this manner is perfectly legal, it does
have a broader potential for errors than do Get and Let statements --
though it's still better than using full-blown, application level,
global variables.
The problem occurs because under the shorter property declaration
scenario, there's no way to validate the value to which you want to set
the property. For instance, given the property declaration above, as an
integer data type, the earlier statementForm1.myProperty = "Fifty"
would generate a type mismatch error. When you use Get and Let
procedures, on the other hand, you can not only validate potential
property settings and provide meaningful error feedback; but you can
also perform complicated calculations when retrieving or setting these
property values.
Related articles
Related discussion
-
Automating Excel from VB6.0
by epurdy (0 replies)
-
VB6 system conversion using VBA to Word 2007
by b.macgregor@vodamail.co.za (0 replies)
-
video not working with visual basic
by Jupiter 2 (9 replies)
-
Hyperterminal Data
by sengreen (1 replies)
-
vb6 - custom font
by Ruffsta3 (0 replies)
Related podcasts
-
Christian Beauclair
14 mai 2008 (�mission #0074) ::.Christian Beauclair: Stratégies de migration VB6 vers .NET Nous discutons avec Christian Beauclair des stratégies de migration VB6 vers .NET. Entre autres, nous discutons comment utiliser le "VB 6 Code Advisor" et le "Interop Forms Toolkit" pour ajouter la puiss...
This thread is for discussions of Shorter Visual Basic code isn't always efficient code.