Click here to Skip to main content
15,896,207 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: CHAR[260] to char* Pin
David Crow23-Oct-09 5:27
David Crow23-Oct-09 5:27 
AnswerRe: CHAR[260] to char* Pin
Richard MacCutchan23-Oct-09 5:14
mveRichard MacCutchan23-Oct-09 5:14 
GeneralRe: CHAR[260] to char* Pin
Nicola Curran23-Oct-09 5:16
Nicola Curran23-Oct-09 5:16 
GeneralRe: CHAR[260] to char* Pin
Richard MacCutchan23-Oct-09 5:41
mveRichard MacCutchan23-Oct-09 5:41 
QuestionCreate baloon for navigation icon which contain controls and handle these controls Pin
KSagar23-Oct-09 4:30
KSagar23-Oct-09 4:30 
AnswerRe: Create baloon for navigation icon which contain controls and handle these controls Pin
Richard MacCutchan23-Oct-09 5:03
mveRichard MacCutchan23-Oct-09 5:03 
AnswerRe: Create baloon for navigation icon which contain controls and handle these controls Pin
Iain Clarke, Warrior Programmer23-Oct-09 5:46
Iain Clarke, Warrior Programmer23-Oct-09 5:46 
Questioncan not populate multiple cell in excel by passing array from c++ XLL and usong xloper Pin
malayhk 23-Oct-09 3:24
malayhk 23-Oct-09 3:24 
i tried a lot to pass array to excel sheet using xloper structure hear is sample function i wrote to pass array using xloper

<code>__declspec(dllexport) LPXLOPER xarr ()
{

static XLOPER xlArray;
XLOPER xlValues[4];
int i;
for (i = 0; i < 4; ++i)
{
carr[i]=i*2;
xlValues[i].val.num = i+10;
xlValues[i].xltype = xltypeNum;
}
//this will generate array with 4 element 10,11,12,13

xlArray.xltype = xltypeMulti;
xlArray.val.array.lparray = &amp;xlValues;
xlArray.val.array.rows = 1;
xlArray.val.array.columns = 4;
return (LPXLOPER) &amp;xlArray;
}</code>

above function gives only first value of array i.e.10 in the cell from which function call is made
is there is any way to fill the other cell? as i am giving no of row and column in xloper it should fill 3 cell also but that is not happening Cry | :((

please help me in identifying my mistek

Thanex a looot in advance
Questionhow to set position of media player on anywhere on dialog box Pin
prerananit23-Oct-09 2:43
prerananit23-Oct-09 2:43 
AnswerRe: how to set position of media player on anywhere on dialog box Pin
Hans Dietrich23-Oct-09 2:54
mentorHans Dietrich23-Oct-09 2:54 
QuestionMirror Driver Pin
javad_200523-Oct-09 2:21
javad_200523-Oct-09 2:21 
AnswerRe: Mirror Driver Pin
Randor 23-Oct-09 2:34
professional Randor 23-Oct-09 2:34 
GeneralRe: Mirror Driver Pin
javad_200524-Oct-09 22:57
javad_200524-Oct-09 22:57 
GeneralRe: Mirror Driver Pin
Randor 25-Oct-09 23:36
professional Randor 25-Oct-09 23:36 
Questioncreate tentative of connection Pin
MrKBA23-Oct-09 1:47
MrKBA23-Oct-09 1:47 
QuestionCan VC60 printf () format numbers with comma thouasand seperators, eg 23,123 Pin
Neil Urquhart23-Oct-09 1:41
Neil Urquhart23-Oct-09 1:41 
AnswerRe: Can VC60 printf () format numbers with comma thouasand seperators, eg 23,123 Pin
Randor 23-Oct-09 2:28
professional Randor 23-Oct-09 2:28 
AnswerRe: Can VC60 printf () format numbers with comma thouasand seperators, eg 23,123 [modified] Whoops! Pin
Richard MacCutchan23-Oct-09 2:37
mveRichard MacCutchan23-Oct-09 2:37 
QuestionRe: Can VC60 printf () format numbers with comma thouasand seperators, eg 23,123 Pin
David Crow23-Oct-09 2:46
David Crow23-Oct-09 2:46 
AnswerRe: Can VC60 printf () format numbers with comma thouasand seperators, eg 23,123 Pin
Richard MacCutchan23-Oct-09 3:03
mveRichard MacCutchan23-Oct-09 3:03 
GeneralRe: Can VC60 printf () format numbers with comma thouasand seperators, eg 23,123 Pin
Neil Urquhart23-Oct-09 4:41
Neil Urquhart23-Oct-09 4:41 
GeneralRe: Can VC60 printf () format numbers with comma thouasand seperators, eg 23,123 Pin
Richard MacCutchan23-Oct-09 5:02
mveRichard MacCutchan23-Oct-09 5:02 
QuestionHow to get WPARAM from SendMessage? Pin
002comp23-Oct-09 1:29
002comp23-Oct-09 1:29 
AnswerRe: How to get WPARAM from SendMessage? Pin
Cedric Moonen23-Oct-09 1:38
Cedric Moonen23-Oct-09 1:38 
GeneralRe: How to get WPARAM from SendMessage? Pin
002comp23-Oct-09 1:44
002comp23-Oct-09 1:44 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.