Click here to Skip to main content
15,908,634 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionHow to use SYSTEM function for specified time Pin
MKC00230-Nov-11 6:37
MKC00230-Nov-11 6:37 
AnswerRe: How to use SYSTEM function for specified time Pin
Software_Developer30-Nov-11 7:20
Software_Developer30-Nov-11 7:20 
QuestionRe: How to use SYSTEM function for specified time Pin
Richard MacCutchan30-Nov-11 7:29
mveRichard MacCutchan30-Nov-11 7:29 
AnswerRe: How to use SYSTEM function for specified time Pin
MKC00230-Nov-11 17:28
MKC00230-Nov-11 17:28 
GeneralRe: How to use SYSTEM function for specified time Pin
Richard MacCutchan30-Nov-11 22:06
mveRichard MacCutchan30-Nov-11 22:06 
GeneralRe: How to use SYSTEM function for specified time Pin
MKC0021-Dec-11 18:17
MKC0021-Dec-11 18:17 
GeneralRe: How to use SYSTEM function for specified time Pin
Richard MacCutchan1-Dec-11 22:49
mveRichard MacCutchan1-Dec-11 22:49 
Questiontrying to find the status of contacts from Office Communicator Pin
tasumisra30-Nov-11 4:33
tasumisra30-Nov-11 4:33 
Questiondisabling ctrl+scrolllock in my application Pin
VCProgrammer29-Nov-11 22:39
VCProgrammer29-Nov-11 22:39 
AnswerRe: disabling ctrl+scrolllock in my application Pin
Software_Developer29-Nov-11 23:27
Software_Developer29-Nov-11 23:27 
GeneralRe: disabling ctrl+scrolllock in my application Pin
David Crow30-Nov-11 2:50
David Crow30-Nov-11 2:50 
AnswerRe: disabling ctrl+scrolllock in my application Pin
VCProgrammer30-Nov-11 21:18
VCProgrammer30-Nov-11 21:18 
GeneralRe: disabling ctrl+scrolllock in my application Pin
David Crow1-Dec-11 4:06
David Crow1-Dec-11 4:06 
QuestionResize Split Window Pin
Manula Thantriwatte29-Nov-11 18:29
Manula Thantriwatte29-Nov-11 18:29 
QuestionRe: Resize Split Window Pin
Richard MacCutchan29-Nov-11 21:30
mveRichard MacCutchan29-Nov-11 21:30 
AnswerRe: Resize Split Window Pin
Software_Developer30-Nov-11 3:47
Software_Developer30-Nov-11 3:47 
QuestionI c++ win32 version of vb string.contain Pin
jkirkerx28-Nov-11 6:54
professionaljkirkerx28-Nov-11 6:54 
AnswerRe: c++ win32 version of vb string.contain Pin
Chris Losinger28-Nov-11 7:14
professionalChris Losinger28-Nov-11 7:14 
GeneralRe: c++ win32 version of vb string.contain Pin
jkirkerx28-Nov-11 7:28
professionaljkirkerx28-Nov-11 7:28 
GeneralRe: c++ win32 version of vb string.contain Pin
Chris Losinger28-Nov-11 7:45
professionalChris Losinger28-Nov-11 7:45 
GeneralRe: c++ win32 version of vb string.contain Pin
jkirkerx28-Nov-11 8:09
professionaljkirkerx28-Nov-11 8:09 
I got lucky, and used wcsncpy_s, as nomenclature, that lead me to a very long list of functions in MSDN, and I found wcsstr. It was buried so deep, and the description was very vague.

So I wrote it, and so far so good, no double entries anymore. That was a hard one, Eric scared me off with having to use pointers, and I could not find anything on the subject.

Thanks Chris and Eric for the Help.

C#
// confirm that the name is not already in the buffer first
pzMatch = _tcsstr(szNewServerNames, szAddServerName);
int iMatch = (int)(pzMatch -szNewServerNames + 1);

// Cat the new value to the new buffer
if (pzMatch = NULL) {
   _tcsncat_s(szNewServerNames, iSNs, szAddServerName, iASN );
}

AnswerRe: I c++ win32 version of vb string.contain Pin
Erudite_Eric28-Nov-11 7:20
Erudite_Eric28-Nov-11 7:20 
GeneralRe: I c++ win32 version of vb string.contain Pin
jkirkerx28-Nov-11 7:25
professionaljkirkerx28-Nov-11 7:25 
GeneralRe: I c++ win32 version of vb string.contain Pin
Erudite_Eric29-Nov-11 6:54
Erudite_Eric29-Nov-11 6:54 
GeneralRe: I c++ win32 version of vb string.contain Pin
jkirkerx29-Nov-11 8:47
professionaljkirkerx29-Nov-11 8:47 

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.