Click here to Skip to main content
15,891,828 members
Home / Discussions / C#
   

C#

 
QuestionReflection- trying to use reflection in my project, with the code given on codeproject.com itself, however it is not working.. Plz help!! Pin
Puneet Bhatnagar5-Oct-08 22:52
Puneet Bhatnagar5-Oct-08 22:52 
AnswerRe: Reflection- trying to use reflection in my project, with the code given on codeproject.com itself, however it is not working.. Plz help!! Pin
N a v a n e e t h5-Oct-08 23:09
N a v a n e e t h5-Oct-08 23:09 
AnswerRe: Reflection- trying to use reflection in my project, with the code given on codeproject.com itself, however it is not working.. Plz help!! Pin
leppie5-Oct-08 23:59
leppie5-Oct-08 23:59 
AnswerRe: Reflection- trying to use reflection in my project, with the code given on codeproject.com itself, however it is not working.. Plz help!! Pin
Mark Churchill6-Oct-08 1:09
Mark Churchill6-Oct-08 1:09 
GeneralRe: Reflection- trying to use reflection in my project, with the code given on codeproject.com itself, however it is not working.. Plz help!! Pin
Puneet Bhatnagar6-Oct-08 23:36
Puneet Bhatnagar6-Oct-08 23:36 
GeneralRe: Reflection- trying to use reflection in my project, with the code given on codeproject.com itself, however it is not working.. Plz help!! Pin
Mark Churchill7-Oct-08 5:37
Mark Churchill7-Oct-08 5:37 
GeneralRe: Reflection- trying to use reflection in my project, with the code given on codeproject.com itself, however it is not working.. Plz help!! Pin
Puneet Bhatnagar10-Oct-08 0:02
Puneet Bhatnagar10-Oct-08 0:02 
QuestionUsing FFMPEG Wmv to Swf: Not Working in C#: Need Help... Pin
elango.sham5-Oct-08 22:12
elango.sham5-Oct-08 22:12 
Hai all,

In my application i am trying to convert my wmv file into swf file format. And its working on Command prombt very well and it created the output file also.

But when i write the code in c# (below mentioned) its not working. But no more errors or exceptions arise. But No outputs found(no new.swf file was created).



filargs = "ffmpeg -i d:\\hai.wmv -s 480*360 -deinterlace -ab 32 -r 15 -ar 22050 -ac 1 d:\\hai.swf";

System.Diagnostics.Process proc = new System.Diagnostics.Process();

proc.StartInfo.FileName ="D:\\ffmpeg\\ffmpeg.exe";

proc.StartInfo.Arguments = filargs;

proc.StartInfo.UseShellExecute = false;

proc.StartInfo.CreateNoWindow = false;

proc.StartInfo.RedirectStandardOutput = false;

proc.Start();

proc.WaitforExit(50000);

Thanks and regards...
Sham
AnswerRe: Using FFMPEG Wmv to Swf: Not Working in C#: Need Help... Pin
leppie6-Oct-08 0:01
leppie6-Oct-08 0:01 
QuestionHow to handle unhandled exceptions in Windows Forms application Pin
matixsc5-Oct-08 22:10
professionalmatixsc5-Oct-08 22:10 
AnswerRe: How to handle unhandled exceptions in Windows Forms application Pin
N a v a n e e t h5-Oct-08 22:25
N a v a n e e t h5-Oct-08 22:25 
GeneralRe: How to handle unhandled exceptions in Windows Forms application Pin
matixsc5-Oct-08 22:45
professionalmatixsc5-Oct-08 22:45 
GeneralRe: How to handle unhandled exceptions in Windows Forms application Pin
N a v a n e e t h5-Oct-08 23:07
N a v a n e e t h5-Oct-08 23:07 
GeneralRe: How to handle unhandled exceptions in Windows Forms application Pin
Vikram A Punathambekar5-Oct-08 23:30
Vikram A Punathambekar5-Oct-08 23:30 
GeneralRe: How to handle unhandled exceptions in Windows Forms application Pin
N a v a n e e t h5-Oct-08 23:33
N a v a n e e t h5-Oct-08 23:33 
AnswerRe: How to handle unhandled exceptions in Windows Forms application Pin
Daniel Grunwald6-Oct-08 2:44
Daniel Grunwald6-Oct-08 2:44 
GeneralRe: How to handle unhandled exceptions in Windows Forms application Pin
matixsc6-Oct-08 3:13
professionalmatixsc6-Oct-08 3:13 
GeneralRe: How to handle unhandled exceptions in Windows Forms application Pin
S. Senthil Kumar6-Oct-08 6:04
S. Senthil Kumar6-Oct-08 6:04 
QuestionHow to paste only valid value in textbox. Pin
S a n d y5-Oct-08 22:03
S a n d y5-Oct-08 22:03 
AnswerRe: How to paste only valid value in textbox. Pin
Nagy Vilmos5-Oct-08 22:05
professionalNagy Vilmos5-Oct-08 22:05 
GeneralRe: How to paste only valid value in textbox. Pin
S a n d y5-Oct-08 22:09
S a n d y5-Oct-08 22:09 
GeneralRe: How to paste only valid value in textbox. Pin
N a v a n e e t h5-Oct-08 22:29
N a v a n e e t h5-Oct-08 22:29 
AnswerRe: How to paste only valid value in textbox. Pin
Vikram A Punathambekar5-Oct-08 22:33
Vikram A Punathambekar5-Oct-08 22:33 
AnswerRe: How to paste only valid value in textbox. Pin
DaveyM696-Oct-08 0:13
professionalDaveyM696-Oct-08 0:13 
GeneralRe: How to paste only valid value in textbox. Pin
S a n d y6-Oct-08 1:41
S a n d y6-Oct-08 1:41 

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.