D
Dave
We have an databse where i log into via ODBC and get a lot of stuff
after some sorting i throw this into an excel file as a list. I do this
via win32:OLE, the data to excel that is.
Now i would like to synchronize this data to an sharepoint server.
there is functinalitu for this in Excel 2003 that you can after you
have published the data you can synchronize it via a small button
called "synchronize list". pressing it manually works fine, but i would
like to push this button from win32::OLE::Excel, any body know how? I
recorded a macro for this feature and looked how it looks under VB and
it said:
ActiveSheet.ListObjects("List1").UpdateChanges xlListConflictDialog
so in my perl head that translates to:
$Excel->ActiveWorkbook->ListObjects('List1')->UpdateChanges('xlListConflictDialog');
this didn't work and i get an:
Win32::OLE(0.1502) error 0x80020003: "Member not found in
METHOD/PROPERTYGET "" at M:\23044822_eclipse\KIetc..
anybody got any ideas on how to press that button from win32::OLE?
//Dave
after some sorting i throw this into an excel file as a list. I do this
via win32:OLE, the data to excel that is.
Now i would like to synchronize this data to an sharepoint server.
there is functinalitu for this in Excel 2003 that you can after you
have published the data you can synchronize it via a small button
called "synchronize list". pressing it manually works fine, but i would
like to push this button from win32::OLE::Excel, any body know how? I
recorded a macro for this feature and looked how it looks under VB and
it said:
ActiveSheet.ListObjects("List1").UpdateChanges xlListConflictDialog
so in my perl head that translates to:
$Excel->ActiveWorkbook->ListObjects('List1')->UpdateChanges('xlListConflictDialog');
this didn't work and i get an:
Win32::OLE(0.1502) error 0x80020003: "Member not found in
METHOD/PROPERTYGET "" at M:\23044822_eclipse\KIetc..
anybody got any ideas on how to press that button from win32::OLE?
//Dave