Updating the cell value without losing its formula
Tue, 3 Jun 2008 19:59:23 +0800
Hi,
I am working on excel add-in in c++.
I am using "xlSet" to update cell value , in which formula of cell is lost.
Is there any way to update cell value without losing its formula.
I dont want to use "xlcFormula".
Thanks in advance.
Regards,
Sunil Adhyaru.
url:http://www.ureader.com/gp/1039- ...
|
calling of function "xlfDocuments" makes application crashed..
Tue, 3 Jun 2008 19:46:05 +0800
Hi,
I am working on excel add-in in c++.
I am calling "xlfDocuments" from two functions.
(1)
void __stdcall UpdateCellValue(char *serverResponse)
{
XLOPER xlGetAllBookName;
Excel4(xlfDocuments,&xlGetAllBookName,0);
}
This one is unregistered..
(2)
short __stdcall ConnDisconnMethod(void)
{
XLO ...
|
Any way to update cell value without losing its formula.
Tue, 3 Jun 2008 19:39:20 +0800
Hi..
I am working on excel Add-in in c++.
In current scenario i am updating cell value with help of execution of
formula on particular cell.
If i update value of cell direcly with "xlSet" it removes the formula of
that particular cell.
Is there any other way , so that i can update cell value and my ...
|
Excel 2007 - call VBA macro from C++ code no longer works
Thu, 29 May 2008 07:01:00 -0700
I have a XLL that invokes methods in a XLA, using the Excel(xlcRun, XLOPER,
LPXLOPER) syntax. The method name is passed in as
"XLA_FILE_NAME"!"MACRO_SUB_OR_FUNCTION_NAME". This used to work up till at
least Excel XP, but is not working in Excel 2007. I added the directories
where the XLL and XLA reside to ...
|
Escape long running calculation
Sun, 18 May 2008 17:40:07 -0700 (PDT)
How do I interrupt long running calulations?
I would like to catch the escape button and stop the calculation if
possible.
Lars ...
|
XLL/DLL will not load from XLSTART (Excel 2007 SDK)
Tue, 13 May 2008 18:26:32 -0500
This pertains to behavior in Excel in the Microsoft Office Professional
2003 when using the Excel 2007 SDK.
Background
============================
I have an XLL that I have been happily working on for a few weeks now
without incident. I have a Post Build Event that smoothly copies my XLL
from
my project's Rel ...
|
XLL/DLL will not load from XLSTART (Excel 2007 SDK)
Tue, 13 May 2008 16:44:01 -0700
This pertains to behavior in Excel in the Microsoft Office Professional 2003
when using the Excel 2007 SDK.
Backgound
============================
I have an XLL that I have been happily working on for a few weeks now
without incident. I have a Post Build Event that smoothly copies my XLL from
my project' ...
|
|
|
Getting Data From Filtered Cells
Tue, 22 Apr 2008 15:28:01 -0700
Hi,
I need to get the contents of the currently selected range of cells and pass
it to the XLL. I've been doing xlCoerce from xltypeRef to xltypeMulti to
convert the entire range to an internal structure that can be further
processed by the XLL.
However, if the AutoFilter is enabled, and some cells ar ...
|
XLL as a DLL - NOT in Excel
Tue, 8 Apr 2008 10:46:54 -0700 (PDT)
I think I've finally found the right group!
I have an old XLL that I call in Excel VBA using Application.Run. I am
trying to move this code to Access. In this case Application.Run does
not work. O could late-bind to Excel and use myXL.Run, but the
performance hit of opening Excel and driving it through automat ...
|
xll sdk getworkbook
Mon, 7 Apr 2008 22:07:00 -0700
i use the codes below to get all the sheets name.
XLOPER12 xRes;
XLOPER12 test;
Excel12(xlfGetWorkbook, (LPXLOPER12)&xRes, 1,TempInt(1));
Excel12(xlcAlert, 0, 1, &xRes);
Excel12(xlfGetWorkbook, (LPXLOPER12)&xRes, 1,TempInt(1)); this get a one dem
array, my question is how can i get each val ...
|