Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Video Capture with VFP 6

Status
Not open for further replies.

kate

Programmer
Nov 19, 2001
51
US
I have a program that takes pic for permits and employee badges. Currently we take pictures using a Snappy. Since Snappy is no longer available they want to use a Winnov 1000 VO plus Videun Board. Any suggestion on how to access and take pictures with the video card.

The old code :

frmLicense.addobject "oleSnappy","olecontrol","SNAPPY.SnappyCtrl.1")

with frmLicense.oleSnappy
.autoshow = .F.
.camerasource = .T.
.cropleft = 0
.cropright = 180
.croptop = 0
.cropbottom = 60
.imageaspectcorrect = .T.
.imageoptimizedpalette = .T.
.imageheight = 480
.imagewidth = 640
.imagebitdepth = 24
.lptport = 1
.newwndopt = .F.
.negative = .F.
.processfilter = 1
.savefilecompression = 0
.savefilename = strLocalPath + "image.bmp"
.savefiletype = "BMP"
.snapmode = 0
.tabstop = .F.
.termination = 0
.visible = .F.
.tint = 0
.brightness = 0
.contrast = 0
.sharpness = 0
.red = 0
.green = 0
.blue = 0
endwith

Thank you for any help you can give me

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top