Results 1 to 4 of 4

Thread: output " "

  1. #1

    Thread Starter
    New Member
    Join Date
    Feb 2000
    Posts
    15

    Post

    Print #3, "<a href="http://216.61.43.234/mainctrldoc.html">Back </a>"
    this line gives me the error since I have 2 sets of " "
    what can I do to solve this problem if I don't have to use char(...)?if I have to use char(..),then what number is it for " ? thank you very much.

  2. #2
    Member
    Join Date
    Jan 1999
    Location
    New York
    Posts
    32

    Post

    I don't know what the keycode is for ", but if you are trying to make a web page, you don't need the " around links and stuff, but if you want, you can use '. that would work. you could have it be print #3, "<A HREF='site.htm'>". that would work.

  3. #3
    Member
    Join Date
    Jan 1999
    Location
    New York
    Posts
    32

    Post

    Ok, I just found out how to put the real quote in. It would be this:
    Print #3, "<A HREF=" & chr(34) & "site.htm" & chr(34) & ">"
    Try that. It should work.

  4. #4
    Hyperactive Member Al Smith's Avatar
    Join Date
    May 1999
    Location
    Marcellus, MI. USA
    Posts
    330

    Post chr(34) =

    Hi,
    Rats. greendey, you beat me to it.

    Print #3, "<a href=" & chr(34) & "http://216.61.43.234/mainctrldoc.html" & chr(34) & ">Back </a>"


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width