Click here to Skip to main content
15,897,519 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Generalneed your help Pin
gentleguy24-Jan-08 17:05
gentleguy24-Jan-08 17:05 
GeneralRe: need your help Pin
Don Box24-Jan-08 17:41
Don Box24-Jan-08 17:41 
GeneralRe: need your help Pin
CPallini24-Jan-08 22:08
mveCPallini24-Jan-08 22:08 
GeneralRe: need your help Pin
gentleguy25-Jan-08 18:04
gentleguy25-Jan-08 18:04 
GeneralRe: need your help Pin
CPallini25-Jan-08 21:39
mveCPallini25-Jan-08 21:39 
GeneralRe: need your help Pin
David Crow25-Jan-08 3:09
David Crow25-Jan-08 3:09 
GeneralOffice Open/Save dialog messages Pin
Nitheesh George24-Jan-08 16:54
Nitheesh George24-Jan-08 16:54 
GeneralRe: Office Open/Save dialog messages Pin
ShilpiP24-Jan-08 19:40
ShilpiP24-Jan-08 19:40 
void CAppplicationLanucherDlg::OnOpen()
{
// TODO: Add your control notification handler code here
CString str,fstr;

char strFilter[] = { "All Files (*.*)|*.*|" };

CFileDialog FileDlg(TRUE, ".All Files", NULL, 0, strFilter);
if( FileDlg.DoModal() == IDOK )
{
str=FileDlg.GetPathName();
HINSTANCE ht=ShellExecute(handle, "open", str, NULL, NULL, SW_SHOWNORMAL);

long i=(long)ht ;

if(i==SE_ERR_NOASSOC)
WinExec("rundll32.exe shell32.dll, OpenAs_RunDLL " +str, SW_SHOWNORMAL);
}
}

Yes U Can ...If U Can ,Dream it , U can do it ...ICAN

Questionhow to change the windows current user password? Pin
sun_shb24-Jan-08 16:35
sun_shb24-Jan-08 16:35 
AnswerRe: how to change the windows current user password? Pin
Naveen24-Jan-08 18:43
Naveen24-Jan-08 18:43 
Generalcan you give me a demo? Pin
sun_shb24-Jan-08 19:34
sun_shb24-Jan-08 19:34 
GeneralRe: can you give me a demo? Pin
Naveen24-Jan-08 20:00
Naveen24-Jan-08 20:00 
GeneralLink Errors from Imports/Exports with C++ prog importing C exports Pin
ForNow24-Jan-08 13:01
ForNow24-Jan-08 13:01 
QuestionRe: Link Errors from Imports/Exports with C++ prog importing C exports Pin
Mark Salsbery24-Jan-08 13:37
Mark Salsbery24-Jan-08 13:37 
GeneralRe: Link Errors from Imports/Exports with C++ prog importing C exports Pin
ForNow24-Jan-08 15:43
ForNow24-Jan-08 15:43 
GeneralRe: Link Errors from Imports/Exports with C++ prog importing C exports Pin
CPallini24-Jan-08 21:37
mveCPallini24-Jan-08 21:37 
GeneralRe: Link Errors from Imports/Exports with C++ prog importing C exports Pin
ForNow25-Jan-08 10:55
ForNow25-Jan-08 10:55 
GeneralRe: Link Errors from Imports/Exports with C++ prog importing C exports Pin
Mark Salsbery25-Jan-08 5:58
Mark Salsbery25-Jan-08 5:58 
GeneralRe: Link Errors from Imports/Exports with C++ prog importing C exports Pin
ForNow25-Jan-08 10:53
ForNow25-Jan-08 10:53 
GeneralGDI+ RectF constructor Pin
bob1697224-Jan-08 9:34
bob1697224-Jan-08 9:34 
GeneralRe: GDI+ RectF constructor Pin
Mark Salsbery24-Jan-08 9:41
Mark Salsbery24-Jan-08 9:41 
GeneralRe: GDI+ RectF constructor Pin
bob1697224-Jan-08 9:57
bob1697224-Jan-08 9:57 
GeneralRe: GDI+ RectF constructor Pin
bob1697224-Jan-08 9:59
bob1697224-Jan-08 9:59 
GeneralRe: GDI+ RectF constructor Pin
Mark Salsbery24-Jan-08 10:01
Mark Salsbery24-Jan-08 10:01 
GeneralRe: GDI+ RectF constructor Pin
bob1697224-Jan-08 10:08
bob1697224-Jan-08 10:08 

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.