Welcome to Dream.In.Code
Become a VB Expert!

Join 149,938 VB Programmers for FREE! Get instant access to thousands of VB experts, tutorials, code snippets, and more! There are 1,436 people online right now. Registration is fast and FREE... Join Now!




Vbscript, sql & write/add record to existing excel file

 
Reply to this topicStart new topic

Vbscript, sql & write/add record to existing excel file

ismailc
6 Jan, 2008 - 11:30 PM
Post #1

New D.I.C Head
*

Joined: 14 Sep, 2007
Posts: 37



Thanked: 1 times
My Contributions
Hi, Posted the question before - but could not get it going!

Can someone please Assist, as i need this to work it's part of my project!

VBscript, I'm executing a SQL command then with the result data append/add the row to an existing excel file.
Please anyone please Assist!

Scipt

CODE
Dim objXL
Dim File_name
Option WScript

File_name="\\srv08-za063\source\test.xls"
Set objXL = WScript.CreateObject("Excel.Application")
Set wb = objXL.Workbooks.Add
Set ws = objXL.Worksheets(1)
r = 2
objXL.Visible = False


Set objConn = CreateObject( "ADODB.Connection")
Set resultSet = CreateObject ("ADODB.RecordSet")
objConn.Open fcCustom.Value(Process.Company, "Connections\FCDB")
strSQL = "select id,ProcessID from dbo.fcEventArchive where EventHistID = 2523"
resultSet.Open strSQL, objConn, 1, 2

On Error Resume Next
resultSet.MoveFirst

Do While Not resultSet.eof
ws.Cells(r, 1).Value = (resultset(0))
ws.Cells(r, 2).Value = (resultset(1))
resultSet.MoveNext
r = r + 1
Loop

resultSet.Close
objConn.Close
Set resultSet = Nothing
Set objConn = Nothing

User is offlineProfile CardPM
+Quote Post

Jayman
RE: Vbscript, Sql & Write/add Record To Existing Excel File
6 Jan, 2008 - 11:35 PM
Post #2

Student of Life
Group Icon

Joined: 26 Dec, 2005
Posts: 7,317



Thanked: 66 times
Dream Kudos: 500
Expert In: Everything

My Contributions
Please use code.gif tags when posting your code. Thank you.
User is offlineProfile CardPM
+Quote Post

Fast ReplyReply to this topicStart new topic
Time is now: 1/8/09 04:28PM

Be Social

Dream.In.Code RSS Feed Dream.In.Code LinkedIn Group Follow Us On Twitter

Live VB Help!

VB Tutorials

Reference Sheets

VB Snippets

DIC Chatroom

Bye Bye Ads

Monthly Drawing

Thumb Drive

Top Contributors

Top 10 Kudos This Month