Click here to Skip to main content
15,881,687 members
Home / Discussions / C#
   

C#

 
Questionxp sidebar in .net2005 Pin
gadeypavan11-Jun-09 4:32
gadeypavan11-Jun-09 4:32 
AnswerRe: xp sidebar in .net2005 Pin
soloforce11-Jun-09 4:34
soloforce11-Jun-09 4:34 
GeneralRe: xp sidebar in .net2005 Pin
gadeypavan11-Jun-09 4:42
gadeypavan11-Jun-09 4:42 
GeneralRe: xp sidebar in .net2005 Pin
Manas Bhardwaj11-Jun-09 5:11
professionalManas Bhardwaj11-Jun-09 5:11 
GeneralRe: xp sidebar in .net2005 Pin
Dave Kreskowiak11-Jun-09 5:25
mveDave Kreskowiak11-Jun-09 5:25 
GeneralRe: xp sidebar in .net2005 Pin
EliottA11-Jun-09 5:46
EliottA11-Jun-09 5:46 
GeneralRe: xp sidebar in .net2005 Pin
saurabh sahay11-Jun-09 6:10
saurabh sahay11-Jun-09 6:10 
QuestionCMD.exe help Pin
soloforce11-Jun-09 4:30
soloforce11-Jun-09 4:30 
I’m trying to run the following command string from a GUI, everything works fine but I can minimize the command prompt or run it in hidden mode.

Any way to do this?


string stfamtv0001 = "/C" + ("\"\"C:\\Program Files\\ ThinTV\\PLINK.EXE\"" + " " + "appliance@%ThinConnectedFrom%" + " " + "-pw appliance" + " " + "\"killall -q vlc; export DISPLAY=Blush | :O .0; vlc --video-on-top --key-vol-up 100 rtsp://stfamtv0001/streama\"\"");

private void data(string streamPath)
{
System.Diagnostics.Process ps;
ps = new System.Diagnostics.Process();
ps.EnableRaisingEvents = false;
System.Diagnostics.Process.Start("CMD.exe", streamPath);
ps.Close();
}

private void btnFOX_Click(object sender, EventArgs e)
{
data(stfamtv0001);

}
AnswerRe: CMD.exe help Pin
saurabh sahay11-Jun-09 5:01
saurabh sahay11-Jun-09 5:01 
GeneralRe: CMD.exe help Pin
soloforce11-Jun-09 5:51
soloforce11-Jun-09 5:51 
GeneralRe: CMD.exe help Pin
saurabh sahay11-Jun-09 5:58
saurabh sahay11-Jun-09 5:58 
GeneralRe: CMD.exe help Pin
saurabh sahay11-Jun-09 5:59
saurabh sahay11-Jun-09 5:59 
GeneralRe: CMD.exe help Pin
soloforce11-Jun-09 6:55
soloforce11-Jun-09 6:55 
GeneralRe: CMD.exe help Pin
EliottA11-Jun-09 7:51
EliottA11-Jun-09 7:51 
AnswerRe: CMD.exe help Pin
saurabh sahay11-Jun-09 8:11
saurabh sahay11-Jun-09 8:11 
GeneralRe: CMD.exe help Pin
soloforce11-Jun-09 9:58
soloforce11-Jun-09 9:58 
GeneralRe: CMD.exe help Pin
saurabh sahay11-Jun-09 10:09
saurabh sahay11-Jun-09 10:09 
GeneralRe: CMD.exe help Pin
Skymir11-Jun-09 10:16
Skymir11-Jun-09 10:16 
GeneralRe: CMD.exe help Pin
saurabh sahay11-Jun-09 10:18
saurabh sahay11-Jun-09 10:18 
GeneralRe: CMD.exe help Pin
soloforce12-Jun-09 1:48
soloforce12-Jun-09 1:48 
GeneralRe: CMD.exe help Pin
saurabh sahay12-Jun-09 1:57
saurabh sahay12-Jun-09 1:57 
GeneralRe: CMD.exe help Pin
soloforce12-Jun-09 2:07
soloforce12-Jun-09 2:07 
GeneralRe: CMD.exe help Pin
saurabh sahay12-Jun-09 2:11
saurabh sahay12-Jun-09 2:11 
GeneralRe: CMD.exe help Pin
soloforce12-Jun-09 2:41
soloforce12-Jun-09 2:41 
AnswerRe: CMD.exe help Pin
saurabh sahay11-Jun-09 10:15
saurabh sahay11-Jun-09 10:15 

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.