Hello,
In order to use VISA to control driver your camara (in any development environment, including LabVIEW) you'll need to indicate to windows that VISA is the driver for that device; this is done with inf files. More specifically, you would use the VISA Driver Development Wizard to generate this (and potentially, although very rarely, modify it to add functionality). If you have NI-VISA installed, the wizard can be launched using Start -> Programs -> National Instruments -> VISA -> VISA Driver Development Wizard. In any event, this still does not trivialize the task because you will still need to know how to communicate with the camara; there are two possibilities for using VISA:
1. (Best Case) Your camara is a USBTMC compatible device:
In this case, you will be able to use "high-level" VISA Write and Read functions to communicate with your camara, using whatever "message-based" API it provides (which should be in the user manual or available from the manufacturer, such as a set of string commands like Zoom, Capture, etc. where you would literally write strings using the VISA Write function, and read back data using VISA Read). You can read more about this at:
http://digital.ni.com/worldwide/bwcontent.nsf/web/all/63A0C78EF6083ACF86256E92004DC0DF
2. (Worst Case) Your camara is not USBTMC compatible:
In this case, you would theoretically have to use USB Raw communication, which would amount to actually writing binary data to your instrument. This will be almost certainly impossible for you to do, unless you have extremely intimate contact with the developer of the firmware for the camara. That is, you'll have to know exactly when and in what format to send every bit of data to the instrument. It is very unlikely that the manufacturer will be willing to give information on this level of detail away to consumers, however, you may inquire with them and I suppose you never know for sure!
I would say the intermediate case given your preference to control the camara through LabVIEW would be to somehow use the driver provided by the manufacturer, and perhaps somehow interface LabVIEW to the application your manufacturer provides. You may find more information about doing this on the discussion forums or developer zone, but if you decide to go this route, look first in the LabVIEW posts since it would reduce to a strictly LabVIEW programming problem.
Best Regards and good luck if you need to contact the manufacturer!
Feel free to repost if you have additional questions!
Thank you,
JLS