Welcome To The Home Of The Visual FoxPro Experts  
home. signup. forum. archives. search. articles. downloads. faq. members. files. rss.
 From: suhas hegde
  Where is suhas hegde?
 sirsi
 India
 suhas hegde
 To: Anders Altberg
  Where is Anders Altberg?
 Uppsala
 Sweden
 Anders Altberg
Subject: RE: export streaming data from Excel to VFP
Thread ID: 187876 Message ID: 187980 # Views: 1 # Ratings: 0
Version: Visual FoxPro 6 Category: Active X Controls & OLE Automation
Date: Wednesday, August 6, 2008 9:21:21 PM         
   



> UPDATE ... WHERE vfptable.rowid=excelsheet.somecolumn.value
>
> -Anders

Hi Anders,

I know the VFP update statement but the VBA update statement threw me off.

Now the working VBA test code updates every 2 secs to VFP

Almost done it from VBA Now only need is to test in my environment


Private Sub Workbook_Open()
Application.OnTime Now() + TimeSerial(0, 0, 1), "ThisWorkbook.updatetemp"
End Sub

Private Sub updatetemp()
Dim xi As Integer
Set cnn = CreateObject("ADODB.Connection")
cnn.ConnectionString = "Provider=VFPOLEDB;Data Source=C:\;Exclusive=No"
cnn.Open
With Sheet3.UsedRange
For xi = 1 To .Cells(.Cells.Count).Row
cnn.Execute "Update test set vals = '" & Cells(xi, 2).Value & "' where name = '" & Cells(xi, 1).Value & "'"
Next
End With
cnn.Close
Set cnn = Nothing
Application.OnTime Now() + TimeSerial(0, 0, 2), "ThisWorkbook.updatetemp"
End Sub


the "&" threw me off for sometime. I am still not comfortable passing the values in code as inline addition. Will check with command and parameters oledb Objects later. If this works then That *MUST* work no?

Need Sleep . Almost 1:00 am here

Thanx

Bye
SuhasHegde

ENTIRE THREAD

export streaming data from Excel to VFP Posted by suhas hegde @ 8/6/2008 1:06:53 PM
RE: export streaming data from Excel to VFP Posted by Cetin Basoz @ 8/6/2008 3:41:05 PM
RE: export streaming data from Excel to VFP Posted by suhas hegde @ 8/6/2008 5:10:55 PM
RE: export streaming data from Excel to VFP Posted by Cetin Basoz @ 8/6/2008 5:33:20 PM
RE: export streaming data from Excel to VFP Posted by suhas hegde @ 8/6/2008 6:46:12 PM
RE: export streaming data from Excel to VFP Posted by suhas hegde @ 8/6/2008 7:51:38 PM
RE: export streaming data from Excel to VFP Posted by suhas hegde @ 8/6/2008 9:15:20 PM
RE: export streaming data from Excel to VFP Posted by Anders Altberg @ 8/6/2008 6:03:03 PM
RE: export streaming data from Excel to VFP Posted by suhas hegde @ 8/6/2008 6:49:59 PM
RE: export streaming data from Excel to VFP Posted by Anders Altberg @ 8/6/2008 8:19:33 PM
RE: export streaming data from Excel to VFP Posted by suhas hegde @ 8/6/2008 9:21:21 PM
RE: export streaming data from Excel to VFP Posted by Anders Altberg @ 8/6/2008 11:49:16 PM