Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.57K
~1K People Reached
Favorite Forums
Favorite Tags
1 Posted Topic
Re: Use Imageman VB ActiveX component (that costs around $500.) add that to VB project reference. 'sample code Dim myimagecontrol As IMActX8.ImageControl Set myimagecontrol = New IMActX8.ImageControl myimagecontrol.Picture = Trim(C:\images\sample.tif) Call myimagecontrol.ScaleImage(500, 500) Picture1.Picture = myimagecontrol.VBPicture ' Picture1 is VB picturebox. this is how I am displaying tif images in VB |