Click to See Complete Forum and Search --> : Excel


April 2nd, 1999, 02:14 PM
How can I extract the data form a specific cell from an Excel97 spreedsheet into a textbox

Ajay Kalra
April 2nd, 1999, 08:07 PM
Following articles describe how to open/read/write/close excel:

HOWTO: Use MFC to Automate Excel 97 and Navigate Worksheets
Last reviewed: October 15, 1998
Article ID: Q178782


HOWTO: Automate Excel 97, Then Know the User Closed It
Last reviewed: September 4, 1998
Article ID: Q192348


HOWTO: Create an Automation Project Using MFC and a Type Library
Last reviewed: November 3, 1998
Article ID: Q178749

HOWTO: Use MFC to Automate Excel & Obtain an Array from a Range
Last reviewed: May 27, 1998
Article ID: Q186122


Ajay

Masaaki
April 2nd, 1999, 10:17 PM
Hi.
I assume that you read the material posted and make the program to
open Excel file.

VARIANT v;
VariantInit(&v);
v.vt = VT_BSTR;
v = range.GetValue();//only one cell.
tmpstr = v.bstrVal;

MessageBox(tmpstr, "Test");

SysFreeString(v.bstrVal);
VariantClear(&v);

Hope for help.
-Masaaki Onishi-