Click here to Skip to main content
15,885,366 members
Home / Discussions / C#
   

C#

 
GeneralRe: Threading/GIF animation Pin
Amlanjyoti Saikia9-Feb-13 1:24
Amlanjyoti Saikia9-Feb-13 1:24 
AnswerRe: Threading/GIF animation Pin
Eddy Vluggen9-Feb-13 0:17
professionalEddy Vluggen9-Feb-13 0:17 
GeneralRe: Threading/GIF animation Pin
Amlanjyoti Saikia9-Feb-13 1:53
Amlanjyoti Saikia9-Feb-13 1:53 
AnswerRe: Threading/GIF animation [Solved] Pin
Dave Kreskowiak9-Feb-13 3:44
mveDave Kreskowiak9-Feb-13 3:44 
GeneralRe: Threading/GIF animation [Solved] Pin
Amlanjyoti Saikia1-Mar-13 19:20
Amlanjyoti Saikia1-Mar-13 19:20 
GeneralRe: Threading/GIF animation [Solved] Pin
Dave Kreskowiak2-Mar-13 3:56
mveDave Kreskowiak2-Mar-13 3:56 
AnswerRe: Threading/GIF animation [Solved] [Updated Code] Pin
Amlanjyoti Saikia1-Mar-13 19:21
Amlanjyoti Saikia1-Mar-13 19:21 
Questionhow to access the stream of the ip camera via c# using Aforge Pin
Glendonz8-Feb-13 22:56
Glendonz8-Feb-13 22:56 
hi to all..i need some help on how to access my ip camera in order to display stream on picturebox..please do help me... my camera has an ip 192.168.8.1..it can also be accessed through firefox by http://192.168.8.1 ..this is also my code,when i click the button, the picturebox should show the stream from the camera, but nothing happens..i am also using aforge.net library..
please check my code.. what do i missed? any help is greatly appreciated..thank you..

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using AForge.Video;

namespace cameratest
{
public partial class Form1 : Form
{
MJPEGStream stream = new MJPEGStream("http://192.168.8.1");

public Form1()
{
InitializeComponent();

}

private void video_NewFrame(object sender, NewFrameEventArgs eventArgs)
{
pictureBox1.Image = eventArgs.Frame;
}
private void Form1_Load(object sender, EventArgs e)
{
stream.NewFrame += new NewFrameEventHandler(video_NewFrame);

}

private void button1_Click(object sender, EventArgs e)
{
stream.Start();
}
}
}
AnswerRe: how to access the stream of the ip camera via c# using Aforge Pin
OriginalGriff8-Feb-13 23:04
mveOriginalGriff8-Feb-13 23:04 
GeneralRe: how to access the stream of the ip camera via c# using Aforge Pin
Glendonz13-Feb-13 19:31
Glendonz13-Feb-13 19:31 
Questionproperty of network base software? Pin
Edalat_20118-Feb-13 21:00
Edalat_20118-Feb-13 21:00 
AnswerRe: property of network base software? Pin
Richard MacCutchan8-Feb-13 23:01
mveRichard MacCutchan8-Feb-13 23:01 
GeneralRe: property of network base software? Pin
Edalat_20119-Feb-13 3:28
Edalat_20119-Feb-13 3:28 
GeneralRe: property of network base software? Pin
Dave Kreskowiak9-Feb-13 3:38
mveDave Kreskowiak9-Feb-13 3:38 
QuestionHow to import data from OpenOffice to DataTable/DataSet Pin
devchina8-Feb-13 19:43
devchina8-Feb-13 19:43 
AnswerRe: How to import data from OpenOffice to DataTable/DataSet Pin
Richard MacCutchan8-Feb-13 23:00
mveRichard MacCutchan8-Feb-13 23:00 
GeneralRe: How to import data from OpenOffice to DataTable/DataSet Pin
devchina8-Feb-13 23:15
devchina8-Feb-13 23:15 
GeneralRe: How to import data from OpenOffice to DataTable/DataSet Pin
Richard MacCutchan8-Feb-13 23:42
mveRichard MacCutchan8-Feb-13 23:42 
GeneralRe: How to import data from OpenOffice to DataTable/DataSet Pin
Dave Kreskowiak9-Feb-13 3:36
mveDave Kreskowiak9-Feb-13 3:36 
QuestionShapefile Creations Pin
devchina8-Feb-13 17:52
devchina8-Feb-13 17:52 
AnswerRe: Shapefile Creations Pin
Dave Kreskowiak8-Feb-13 18:29
mveDave Kreskowiak8-Feb-13 18:29 
GeneralRe: Shapefile Creations Pin
devchina8-Feb-13 18:38
devchina8-Feb-13 18:38 
GeneralRe: Shapefile Creations Pin
Dave Kreskowiak9-Feb-13 3:33
mveDave Kreskowiak9-Feb-13 3:33 
QuestionCross threaded operations Pin
MAW308-Feb-13 11:23
MAW308-Feb-13 11:23 
AnswerRe: Cross threaded operations Pin
Jibesh8-Feb-13 12:40
professionalJibesh8-Feb-13 12:40 

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.