March 19th, 2009 10:32 AM
Don't use the Picture save method since VB6 cannot save as JPEG.
WIA has built in support for saving as jpeg. Convert to jpeg with code like this:
Dim Img 'As ImageFile
Set Img =...
February 14th, 2009 08:54 PM
You don't need a third party control. As long as you have an account on gmail you can use their smtp server. Try port 465 as this is a secured server and you will need to do SSL authentication.
...
February 13th, 2009 07:53 AM
Create a folder for your program in the User or Common Application Data folder. Vista does not allow writing to the Program Files. Files in that folder should be read only. Do all your...
February 4th, 2009 08:59 AM
To really find out what's happening... step through your program with F8. See what's happening in the Resize event of your Form.
January 30th, 2009 01:37 AM
You say "it just the system tray program exit menu item. btw, i am keep chcking for any objects not destroyed."
Do you mean you are exiting the program from a pop-up menu from the system tray? If...
January 29th, 2009 03:36 PM
Try moving the code to the Unload Event instead of from a command button.
January 28th, 2009 02:05 PM
Try This:
For i = Forms.Count - 1 To 0 Step -1
Unload Forms(i)
Next
Remove the End command
January 26th, 2009 08:05 PM
The first thing is you'll want to get a copy of the original image stored in the PicClip control. If you don't have a copy of the image you can create one. To create a copy of the image bring up...
January 20th, 2009 09:01 PM
Use the Common Dialog to get your file name. Once you have the path/filename use the ShellExecute API to open the file in Word.
January 14th, 2009 01:24 PM
Ryan:
It would be helpful to others if you would tell us how your problem was resolved. Thanks.
January 2nd, 2009 10:14 AM
It's no long CDONTS. It's CDO. See here:
http://msdn.microsoft.com/en-us/library/ms988614.aspx
December 31st, 2008 11:22 AM
That would be tricky at best. Each character takes up a full space even if sub or super scripted.
Since unicode is apparently important in your editor, you are better off using unicode fonts....
December 27th, 2008 09:13 PM
There are many commercial video capture cards out there. Capturing video is not trivial like bitblt.
Depending on what you're trying to accomplish, you could certainly pause a video display at...
December 8th, 2008 09:08 PM
Nor would the ampersand work with your code.
December 8th, 2008 12:51 PM
One of the ways to accomplish this is to put your image box inside a picture box container. Then through a timer event use the Image1.Move Left, Top syntax. The left would stay the same but the the...
December 8th, 2008 09:42 AM
LOL... you, of course, are correct dglienna. It should be an ampersand rather than the plus sign. However, the code still executes properly using the plus sign.
One other important thing to note...
December 6th, 2008 10:04 PM
I'm not clear on exactly what you are trying to accomplish. If you are trying to combine text strings and display in a text box and copy to the clipboard then this code will work:
Dim NewText...