Results 1 to 11 of 11

Thread: Export properties of VBA-object?

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    VBAX Tutor
    Joined
    May 2004
    Location
    Germany, Dresden
    Posts
    217
    Location

    Question Export properties of VBA-object?

    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:
     Private Sub CommandButton1_Click()
        Dim myTxt As TextBox
        Set myTxt = TextBox1
        Stop
    End Sub
    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
    Last edited by Aussiebear; 04-25-2025 at 02:16 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •