Returns the array of strings containing the names of GigE Vision devices connected to the system. The devices are listed in the alphabetical order "model + serial number".
This VB example initializes a combo box with camera names and uses it to switch between the cameras:
Private Sub Form_Load()
CamLst = ActiveGige1.GetCameraList
For i = 0 ToUBound(CamLst)
Combo1.AddItem (CamLst(i))
Next
Combo1.ListIndex = 0
ActiveGige1.Acquire = True
End Sub
Private Sub Combo1_Click()
ActiveGige1.Camera = Combo1.ListIndex
End Sub
This MFC example fills out a combo box with camera names: