Click here to Skip to main content
15,914,165 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: REFERENCE TO ARRAY OF 10 INTEGERS Pin
avenger_sb2531-Jul-04 0:17
avenger_sb2531-Jul-04 0:17 
GeneralRight-Left Rule... Pin
bikram singh31-Jul-04 15:58
bikram singh31-Jul-04 15:58 
GeneralRe: Right-Left Rule... Pin
Anonymous1-Aug-04 23:19
Anonymous1-Aug-04 23:19 
GeneralPrinter Pin
Anthony988730-Jul-04 7:44
Anthony988730-Jul-04 7:44 
GeneralRe: Printer Pin
Blake Miller30-Jul-04 12:08
Blake Miller30-Jul-04 12:08 
Generalscroll bar for picture box. Pin
joshu30730-Jul-04 7:07
joshu30730-Jul-04 7:07 
QuestionHow to convert LPWSTR to int? Pin
ting66830-Jul-04 7:00
ting66830-Jul-04 7:00 
AnswerRe: How to convert LPWSTR to int? Pin
Ravi Bhavnani30-Jul-04 7:17
professionalRavi Bhavnani30-Jul-04 7:17 
You can use _ttoi or brew your own (more robust) function.
bool convertWideStringToInt
  (wchar_t* wStr,
   int& nInt)
{
  if (wscanf (wStr, _T("%d"), &nInt) == 1)
     return (true);
  return (false);
}
/ravi

My new year's resolution: 2048 x 1536
Home | Articles | Freeware | Music
ravib@ravib.com

Questionextfloodfill problem ? Pin
kendao30-Jul-04 6:32
kendao30-Jul-04 6:32 
AnswerRe: extfloodfill problem ? Pin
avenger_sb2530-Jul-04 8:02
avenger_sb2530-Jul-04 8:02 
GeneralProblems with files Pin
Archer28230-Jul-04 5:36
Archer28230-Jul-04 5:36 
GeneralRe: Problems with files Pin
Jaime Stuardo30-Jul-04 5:55
Jaime Stuardo30-Jul-04 5:55 
GeneralRe: Problems with files Pin
Archer28230-Jul-04 5:59
Archer28230-Jul-04 5:59 
GeneralRe: Problems with files Pin
David Crow30-Jul-04 6:31
David Crow30-Jul-04 6:31 
GeneralRe: Problems with files Pin
Michael P Butler30-Jul-04 6:32
Michael P Butler30-Jul-04 6:32 
GeneralRe: Problems with files Pin
Archer28230-Jul-04 6:41
Archer28230-Jul-04 6:41 
GeneralRe: Problems with files Pin
avenger_sb2530-Jul-04 8:13
avenger_sb2530-Jul-04 8:13 
GeneralRe: Problems with files Pin
Archer28230-Jul-04 6:57
Archer28230-Jul-04 6:57 
GeneralRe: Problems with files Pin
darkbyte30-Jul-04 14:20
darkbyte30-Jul-04 14:20 
GeneralResource Exception Pin
NadAzur30-Jul-04 4:43
NadAzur30-Jul-04 4:43 
GeneralRe: Resource Exception Pin
Jaime Stuardo30-Jul-04 4:52
Jaime Stuardo30-Jul-04 4:52 
GeneralRe: Resource Exception Pin
NadAzur30-Jul-04 5:25
NadAzur30-Jul-04 5:25 
GeneralRe: Resource Exception Pin
Jaime Stuardo30-Jul-04 5:40
Jaime Stuardo30-Jul-04 5:40 
GeneralRe: Resource Exception Pin
NadAzur30-Jul-04 19:16
NadAzur30-Jul-04 19:16 
GeneralRe: Resource Exception Pin
bikram singh31-Jul-04 16:44
bikram singh31-Jul-04 16: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.