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

Search:

Type: Posts; User: DexterRose

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. How to populate TextFields of displayed 3rdParty webpage with data from my VB2012 pgm

    I am using vb 2012 express.

    When the user displays the Name/Address web page of a 3rd Party, I would like for the user to start my program and then Click a button in my program that will...
  2. Replies
    2
    Views
    1,878

    Re: Win7 Task Scheduler won't run VB6 pgm

    Finally solved the problem.

    Under the "Triggers" setting on the Task Scheduler on Win 7 computers, "Run only when user is logged on" must be selected.

    Hope this helps some!!

    Thanks for your...
  3. Replies
    2
    Views
    1,878

    Win7 Task Scheduler won't run VB6 pgm

    I have a VB5 and a VB6 program that runs fine in Win 7 computers if I click the exe.

    This program also will start OK from the Task Scheduler on Win XP computers.

    The Win 7 Task Scheduler...
  4. Replies
    17
    Views
    4,095

    Re: Can't embed image into HTML Email VB5

    I want to thank both of you for the massive help you have been!!

    Since I am using CDO in my VB5 program to send the Email, the link to the CDO code looks very promising.

    I have to finish...
  5. Replies
    17
    Views
    4,095

    Re: Can't embed image into HTML Email VB5

    The only difference I see is that I am using single quotes inside the src=. My line of code below.

    & "<img src='data:image/gif;base64,' alt='Image not available' />" _

    Could this be the...
  6. Replies
    17
    Views
    4,095

    Re: Can't embed image into HTML Email VB5

    Got it!! Thanks. I had tried that before but it looked so wierd and took up so much space I thought I was misunderstanding what he wanted me to do.

    Here is the exact code I am using:
    ...
  7. Replies
    17
    Views
    4,095

    Re: Can't embed image into HTML Email VB5

    Thanks again for the help.

    We are not communicating. I don't know what you mean with "insert_base64_here".

    I have the base64 text copied onto the clipboard. How do I insert this clipboard...
  8. Replies
    17
    Views
    4,095

    Re: Can't embed image into HTML Email VB5

    I'm obviously missing something. The web site gives me a textbox(on their website) full of 2000 or so characters of data. I can copy this data and paste it somewhere, but how can I insert it??
  9. Replies
    17
    Views
    4,095

    Re: Can't embed image into HTML Email VB5

    See if I did this correctly:

    In your link to the base64 converter site:

    I broused for the file named 644.gif located in my Program Files
    I then selected "Encode the Source data to a base64...
  10. Replies
    13
    Views
    1,780

    Re: Replace Carrage control in text in VB5

    Finally. Success!!

    I needed to search for "vbcr & vblf & vbcr & vblf". After I looked at the Hex code this should have been obvious - must be too tired.

    The truncating problem in the function...
  11. Replies
    17
    Views
    4,095

    Re: Can't embed image into HTML Email VB5

    See if I did this correctly:

    In your link to the base64 converter site:

    I broused for the file names 644.gif located in my Program Files
    I then selected "Encode the Source data to a base64...
  12. Replies
    13
    Views
    1,780

    Re: Replace Carrage control in text in VB5

    This is the line of code I am using to call your function:

    LineFirstPass = ReplaceMe(txtDlrStayInTouchLine1, vbCr & vbCr, "</p>")
  13. Replies
    13
    Views
    1,780

    Re: Replace Carrage control in text in VB5

    I had tried the vbcr & vbcr and chr(13) & chr(13) but it doesn't work.

    It's not passing the first line in the function:
    Startpos = InStr(SearchString, WhatToReplace)

    Startpos = 0...
  14. Replies
    17
    Views
    4,095

    Re: Can't embed image into HTML Email VB5

    Thanks for the response.

    It's not brush up for me, it's learn for the first time!! I went back to W3Schools and reread the info on HTML.

    Ok on the Alt.

    Back to to the same question. Can I...
  15. Replies
    13
    Views
    1,780

    Re: Replace Carrage control in text in VB5

    Thanks for the code DataMizer. I almost had it, but your function is much better than the code I was using.

    I still have a problem with the string I am searching. The string contains both...
  16. Replies
    13
    Views
    1,780

    Replace Carrage control in text in VB5

    VB5 VB5

    Using VB5, how can I replace a carrage control chr(13) with "</br>" in the middle of a text string?

    VB5 doesn't seem to have a Replace instruction.
  17. Replies
    3
    Views
    1,317

    Re: Unable to link Picture on Win7 computer

    Problem Solved. Got a copy of Access 97, created a new database with an object field, loaded the picture into the new database field, and put the picture into my Crystal Repart as a database field...
  18. Replies
    9
    Views
    1,983

    Re: How add OLE Pic field to Database VB5?

    I got a copy of Access 97, created a new database with an object field, updated the new database with the picture and read it into my Crystal Report just fine. Problem solved.

    Thanks to all of...
  19. Replies
    17
    Views
    4,095

    Can't embed image into HTML Email VB5

    Been trying Google for 2 days and can't get the code below to work.

    I would rather save an image from one of the "Free Images" sites available on the WEB into a folder on my computer to insert...
  20. Replies
    5
    Views
    2,399

    Re: Prob using "Style" in HTML Body of Email

    You guessed it! I'm new to HTML. Thanks for the tip!

    It's amazing what happens when you use the correct format.

    Thanks
  21. Replies
    5
    Views
    2,399

    Prob using "Style" in HTML Body of Email

    I have the following HTML code in a VB5 program sending an Email that "does not" work:


    .Subject = MsgSubject
    .HtmlBody = "<html><body style='background-color:FFFF99'>" _
    &...
  22. Replies
    1
    Views
    879

    Re: HTML problem with a variable

    Sorry for the false alarm. I took a break and figured it out for myself.

    Used :& "</br><p1>" & txtDlrAddr & "</p1>" _
  23. Replies
    1
    Views
    879

    HTML problem with a variable

    I am using VB5 and tring to send an Email in HTML using CDO so that I can control formatting and colors etc. I can do it in Text just fine( but without the formating and colors).

    I am new to...
  24. Replies
    12
    Views
    7,334

    Re: How check if file exists on Network cmptr

    The documentation for "Dir" says file string you search for must begin with either a letter or number!

    That's the reason "\\Server\File Folder\Myfile.txt" doesn't work for me using Dir and I...
  25. Replies
    12
    Views
    7,334

    Re: How check if file exists on Network cmptr

    I am using VB5.

    I don't understand your post????
Results 1 to 25 of 35
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured