Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

OLE2/Windows XP Problem?

Status
Not open for further replies.

krindler

Programmer
Jul 16, 2002
39
US
Hello...

I am using an OLE2 Package from Froms 6i to insert some data into Excel. Recently, my PC was upgraded from Windows 2000 to Windows XP and now for some reason my form is failing before it inserts the data into Excel. Does anyone know of any bugs with Windows XP when using OLE2? Your help is greatly appreciated.

When I comment out the following line, the data will insert??

args := OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG ( args, v_summary_count + 1 );
OLE2.ADD_ARG ( args, 5 );
cell := OLE2.GET_OBJ_PROPERTY ( worksheet, 'Cells', args );
OLE2.DESTROY_ARGLIST ( args );
OLE2.SET_PROPERTY ( cell, 'Value', v_zip_code_summary );
OLE2.RELEASE_OBJ ( cell );


Thanks In Advance...

Kelly Rindler
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top