Hello all,

this is a overall VB-Q (I did not find a solution for VB 6 nor VBA ):
I want to export all properties of an object at runtime. So let's say I have:
[VBA] Private Sub CommandButton1_Click()
Dim myTxt As TextBox
Set myTxt = TextBox1
Stop
End Sub

[/VBA]
Now I can view all properties of myTxt in the local window. But how can I export them in a way, that another program could read it (so PrtScr is not an option)??

Thanks
Daniel