hi all,

i'm trying to create a procedure that changes an items property value dynamically.

something like...

Code:
    Public Sub SetItemProperty(ByVal item_name As String, ByVal property_name As String, ByVal value As String)
        item_name.property_name = value
    End Sub

   'Call it by.
   SetItemProperty("Textbox1", "Text", "Hello World")
but of course that's just a sample of what i want to accomplish..

i'd appreciate any help.

thanks.