Site icon Embarcadero RAD Studio, Delphi, & C++Builder Blogs

Use the Excel.Application in C++Builder(bcc64)[JAPAN]

Author: Pixelot12345

How to use the Excel.Application in C++Builder. Target device is Win64.

Use the ComObj, call in CreateOleObject (“Excel.Application”).

Including ComObj is required.

In C++Builder it is below.

[crayon-67f006d2cf8da797332604/]

Import from CSV file to Excel file.

[crayon-67f006d2cf8e4470829211/]

We will implement this process.

Prepare the TButton.

TButton is one in a simple form.

 

Next is the TButton OnClick event.

[crayon-67f006d2cf8e6535155584/]

 

Sheet name is “Sheet 1”.

Next we will create two methods.

[crayon-67f006d2cf8e9014706015/]

Read the file with TStringList.And, you write to the specified cell.

 

[crayon-67f006d2cf8ec122371412/]

Write the imported CSV file to Excel.

 

 

 

Exit mobile version