CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Tom Moran

Search: Search took 0.06 seconds.

  1. Replies
    12
    Views
    7,826

    Re: Formatting text before sending to clipboard

    That's got to be it. Can't test Thunderbird... don't use it. It works fine both in Outlook and Outlook Express and Vista Mail.
  2. Replies
    12
    Views
    7,826

    Re: Formatting text before sending to clipboard

    Email can paste most rich text and preserve formatting.

    You are failing to set the clipboard get text to the Rich Text format. So, by default your are getting the ANSI text for the RTF code. To...
  3. Replies
    2
    Views
    15,200

    Re: Using WIA to scan in VB6

    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 =...
  4. Replies
    10
    Views
    11,283

    Re: Making a VB6 application send an email?

    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.
    ...
  5. Replies
    8
    Views
    2,677

    Re: Write file from VB6 at Vista OS

    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...
  6. Replies
    22
    Views
    1,873

    Re: Strange behaviour of form

    To really find out what's happening... step through your program with F8. See what's happening in the Resize event of your Form.
  7. Replies
    32
    Views
    3,041

    Re: Still my program is running :(

    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...
  8. Replies
    32
    Views
    3,041

    Re: Still my program is running :(

    Try moving the code to the Unload Event instead of from a command button.
  9. Re: Is the way i ending my program correct?

    Try This:

    For i = Forms.Count - 1 To 0 Step -1
    Unload Forms(i)
    Next

    Remove the End command
  10. Replies
    1
    Views
    763

    Re: Composite Images and PictureClips

    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...
  11. Replies
    4
    Views
    1,400

    Re: open a word document...

    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.
  12. Re: Selecting multiple folders in a visual basic 6 application

    Ryan:

    It would be helpful to others if you would tell us how your problem was resolved. Thanks.
  13. Replies
    1
    Views
    2,447

    Re: Email sending from VB 6.0 application

    It's no long CDONTS. It's CDO. See here:
    http://msdn.microsoft.com/en-us/library/ms988614.aspx
  14. Replies
    2
    Views
    1,297

    Re: combining diacritical marks

    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....
  15. Replies
    9
    Views
    2,723

    Re: bitblt problem

    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...
  16. Replies
    8
    Views
    1,112

    Re: copy and paste help

    Nor would the ampersand work with your code.
  17. Replies
    4
    Views
    3,275

    Re: how to move images in a imagebox

    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...
  18. Replies
    8
    Views
    1,112

    Re: copy and paste help

    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...
  19. Replies
    8
    Views
    1,112

    Re: copy and paste help

    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...
Results 1 to 19 of 19





Click Here to Expand Forum to Full Width

Featured