Click here to Skip to main content
15,925,602 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: CString crashes -- when i assign TCHAR array to it Pin
Ravi Bhavnani18-Apr-05 8:48
professionalRavi Bhavnani18-Apr-05 8:48 
GeneralRe: CString crashes -- when i assign TCHAR array to it Pin
Ryan Binns18-Apr-05 18:06
Ryan Binns18-Apr-05 18:06 
GeneralError in using GDI+ VC6 with sp5 Pin
Member 178245018-Apr-05 6:05
Member 178245018-Apr-05 6:05 
GeneralRe: Error in using GDI+ VC6 with sp5 Pin
PJ Arends18-Apr-05 6:17
professionalPJ Arends18-Apr-05 6:17 
Generalto PJ Arends Pin
Member 178245018-Apr-05 6:52
Member 178245018-Apr-05 6:52 
GeneralHelp!!!! Pin
Member 178245018-Apr-05 19:02
Member 178245018-Apr-05 19:02 
GeneralHelp Pin
Member 178245019-Apr-05 6:23
Member 178245019-Apr-05 6:23 
GeneralGet commandline arguments from process Pin
P Gibson18-Apr-05 5:50
P Gibson18-Apr-05 5:50 
GeneralRe: Get commandline arguments from process Pin
22491718-Apr-05 7:39
22491718-Apr-05 7:39 
GeneralRe: Get commandline arguments from process Pin
P Gibson18-Apr-05 22:18
P Gibson18-Apr-05 22:18 
GeneralRe: Get commandline arguments from process Pin
22491719-Apr-05 2:22
22491719-Apr-05 2:22 
GeneralDeskband, how to show/hide Pin
dkarpezo_218-Apr-05 4:59
dkarpezo_218-Apr-05 4:59 
GeneralRe: Deskband, how to show/hide Pin
Shaun Harrington11-Oct-06 3:54
Shaun Harrington11-Oct-06 3:54 
GeneralHWND / CWnd* - compile errors Pin
theFrenchHornet18-Apr-05 4:49
theFrenchHornet18-Apr-05 4:49 
GeneralRe: HWND / CWnd* - compile errors Pin
dkarpezo_218-Apr-05 5:15
dkarpezo_218-Apr-05 5:15 
GeneralRe: HWND / CWnd* - compile errors Pin
theFrenchHornet18-Apr-05 6:18
theFrenchHornet18-Apr-05 6:18 
GeneralRe: HWND / CWnd* - compile errors Pin
Christian Graus18-Apr-05 17:04
protectorChristian Graus18-Apr-05 17:04 
GeneralRe: HWND / CWnd* - compile errors Pin
theFrenchHornet19-Apr-05 4:46
theFrenchHornet19-Apr-05 4:46 
GeneralBITS service with IP number instead of machine name Pin
Kri518-Apr-05 4:29
Kri518-Apr-05 4:29 
GeneralRegistry Function Pin
dSolariuM18-Apr-05 4:28
dSolariuM18-Apr-05 4:28 
GeneralRe: Registry Function Pin
22491718-Apr-05 7:22
22491718-Apr-05 7:22 
GeneralLittle Problem compiling Pin
doctorpi18-Apr-05 4:21
doctorpi18-Apr-05 4:21 
GeneralRe: Little Problem compiling Pin
Mike Dimmick18-Apr-05 4:31
Mike Dimmick18-Apr-05 4:31 
GeneralRe: Little Problem compiling Pin
doctorpi18-Apr-05 4:40
doctorpi18-Apr-05 4:40 
GeneralRe: Little Problem compiling Pin
Roland Pibinger18-Apr-05 9:48
Roland Pibinger18-Apr-05 9:48 
doctorpi wrote:
The point then is replace includes by class where possible?

Yes. Here are some hints of what is possible:

<code><font size=2 face="Courier New"><font color="#000080">#include "notpossible.h";

class</font><font color="#008080"> </font>Possible;

<font color="#000080">class</font><font color="#008080"> </font>MyClass
{
<font color="#000080">public</font>:
<font color="#008080">  </font>Possible<font color="#008080"> </font>foo<font color="#008080"> </font>(Possible<font color="#008080"> </font>v,<font color="#008080"> </font><font color="#000080">const</font><font color="#008080"> </font>Possible&<font color="#008080"> </font>r,<font color="#008080"> </font>Possible*<font color="#008080"> </font>p);

<font color="#008080">  </font><font color="#000080">void</font><font color="#008080"> </font>bar()
<font color="#008080">  </font>{
<font color="#008080">     </font>NotPossible<font color="#008080"> </font>n<font color="#008080"> </font>=<font color="#008080"> </font><font color="#000080">3</font>;
<font color="#008080">  </font>}

<font color="#000080">private</font>:
<font color="#008080">  </font>NotPossible<font color="#008080"> </font>nope;
};

</font>
</code>

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.