-
Nov 3rd, 2005, 12:18 AM
#1
[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:
Option Explicit
Private Sub cmdRead_Click()
'Transfer the contents of cell A1 on Sheet1 to txtRead (UserForm)
UserForm1.txtRead.Text = Workbooks("Book1").Sheets("Sheet1").Cells(1, 1)
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:
Option Explicit
Private Sub cmdWrite_Click()
'Transfer the contents of txtWrite (UserForm) to Cell A1 on Sheet1
Workbooks("Book1").Sheets("Sheet1").Cells(1, 1) = UserForm1.txtWrite.Text
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 Posts • VS.NET on Vista • Multiple .NET Framework Versions • Office Primary Interop Assemblies • VB/Office Guru™ Word SpellChecker™.NET • VB/Office Guru™ Word SpellChecker™ VB6 • VB.NET Attributes Ex. • Outlook Global Address List • API 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
-
Dec 19th, 2009, 03:37 PM
#2
Lively Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|