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

Managed C++/CLI

 
AnswerRe: I have a stumper on Forms Designer Pin
Luc Pattyn17-Sep-07 13:25
sitebuilderLuc Pattyn17-Sep-07 13:25 
GeneralRe: I have a stumper on Forms Designer Pin
George L. Jackson17-Sep-07 14:50
George L. Jackson17-Sep-07 14:50 
GeneralRe: I have a stumper on Forms Designer Pin
Luc Pattyn17-Sep-07 15:06
sitebuilderLuc Pattyn17-Sep-07 15:06 
GeneralRe: I have a stumper on Forms Designer Pin
George L. Jackson17-Sep-07 15:12
George L. Jackson17-Sep-07 15:12 
GeneralRe: I have a stumper on Forms Designer Pin
Luc Pattyn17-Sep-07 21:49
sitebuilderLuc Pattyn17-Sep-07 21:49 
AnswerRe: I have a stumper on Forms Designer Pin
led mike19-Sep-07 12:16
led mike19-Sep-07 12:16 
Questionrun outside exe in a form Pin
themancer17-Sep-07 0:07
themancer17-Sep-07 0:07 
AnswerRe: run outside exe in a form Pin
earlgraham4-Jan-08 7:25
earlgraham4-Jan-08 7:25 
I use System::Diagnostics::ProcessStartInfo. Ex below

<code>Diagnostics::ProcessStartInfo   ^pInfo;
  if ( String::IsNullOrEmpty(SoundString) == false )
  {
    if ( System::IO::File::Exists(SoundString) == true )
    {
      pInfo = gcnew Diagnostics::ProcessStartInfo();
      pInfo->Verb = "play";
      pInfo->FileName = SoundString;
      pInfo->CreateNoWindow = true;
      pInfo->UseShellExecute = false;
      
      Diagnostics::Process::Start(pInfo);
    }
    else
      LogDebugInfo(String::Format(L"SoundString file {0} does not exists", SoundString));
  }
  else
  {
    LogDebugInfo(L"SoundString string was empty");
  } </code>


Programmer
Glenn Earl Graham
Austin, TX

Questionc++ project Pin
nicetohaveyou16-Sep-07 19:25
nicetohaveyou16-Sep-07 19:25 
AnswerRe: c++ project Pin
Russell'17-Sep-07 23:12
Russell'17-Sep-07 23:12 
AnswerRe: c++ project Pin
Hamid_RT18-Sep-07 19:59
Hamid_RT18-Sep-07 19:59 
AnswerRe: c++ project Pin
Signal-925-Sep-07 17:06
Signal-925-Sep-07 17:06 
QuestionNeed help figuring out error message Pin
jada092316-Sep-07 9:08
jada092316-Sep-07 9:08 
AnswerRe: Need help figuring out error message Pin
Luc Pattyn16-Sep-07 9:48
sitebuilderLuc Pattyn16-Sep-07 9:48 
GeneralRe: Need help figuring out error message Pin
jada092316-Sep-07 10:09
jada092316-Sep-07 10:09 
GeneralRe: Need help figuring out error message Pin
Christian Graus16-Sep-07 10:29
protectorChristian Graus16-Sep-07 10:29 
AnswerRe: Need help figuring out error message Pin
Christian Graus16-Sep-07 10:07
protectorChristian Graus16-Sep-07 10:07 
AnswerRe: Need help figuring out error message Pin
Christian Graus16-Sep-07 10:08
protectorChristian Graus16-Sep-07 10:08 
GeneralRe: Need help figuring out error message Pin
jada092316-Sep-07 10:30
jada092316-Sep-07 10:30 
GeneralRe: Need help figuring out error message Pin
Christian Graus16-Sep-07 12:24
protectorChristian Graus16-Sep-07 12:24 
Questionhelp.....undefined reference to `InitCommonControlsEx@4' ERROR help??? Pin
$w0rdf1$h16-Sep-07 0:56
$w0rdf1$h16-Sep-07 0:56 
AnswerRe: help.....undefined reference to `InitCommonControlsEx@4' ERROR help??? Pin
$w0rdf1$h16-Sep-07 1:54
$w0rdf1$h16-Sep-07 1:54 
Questionundefined reference to `InitCommonControlsEx@4' ERROR help??? Pin
$w0rdf1$h16-Sep-07 0:55
$w0rdf1$h16-Sep-07 0:55 
QuestionWrapping legacy code Pin
dedil14-Sep-07 7:48
dedil14-Sep-07 7:48 
AnswerRe: Wrapping legacy code Pin
led mike14-Sep-07 8:37
led mike14-Sep-07 8:37 

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.