Click here to Skip to main content
15,922,427 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
AnswerRe: Reading/displaying Image in raw format Pin
Mark Salsbery29-Oct-07 13:37
Mark Salsbery29-Oct-07 13:37 
GeneralRe: Reading/displaying Image in raw format Pin
Raza568029-Oct-07 13:49
Raza568029-Oct-07 13:49 
QuestionRunning Managed Code Pin
CodeWolf)29-Oct-07 4:43
CodeWolf)29-Oct-07 4:43 
GeneralRe: Running Managed Code Pin
TJoe29-Oct-07 5:31
TJoe29-Oct-07 5:31 
QuestionNamed pipes drive me crazy... [modified] Pin
Andrewfx29-Oct-07 1:01
Andrewfx29-Oct-07 1:01 
AnswerRe: Named pipes drive me crazy... Pin
Andrewfx29-Oct-07 22:45
Andrewfx29-Oct-07 22:45 
QuestionAbout global namespace in cwchar.h Pin
minihotto28-Oct-07 22:35
minihotto28-Oct-07 22:35 
AnswerRe: About global namespace in cwchar.h [modified] Pin
George L. Jackson29-Oct-07 1:21
George L. Jackson29-Oct-07 1:21 
The header file "cwchar.h" puts btowc into the std namespace:

  namesapce std {
    using ::btowc;
   ...
  }

Thus, you will have to prefix btowc with std, std::btowc, or place this in your code:

  using std::btowc

or this:

  using namespace std;

before using btowc.

In the future, please ask C++ related questions in the Visual C++ / MFC forum.





-- modified at 14:38 Tuesday 30th October, 2007

"We make a living by what we get, we make a life by what we give." --Winston Churchill

GeneralRe: About global namespace in cwchar.h Pin
minihotto5-Nov-07 22:52
minihotto5-Nov-07 22:52 
QuestionCreation of class Objects Pin
achichandu28-Oct-07 22:30
achichandu28-Oct-07 22:30 
AnswerRe: Creation of class Objects Pin
George L. Jackson29-Oct-07 1:28
George L. Jackson29-Oct-07 1:28 
Questionboyer-moore alogritim for seraching hex values Pin
aamir ali28-Oct-07 22:27
aamir ali28-Oct-07 22:27 
AnswerRe: boyer-moore alogritim for seraching hex values Pin
George L. Jackson29-Oct-07 1:31
George L. Jackson29-Oct-07 1:31 
QuestionRegarding TreeView Control Pin
achichandu28-Oct-07 22:16
achichandu28-Oct-07 22:16 
Questionabout CLR Pin
minihotto28-Oct-07 20:49
minihotto28-Oct-07 20:49 
QuestionForms.. Pin
Ylno28-Oct-07 17:02
Ylno28-Oct-07 17:02 
AnswerRe: Forms.. Pin
Luc Pattyn28-Oct-07 17:10
sitebuilderLuc Pattyn28-Oct-07 17:10 
GeneralRe: Forms.. Pin
Ylno28-Oct-07 17:17
Ylno28-Oct-07 17:17 
GeneralRe: Forms.. Pin
Luc Pattyn28-Oct-07 17:42
sitebuilderLuc Pattyn28-Oct-07 17:42 
QuestionMessage Removed Pin
26-Oct-07 15:39
Armond Sarkisian26-Oct-07 15:39 
AnswerRe: Logging Into A Windows Shared Folder Pin
TJoe29-Oct-07 6:28
TJoe29-Oct-07 6:28 
QuestionSystem::Math::Round(double, 2) not behaving correctly Pin
BuckBrown26-Oct-07 11:37
BuckBrown26-Oct-07 11:37 
AnswerRe: System::Math::Round(double, 2) not behaving correctly Pin
George L. Jackson26-Oct-07 16:18
George L. Jackson26-Oct-07 16:18 
GeneralRe: System::Math::Round(double, 2) not behaving correctly Pin
BuckBrown29-Oct-07 8:36
BuckBrown29-Oct-07 8:36 
GeneralRe: System::Math::Round(double, 2) not behaving correctly Pin
Mark Salsbery29-Oct-07 9:14
Mark Salsbery29-Oct-07 9:14 

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.