This is software that came with the board from the manufacturer. I do not have the source code to the DTAFGMON1 object, which I think is what I need.
Is there no doc's or help?
lists of the available properties, methods, and events ?


In the,
Code:
Public Sub mnuStartContinuous_Click()
You have,
Code:
'Acquire multiple images into the frame buffer
        Call frmMain.DTAFGMON1.AcquireMem(0, 2, ContinuousAsync)
and in,
Code:
mnuSaveImageFile_Click
Code:
 'Acquire an image into the frame buffer.
frmMain.DTAFGMON1.AcquireMem(0, 1, SingleShot)
So, in the, ''Save image to bitmap file''
Code:
        'Save image to bitmap file.
        Dim FrameBuffer As DTBuffer
        Set FrameBuffer = frmMain.DTAFGMON1.GetBuffer(0)
You Set Buffer to DTAFGMON1.GetBuffer(0)
So maybe same for ContinuousAsync.
Just a guess !
Maybe the manufacturer can help with that.

But you know you have,
Code:
frmMain.DTAFGMON1.Visible
frmMain.DTAFGMON1.AcquireMem(0, 1, SingleShot)
frmMain.DTAFGMON1.GetBuffer(0)
frmMain.DTAFGMON1.AcquireMem(0, 2, ContinuousAsync)
frmMain.DTAFGMON1.CloseDevice
frmMain.DTAFGMON1.StopAcquire
'Open the Configuration property pages
DTAFGMON1.ShowPropPages(frmMain.hWnd, pfInput Or pfOutput Or pfCapture Or pfLUT)
frmMain.DTAFGMON1.OpenDevice(BoardName)
frmMain.DTAFGMON1.LoadConfigFile
NumDTBoards = frmMain.DTAFGMON1.DeviceCount
cboSelectDevice.AddItem frmMain.DTAFGMON1.GetDeviceName(i)
frmMain.DTAFGMON1.WriteDigitalOutputPattern(DigitalOutputPattern)
DigInValue = frmMain.DTAFGMON1.ReadDigitalInputPattern
frmMain.DTAFGMON1.Timeout = 
frmMain.DTAFGMON1.InputLineEventMask = HF
And a ''DTBuffer''.

So that's a good start.