Click here to Skip to main content
15,915,319 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: MSDN .NET 2003 Download Pin
Ryan Binns27-May-05 2:16
Ryan Binns27-May-05 2:16 
GeneralRe: MSDN .NET 2003 Download Pin
Toni7827-May-05 5:34
Toni7827-May-05 5:34 
Generalcan't figure out this calculation Pin
godzooky26-May-05 5:29
godzooky26-May-05 5:29 
GeneralRe: makes no sense to me Pin
Budric B.26-May-05 6:47
Budric B.26-May-05 6:47 
GeneralRe: can't figure out this calculation Pin
#realJSOP26-May-05 7:28
professional#realJSOP26-May-05 7:28 
GeneralRe: can't figure out this calculation Pin
Toni7826-May-05 7:53
Toni7826-May-05 7:53 
GeneralCeateProcess Pin
Imtiaz Murtaza26-May-05 5:12
Imtiaz Murtaza26-May-05 5:12 
GeneralRe: CeateProcess Pin
skornel26-May-05 6:39
skornel26-May-05 6:39 
I use this:

{
SHELLEXECUTEINFO ShExecInfo;

ShExecInfo.cbSize = sizeof(SHELLEXECUTEINFO);
ShExecInfo.fMask = NULL;
ShExecInfo.hwnd = NULL;
ShExecInfo.lpVerb = 0;
ShExecInfo.lpFile = DocName;
ShExecInfo.lpParameters = NULL;
ShExecInfo.lpDirectory = NULL;
ShExecInfo.nShow = SW_MAXIMIZE;
ShExecInfo.hInstApp = NULL;

ShellExecuteEx(&ShExecInfo);
}

Just put your document's name in DocName and the system will find the program that handles the document. I have used it with a .rtf document and it loads MSWord on systems that have MSWord or it loads WordPad on the systems that don't have MSWord.
GeneralSetting up hooks to monitor Webpage controls in IE Pin
m_ramesh3126-May-05 5:01
m_ramesh3126-May-05 5:01 
GeneralRe: Setting up hooks to monitor Webpage controls in IE Pin
Shog926-May-05 12:20
sitebuilderShog926-May-05 12:20 
GeneralRe: Setting up hooks to monitor Webpage controls in IE Pin
Waleed Eissa26-May-05 13:09
Waleed Eissa26-May-05 13:09 
GeneralRe: Setting up hooks to monitor Webpage controls in IE Pin
ThatsAlok26-May-05 18:25
ThatsAlok26-May-05 18:25 
GeneralOLEDB Decimal Seperator Wrong! Pin
Chris Ulliott26-May-05 4:40
Chris Ulliott26-May-05 4:40 
GeneralReading a file Pin
Andrew Admire26-May-05 4:37
Andrew Admire26-May-05 4:37 
GeneralRe: Reading a file Pin
toxcct26-May-05 4:45
toxcct26-May-05 4:45 
GeneralRe: Reading a file Pin
Andrew Admire26-May-05 5:10
Andrew Admire26-May-05 5:10 
GeneralRe: Reading a file Pin
Andrew Admire26-May-05 9:26
Andrew Admire26-May-05 9:26 
GeneralRe: Reading a file Pin
ThatsAlok26-May-05 21:40
ThatsAlok26-May-05 21:40 
GeneralRe: Reading a file Pin
Andrew Admire27-May-05 3:41
Andrew Admire27-May-05 3:41 
GeneralAddSlashes Pin
talkster526-May-05 3:42
talkster526-May-05 3:42 
GeneralRe: AddSlashes Pin
David Crow26-May-05 3:55
David Crow26-May-05 3:55 
GeneralRe: AddSlashes Pin
talkster526-May-05 4:16
talkster526-May-05 4:16 
GeneralRe: AddSlashes Pin
John M. Drescher26-May-05 4:26
John M. Drescher26-May-05 4:26 
GeneralRe: AddSlashes Pin
talkster526-May-05 4:30
talkster526-May-05 4:30 
GeneralRe: AddSlashes Pin
Ravi Bhavnani26-May-05 4:36
professionalRavi Bhavnani26-May-05 4: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.