VB Developer Getting Start
Assuming that you have already run the GOGO Exif Image Viewer ActiveX Control installation program. You can start Visual Basic and create a new project. You can select the New Project command and then select Standard EXE as your project type. You can then choose Project in the menu bar and select Components. You must include the file ExifImage ActiveX Control module into the new project.
 
You will see GOGO Exif Image Viewer ActiveX Control icon appear at the bottom of the toolbox.
Select Control
Click on the GOGO Exif Image Viewer ActiveX Control icon and draw it on the form. A rectangle should appear on the form, and the Visual Basic Project window form on the right should display GOGO Exif Image Viewer ActiveX Control's properties.
How to load image
Add Command Button in Form, add this line of code, which will load the image file.
Private Sub Command1_Click()
ExifImage.LoadImage("C:\abc.jpg")
End Sub
|