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!
![]() |
There are isolated problems with current patches, but they are well-known and documented on this site. |
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
-
Office gets current release
by
Susan Bradley
3 minutes ago -
FBI: Still Using One of These Old Routers? It’s Vulnerable to Hackers
by
Alex5723
11 hours, 5 minutes ago -
Windows AI Local Only no NPU required!
by
RetiredGeek
7 hours, 49 minutes ago -
Stop the OneDrive defaults
by
CWBillow
11 hours, 54 minutes ago -
Windows 11 Insider Preview build 27868 released to Canary
by
joep517
21 hours, 50 minutes ago -
X Suspends Encrypted DMs
by
Alex5723
1 day ago -
WSJ : My Robot and Me AI generated movie
by
Alex5723
1 day ago -
Botnet hacks 9,000+ ASUS routers to add persistent SSH backdoor
by
Alex5723
1 day ago -
OpenAI model sabotages shutdown code
by
Cybertooth
1 day, 1 hour ago -
Backup and access old e-mails after company e-mail address is terminated
by
M W Leijendekker
13 hours, 43 minutes ago -
Enabling Secureboot
by
ITguy
20 hours, 43 minutes ago -
Windows hosting exposes additional bugs
by
Susan Bradley
1 day, 9 hours ago -
No more rounded corners??
by
CWBillow
1 day, 5 hours ago -
Android 15 and IPV6
by
Win7and10
19 hours, 1 minute ago -
KB5058405 might fail to install with recovery error 0xc0000098 in ACPI.sys
by
Susan Bradley
1 day, 21 hours ago -
T-Mobile’s T-Life App has a “Screen Recording Tool” Turned on
by
Alex5723
2 days ago -
Windows 11 Insider Preview Build 26100.4202 (24H2) released to Release Preview
by
joep517
1 day, 19 hours ago -
Windows Update orchestration platform to update all software
by
Alex5723
2 days, 7 hours ago -
May preview updates
by
Susan Bradley
1 day, 19 hours ago -
Microsoft releases KB5061977 Windows 11 24H2, Server 2025 emergency out of band
by
Alex5723
1 day, 10 hours ago -
Just got this pop-up page while browsing
by
Alex5723
2 days ago -
KB5058379 / KB 5061768 Failures
by
crown
1 day, 21 hours ago -
Windows 10 23H2 Good to Update to ?
by
jkitc
23 hours, 17 minutes ago -
At last – installation of 24H2
by
Botswana12
2 days, 23 hours ago -
MS-DEFCON 4: As good as it gets
by
Susan Bradley
35 minutes ago -
RyTuneX optimize Windows 10/11 tool
by
Alex5723
3 days, 11 hours ago -
Can I just update from Win11 22H2 to 23H2?
by
Dave Easley
1 day, 10 hours ago -
Limited account permission error related to Windows Update
by
gtd12345
4 days ago -
Another test post
by
gtd12345
4 days, 1 hour ago -
Connect to someone else computer
by
wadeer
2 hours, 25 minutes 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.