Results 1 to 2 of 2

Thread: [FAQ's: OD] How to transfer data between a UserForm and the Office Application?

  1. #1

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,710

    [FAQ's: OD] How to transfer data between a UserForm and the Office Application?

    Depending upon the Office app your using you can read/write UserForm data to/from either behind the UserForm itself or behind the Worksheet, Document, or Presentation, etc.


    Using Excel 2003 for this example:

    Add two command buttons (cmdRead and cmdWrite) and two textboxes (txtRead and txtWrite).

    How to read data from your worksheet and add into a textbox on your UserForm.

    VB Code:
    1. Option Explicit
    2.  
    3. Private Sub cmdRead_Click()
    4.     'Transfer the contents of cell A1 on Sheet1 to txtRead (UserForm)
    5.     UserForm1.txtRead.Text = Workbooks("Book1").Sheets("Sheet1").Cells(1, 1)
    6. End Sub
    To write out to your Worksheet, just reverse the assignment from the UserForms control(s) to the Worksheet/Range/Cell that you want to write to.
    VB Code:
    1. Option Explicit
    2.  
    3. Private Sub cmdWrite_Click()
    4.     'Transfer the contents of txtWrite (UserForm) to Cell A1 on Sheet1
    5.     Workbooks("Book1").Sheets("Sheet1").Cells(1, 1) = UserForm1.txtWrite.Text
    6. End Sub
    Last edited by RobDog888; Apr 27th, 2006 at 01:50 PM.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  2. #2
    Lively Member
    Join Date
    Aug 2009
    Posts
    105

    Re: [FAQ's: OD] How to transfer data between a UserForm and the Office Application?

    yeah, that didn't work, it kept saying that Worksheet wasn't declared.

Posting Permissions

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



Click Here to Expand Forum to Full Width