I need to insert data from a VB6 Textbox into a designated Cell on a specific page in a specific Excel Worksheet. Additionally, I would like to be able to insert the information into another designated Cell if the original targeted Cell contained any data. My guess is that I would need to open the specific Excel Worksheet from my VB Project and then instruct the procedure to insert the TextBox.text data into the designated Cell on the specific page of the Worksheet. I would greatly appreciate any help. The people on this site have been very wonderful to me! Thank you!
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
-
Inserting VB Data Into Excel (VB6)
Home » Forums » AskWoody support » Productivity software by function » Visual Basic for Applications » Inserting VB Data Into Excel (VB6)
- This topic has 5 replies, 4 voices, and was last updated 20 years, 4 months ago.
AuthorTopicWSRobertENichols
AskWoody LoungerJanuary 16, 2005 at 2:54 am #414607Viewing 1 reply threadAuthorReplies-
WSAlanMiller
AskWoody LoungerJanuary 16, 2005 at 11:50 am #922323This is an adaptation of code found on VBForums.com, which I’ve used for other purposes, so the following is untested. It assumes rngTarget1 is the first choice to insert the value of Textbox1, and rngTarget2 is the alternative. I hope it works, or is at least a start.
Option Explicit'Add reference to MS Excel xx.0 Object Library
Private moApp As Excel.ApplicationPrivate Sub Command1_Click()
Dim oWB As Excel.Workbook
Dim rngTarget1 As Range
Dim rngTarget2 As RangemoApp.Visible = True
Set oWB = moApp.Workbooks.Open("D:My DocumentsBook1.xls")' For example:
Set rngTarget1 = oWB.Sheets("Sheet1").Cells(1, 2)
Set rngTarget2 = oWB.Sheets("Sheet1").Cells(3, 4)If rngTarget1.Value "" Then
rngTarget2.Value = Textbox1.Value
Else
rngTarget1.Value = Textbox1.Value
End IfSet oWB = Nothing
End Sub
Private Sub Form_Load()
Set moApp = New Excel.Application
End Sub
Looking at this again, “off the fly”, it might be less messy to use the actual cell references in the IF block and avoid the range objects. e.g. oWB.Sheets(“Sheet1”).Range(“A5”).Value
Alan
-
WSRobertENichols
AskWoody LoungerJanuary 16, 2005 at 4:18 pm #922378Alan:
Thank you very much for your help. Unfortunately, I cannot quite get it to work. I am sure it is me and not the Code. I am sure that it is obvious that I am not a computer programmer. I am an attorney trying to assist in a pro bono child support project. Perhaps I bit off more than I could comprehend in one setting with my initial question. If you do not mind I would like to simplify it and later build upon that Code after I get it to work. Thus, my revised question is:
I would like to merely take textbox data found in Text1.Text from a VB6 form and insert it into cell C3 contained on Sheet1 of Book1 in Excel (found at C:Book1.xls). Any help you can give would be appreciated more than you can imagine. Thank you! Bob
-
WSHansV
AskWoody LoungerJanuary 16, 2005 at 8:15 pm #922400First, select Project | References, and tick the check box for Microsoft Excel n.0 Object Library. The value of n depends on the version of Microsoft Office installed on your PC (Excel 97 = 8, Excel 2000 = 9, Excel 2002 = 10 and Excel 2003 = 11).
Say that you have a command button cmdExport on the form containing the text box Text1. The On Click event procedure for this command button could look like this:
Private Sub cmdExport_Click()
Dim objXl As New Excel.Application
Dim objWb As Excel.WorkbookOn Error GoTo ErrHandler
Set objWb = objXl.Workbooks.Open(“C:Book1.xls”)
objWb.Worksheets(“Sheet1”).Range(“C3”) = Me.Text1.Text
objWb.Close SaveChanges:=TrueExitHandler:
On Error Resume Next
Set objWb = Nothing
objXl.Quit
Set objXl = Nothing
Exit subErrHandler:
MsgBox Err.Description, vbExclamation
Resume ExitHandler
End Sub -
WSRobertENichols
AskWoody Lounger
-
-
-
-
Anonymous
InactiveJanuary 16, 2005 at 3:14 pm #922373Here is some sample code from an actual program:
Public Sub GetXLitems(Index As Integer)
‘**************************************************************************
‘Purpose: Invoke Excel,
‘ call routines to load PIA spreadsheet
‘ and Factors spreadsheet
‘Inputs: N/A
‘Returns: N/A
‘Assumes: Excel is installed on computer where BenCalc runs
‘Effects: Invokes “extra” copy of Excel, alters various
‘ properties temporarily, then resets them
‘**************************************************************************Dim loXL As Object
‘Opens Excel
Set loXL = CreateObject(“Excel.Application”)
loXL.Visible = TrueCall GetFactorsXL(Index, loXL)
‘Now we can close the Excel application entirely
loXL.Quit
Set loXL = NothingEnd Sub
Private Sub GetFactorsXL(Index As Integer, loXL As Object)
‘**************************************************************************
‘Purpose: Load Factors spreadsheet,
‘ return factor arrays to VB program
‘Inputs: N/A
‘Returns: N/A
‘Assumes: Excel invoked by calling routine
‘Effects: Sets value of various global arrays
‘**************************************************************************Dim loXLwb As Object
Dim lsPath As String
Dim lvLSFac As Variant
Dim liCol As Integer
Dim liRow As Integer‘Loads workbook
Call FixAppPath(lsPath)
Set loXLwb = loXL.Workbooks.Open (filename:=lsPath & “Factors2.xls”)loXL.Sheets(“LS factors”).Select
‘This sets up variant array as lvLSFac(48,4) RxC
lvLSFac = loXL.Range(“B7:E54”).ValueFor liRow = 23 To 70
gfLSFac(liRow, 1) = CSng(lvLSFac(liRow – 22, 1))
gfLSFac(liRow, 2) = CSng(lvLSFac(liRow – 22, 4))
Next liRow‘Close current workbook, don’t save changes
loXLwb.Close savechanges:=False
Set loXLwb = NothingEnd Sub
Public Sub FixAppPath(asMyPath As String)
‘**************************************************************************
‘Purpose: Allow for handling of final backslash in App.Path
‘ If located in root, get the final backslash
‘ If not, don’t get the final backslash
‘Inputs: Empty string variable asMyPath
‘Returns: Run-time directory with trailing backslash
‘Assumes:
‘Effects:
‘**************************************************************************asMyPath = App.Path
If Not Right$(asMyPath, 1) = Chr$(92) Then
asMyPath = asMyPath + Chr$(92)
End IfEnd Sub
Viewing 1 reply thread -

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
End of support for Windows 10
by
Old enough to know better
7 minutes ago -
What goes on inside an LLM
by
Michael Covington
21 minutes ago -
The risk of remote access
by
Susan Bradley
10 minutes ago -
The cruelest month for many Office users
by
Peter Deegan
2 hours, 22 minutes ago -
Tracking protection and trade-offs in Edge
by
Mary Branscombe
5 hours, 30 minutes ago -
Supreme Court grants DOGE access to confidential Social Security records
by
Alex5723
5 hours, 31 minutes ago -
EaseUS Partition Master free 19.6
by
Alex5723
6 hours, 30 minutes ago -
Microsoft : Edge is better than Chrome
by
Alex5723
18 hours, 48 minutes ago -
The EU launched DNS4EU
by
Alex5723
1 day, 7 hours ago -
Cell Phone vs. Traditional Touchtone Phone over POTS
by
280park
21 hours, 51 minutes ago -
Lost access to all my networked drives (shares) listed in My Computer
by
lwerman
1 day, 12 hours ago -
Set default size for pasted photo to word
by
Cyn
1 day, 18 hours ago -
Dedoimedo tries 24H2…
by
Cybertooth
1 day, 7 hours ago -
Windows 11 Insider Preview build 27871 released to Canary
by
joep517
2 days, 17 hours ago -
Windows 11 ad from Campaign Manager in Windows 10
by
Jim McKenna
10 hours, 43 minutes ago -
Small desktops
by
Susan Bradley
9 hours, 49 minutes ago -
Totally disable Bitlocker
by
CWBillow
1 day, 11 hours ago -
Phishers extract Millions from HMRC accounts..
by
Microfix
2 days, 15 hours ago -
Windows 10 22H2 Update today (5 June) says up-to-date but last was 2025-04
by
Alan_uk
3 days, 21 hours ago -
Thoughts on Malwarebytes Scam Guard for Mobile?
by
opti1
1 day, 16 hours ago -
Mystical Desktop
by
CWBillow
4 days, 1 hour ago -
Meta and Yandex secretly tracked billions of Android users
by
Alex5723
3 days, 6 hours ago -
MS-DEFCON 2: Do you need that update?
by
Susan Bradley
17 hours, 47 minutes ago -
CD/DVD drive is no longer recognized
by
WSCape Sand
4 days, 16 hours ago -
Windows 11 24H2 Default Apps stuck on Edge and Adobe Photoshop
by
MikeBravo
4 days, 19 hours ago -
North Face and Cartier customer data stolen in cyber attacks
by
Alex5723
4 days, 17 hours ago -
What is wrong with simple approach?
by
WSSpoke36
2 days, 15 hours ago -
Microsoft-Backed Builder.ai Set for Bankruptcy After Cash Seized
by
Alex5723
5 days, 4 hours ago -
Location, location, location
by
Susan Bradley
3 days, 19 hours ago -
Cannot get a task to run a restore point
by
CWBillow
5 days, 6 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.