Re: Distributable Commercial Apps Access Vs Delphi



dim txtt() As TextBox = New TextBox(){txt1, txt2, txt3}

inherits from winform.Textbox class

For Each txt As TextBox In txtt
AddHandler txt.Click, AddressOf somefunction
Next

the txtt array has inherited all the winform.TextBox class properties
and methods.

Rich

*** Sent via Developersdex http://www.developersdex.com ***
.