I plan a trip and I think I will need a quick strap for my camera. I was considering buying one, but when I saw how a quick strap looks like I decided to make one.
What you need to make a quick strap are:
a tripod quick release plate
a key ring
a bag strap
The assembly is straightforward:
Insert the key ring into the thumb screw.
Hook the bag strap hook
into the key ring.
Here is what it looks like when a camera is attached:
Do you want to make an application that has OCR ability within vb6? Well, I did and I almost gave up because I could not find an OCR ActiveX. Then I found Tesseract.
Although it is not an ActiveX and seems only usable for Visual Basic 2008 or higher, but we can actually make use of its capability.
Download tesseract from here and install. Then insert this line in your VB code:
Shell "tesseract <image files> <output file>"
for example:
Shell "tesseract c:\cap.bmp c:\output", vbHide
Tesseract will convert the image ("cap.bmp") into text and save it into a TXT file ("output.txt"). Then, all you have to do is read the output file.