Click here to Skip to main content
15,889,429 members
Home / Discussions / C#
   

C#

 
GeneralRe: SqlCeException (0x80004005) Pin
emma.sun.sts20-Nov-13 10:01
emma.sun.sts20-Nov-13 10:01 
QuestionSQL database compatibility issue and database data reset Pin
emma.sun.sts19-Nov-13 20:34
emma.sun.sts19-Nov-13 20:34 
QuestionSkydrive File Upload Pin
mdsajidfaizan19-Nov-13 20:08
professionalmdsajidfaizan19-Nov-13 20:08 
AnswerRe: Skydrive File Upload Pin
Abhinav S19-Nov-13 21:26
Abhinav S19-Nov-13 21:26 
QuestionRead email attachments using C# Pin
surenred19-Nov-13 18:15
surenred19-Nov-13 18:15 
AnswerRe: Read email attachments using C# Pin
Richard MacCutchan19-Nov-13 21:51
mveRichard MacCutchan19-Nov-13 21:51 
AnswerRe: Read email attachments using C# Pin
BillWoodruff20-Nov-13 6:58
professionalBillWoodruff20-Nov-13 6:58 
QuestionUnable to write frame to the video writer Pin
mharicz19-Nov-13 17:41
mharicz19-Nov-13 17:41 
pls help me with this error

heres my code:

C#
if (capture == null)
            {
                try
                {
                   Image<Bgr, byte> capture1 = new Image<Bgr, byte>("1.GIF");
                  //  capture.QueryFrame();
                    VideoWriter v = new VideoWriter("output.mp4",-1, 1, 1920, 1080, true);
                    v.WriteFrame(capture1);
                }
               catch (NullReferenceException excpt)
                {
                    MessageBox.Show(excpt.Message);
                }
            }
            #endregion
            if (capture != null)
            {
                if (captureInProgress)
                {
                    //if camera is getting frames then stop the capture and set button Text
                    // "Start" for resuming capture
                     button2.Text = "Start!"; //
                    Application.Idle -= ProcessFrame;
                }
                else
                {
                    //if camera is NOT getting frames then start the capture and set button
                    // Text to "Stop" for pausing capture
                     button2.Text = "Stop";
                    Application.Idle += ProcessFrame;
                }
                captureInProgress = !captureInProgress;
            }

trim2010

AnswerRe: Unable to write frame to the video writer Pin
Richard Andrew x6419-Nov-13 17:45
professionalRichard Andrew x6419-Nov-13 17:45 
QuestionHow to create Sublime Text like Command Palette in DotNet C# Desktop Application Pin
Sanket S Sonavane19-Nov-13 14:45
Sanket S Sonavane19-Nov-13 14:45 
AnswerRe: Create Sublime Text like Command Palette in DotNet C# Desktop Application Pin
Mycroft Holmes19-Nov-13 15:25
professionalMycroft Holmes19-Nov-13 15:25 
GeneralRe: Create Sublime Text like Command Palette in DotNet C# Desktop Application Pin
Sanket S Sonavane19-Nov-13 16:00
Sanket S Sonavane19-Nov-13 16:00 
AnswerRe: How to create Sublime Text like Command Palette in DotNet C# Desktop Application Pin
BillWoodruff19-Nov-13 19:01
professionalBillWoodruff19-Nov-13 19:01 
GeneralRe: How to create Sublime Text like Command Palette in DotNet C# Desktop Application Pin
Sanket S Sonavane19-Nov-13 20:36
Sanket S Sonavane19-Nov-13 20:36 
QuestionData is not stored to data source path mentioned in solution explorer Pin
emma.sun.sts19-Nov-13 14:24
emma.sun.sts19-Nov-13 14:24 
AnswerRe: Data is not stored to data source path mentioned in solution explorer Pin
Richard Andrew x6419-Nov-13 17:54
professionalRichard Andrew x6419-Nov-13 17:54 
GeneralRe: Data is not stored to data source path mentioned in solution explorer Pin
emma.sun.sts19-Nov-13 18:28
emma.sun.sts19-Nov-13 18:28 
GeneralRe: Data is not stored to data source path mentioned in solution explorer Pin
Richard Andrew x6419-Nov-13 19:41
professionalRichard Andrew x6419-Nov-13 19:41 
GeneralRe: Data is not stored to data source path mentioned in solution explorer Pin
emma.sun.sts19-Nov-13 20:18
emma.sun.sts19-Nov-13 20:18 
RantProblem Solution to working code that stops working Pin
RBKpro19-Nov-13 3:39
RBKpro19-Nov-13 3:39 
GeneralRe: Problem Solution to working code that stops working Pin
Kornfeld Eliyahu Peter19-Nov-13 3:52
professionalKornfeld Eliyahu Peter19-Nov-13 3:52 
GeneralRe: Problem Solution to working code that stops working Pin
Dave Kreskowiak19-Nov-13 4:19
mveDave Kreskowiak19-Nov-13 4:19 
GeneralRe: Problem Solution to working code that stops working Pin
_Maxxx_19-Nov-13 11:52
professional_Maxxx_19-Nov-13 11:52 
GeneralRe: Problem Solution to working code that stops working Pin
Mycroft Holmes19-Nov-13 13:46
professionalMycroft Holmes19-Nov-13 13:46 
GeneralRe: Problem Solution to working code that stops working Pin
Matty2219-Nov-13 15:20
Matty2219-Nov-13 15:20 

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.