The MASM Forum Archive 2004 to 2012

General Forums => The Campus => Topic started by: Kongbo on November 17, 2006, 07:34:12 AM

Title: Use MASM to control Excel file?
Post by: Kongbo on November 17, 2006, 07:34:12 AM
Does MASM have this abilitity to control an Excel file?

How to analyse the sheet,table,line and rank of Excel file with MASM language?

How to fill string into an Excel file with MASM language?
Title: Re: Use MASM to control Excel file?
Post by: ToutEnMasm on November 17, 2006, 08:27:31 AM

Hello,
Two ways
Excel is running.
EXCEL is a DDE server that provide functions to work whith his files.
Use DDEML to do the job.
                                   
Excel is not running
You have to connect the file as a data base and use ODBC.There is a tut on this (iczelion) .

                                                  ToutEnMasm

                         
Title: Re: Use MASM to control Excel file?
Post by: Biterider on November 17, 2006, 08:58:40 AM
Hi
Look at the ExcelHost project of ObjAsm32. Using it you can control each property of Excel, even creating a graph and formating it.

Regards,

Biterider
Title: Re: Use MASM to control Excel file?
Post by: Kongbo on November 17, 2006, 09:39:38 AM
Really?

I'll learn the packet, and try again.

Thank you.