CentralServerDemo.MainForm.LoadVideoDevices C# (CSharp) Method

LoadVideoDevices() private method

Loads the list of video capture devices found on the system
private LoadVideoDevices ( ) : void
return void
		private void LoadVideoDevices()
		{
		    ArrayList vdevs = ics.GetVideoDevices();

		    for (int i = 0; i < vdevs.Count; i++)
			{
				cbWebcam.Items.Add(vdevs[i].ToString());
			}
		}
MainForm