Click here to Skip to main content
15,922,407 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Basic Segmentation fault help needed Pin
Stuart Dootson8-Apr-09 23:13
professionalStuart Dootson8-Apr-09 23:13 
GeneralRe: Basic Segmentation fault help needed Pin
CPallini8-Apr-09 23:24
mveCPallini8-Apr-09 23:24 
QuestionRe: Basic Segmentation fault help needed Pin
David Crow9-Apr-09 3:19
David Crow9-Apr-09 3:19 
Questionpointer on class Pin
durban28-Apr-09 20:34
durban28-Apr-09 20:34 
AnswerRe: pointer on class Pin
«_Superman_»8-Apr-09 20:37
professional«_Superman_»8-Apr-09 20:37 
AnswerRe: pointer on class Pin
Paresh Chitte8-Apr-09 21:04
Paresh Chitte8-Apr-09 21:04 
AnswerRe: pointer on class Pin
KarstenK8-Apr-09 21:17
mveKarstenK8-Apr-09 21:17 
GeneralRe: pointer on class Pin
durban29-Apr-09 21:34
durban29-Apr-09 21:34 
advanced to forward, 2 errors became less:
#pragma once
class СAdderDialog; // after addition this line into file "modeldlg.h" eliminate (remove)only 2 errors
// CMainDlg
class CMainDlg : public CDialog
{
СAdderDialog* m_pModeless5;

CMainDlg::CMainDlg(CWnd* pParent /*=NULL*/)
: CDialog(CMainDlg::IDD, pParent)
, m_pModeless5(NULL)
{
. . . . . . . . . . .
///////////////////////////////////////
void CMainDlg::OnOK()
{
if (m_pModeless5 == NULL) // OK!
{
m_pModeless5 = new CAdderDialog(this); // error C2440: '=' : cannot convert from 'CAdderDialog *' to 'СAdderDialog *'
if (m_pModeless5->Create() == TRUE) // modeldlg.cpp(67) : error C2027: use of undefined type 'СAdderDialog'
// error C2227: left of '->Create' must point to class/struct/union/generic type
GetDlgItem(IDOK)->EnableWindow(FALSE);
}
else
m_pModeless5->SetActiveWindow(); // error C2027: use of undefined type 'СAdderDialog'
}
GeneralRe: pointer on class Pin
KarstenK13-Apr-09 22:07
mveKarstenK13-Apr-09 22:07 
GeneralRe: pointer on class Pin
ThatsAlok8-Apr-09 22:59
ThatsAlok8-Apr-09 22:59 
QuestionRun an exe from ShellExecute with administrator permission in Vista. Pin
Le@rner8-Apr-09 19:59
Le@rner8-Apr-09 19:59 
JokeRe: Run an exe from ShellExecute with administrator permission in Vista. Pin
«_Superman_»8-Apr-09 20:02
professional«_Superman_»8-Apr-09 20:02 
AnswerRe: Run an exe from ShellExecute with administrator permission in Vista. Pin
KarstenK8-Apr-09 21:18
mveKarstenK8-Apr-09 21:18 
GeneralRe: Run an exe from ShellExecute with administrator permission in Vista. Pin
Le@rner8-Apr-09 21:24
Le@rner8-Apr-09 21:24 
GeneralRe: Run an exe from ShellExecute with administrator permission in Vista. Pin
David Crow9-Apr-09 3:22
David Crow9-Apr-09 3:22 
AnswerRe: Run an exe from ShellExecute with administrator permission in Vista. Pin
Paresh Chitte8-Apr-09 21:22
Paresh Chitte8-Apr-09 21:22 
QuestionRunning Applications like Browser in limited user access rights Pin
ashish8patil8-Apr-09 19:46
ashish8patil8-Apr-09 19:46 
AnswerRe: Running Applications like Browser in limited user access rights Pin
Randor 9-Apr-09 1:28
professional Randor 9-Apr-09 1:28 
QuestionHow to recieve a User defined messages in Win32 Console based [MFC supported] application from any other running Exe. Pin
PankajB8-Apr-09 19:43
PankajB8-Apr-09 19:43 
AnswerRe: How to recieve a User defined messages in Win32 Console based [MFC supported] application from any other running Exe. Pin
PankajB8-Apr-09 19:47
PankajB8-Apr-09 19:47 
GeneralRe: How to recieve a User defined messages in Win32 Console based [MFC supported] application from any other running Exe. Pin
«_Superman_»8-Apr-09 20:00
professional«_Superman_»8-Apr-09 20:00 
GeneralRe: How to recieve a User defined messages in Win32 Console based [MFC supported] application from any other running Exe. Pin
PankajB8-Apr-09 20:05
PankajB8-Apr-09 20:05 
GeneralRe: How to recieve a User defined messages in Win32 Console based [MFC supported] application from any other running Exe. Pin
«_Superman_»8-Apr-09 20:09
professional«_Superman_»8-Apr-09 20:09 
GeneralRe: How to recieve a User defined messages in Win32 Console based [MFC supported] application from any other running Exe. Pin
PankajB8-Apr-09 20:16
PankajB8-Apr-09 20:16 
GeneralRe: How to recieve a User defined messages in Win32 Console based [MFC supported] application from any other running Exe. Pin
«_Superman_»8-Apr-09 20:36
professional«_Superman_»8-Apr-09 20:36 

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.