Forums

Full Version: Displaying Crossbar Dialogs?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.

Antman

Hi,

Note sure if i'm on the right track, however I am wondering how i go about displaying the Crossbar dialogs? I've tried other DS video capture demo applications (i.e. VidGrab v4.8) that manage to display a Crossbar dialog where i can select the Source for video capture (i.e. Composite/SVideo) for a particular device, and was hoping to do the same.

I can easily enough call ShowVideoDialog for the standard VideoDialogs retrieved from the VLDSCapture.AvailableVideoDialogs property, however i am unsure how to use the object returned from VLDSCapture.CrossbarDialogs.Items[i].

Any assistance here would be appreciated.

Cheers

Antman
Ummm, never mind, a blonde moment.

I can simply call the Show method of the Object, similar to the following. DOH.


Var
CrossbarDialog : TDSCrossbarDialog;
Begin
CrossbarDialog := VLDSCapture1.CrossbarDialogs.Items[0];
CrossbarDialog.Show;
End;
Reference URL's