hyperlink to open an email browser.

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • abcd

    hyperlink to open an email browser.

    How to make the make the data given in hyperlink to open the email browser,
    instead of the internet browser? Thanks.

    -abcd



  • Steve Jorgensen

    #2
    Re: hyperlink to open an email browser.

    The URL needs to start with mail://

    On Sun, 25 Jan 2004 11:13:50 +1000, "abcd" <arasuk@yahoo.c om> wrote:
    [color=blue]
    >How to make the make the data given in hyperlink to open the email browser,
    >instead of the internet browser? Thanks.
    >
    >-abcd
    >
    >[/color]

    Comment

    • Lyle Fairfield

      #3
      Re: hyperlink to open an email browser.

      "abcd" <arasuk@yahoo.c om> wrote in news:40131813$1 @news.jcu.edu.a u:
      [color=blue]
      > How to make the make the data given in hyperlink to open the email browser,
      > instead of the internet browser? Thanks.
      >
      > -abcd[/color]

      ....
      MailTo Protocol: Opens your electronic mail program to send a message to the
      specified Internet e-mail address. A URL that uses the MailTo protocol has a
      different format: (mailto:usernam e@domain)


      --
      Lyle
      (for e-mail refer to http://ffdba.com/contacts.htm)

      Comment

      • Steve Jorgensen

        #4
        Re: hyperlink to open an email browser.

        Oops. Like Lyle said, that's mailto://, not mail://

        On Sun, 25 Jan 2004 03:35:11 GMT, Steve Jorgensen <nospam@nospam. nospam>
        wrote:
        [color=blue]
        >The URL needs to start with mail://
        >
        >On Sun, 25 Jan 2004 11:13:50 +1000, "abcd" <arasuk@yahoo.c om> wrote:
        >[color=green]
        >>How to make the make the data given in hyperlink to open the email browser,
        >>instead of the internet browser? Thanks.
        >>
        >>-abcd
        >>
        >>[/color][/color]

        Comment

        • abcd

          #5
          Re: hyperlink to open an email browser.

          Thanks it works. But I have another problem. I used the field property as
          hyperlink and have a field with lots of records I need to change with a
          prefix mailto:
          Is there any simple procedure to covert all of my data? Thanks again.

          -abcd

          "Lyle Fairfield" <MissingAddress @Invalid.Com> wrote in message
          news:Xns947AE8C A798A3FFDBA@130 .133.1.4...[color=blue]
          > "abcd" <arasuk@yahoo.c om> wrote in news:40131813$1 @news.jcu.edu.a u:
          >[color=green]
          > > How to make the make the data given in hyperlink to open the email[/color][/color]
          browser,[color=blue][color=green]
          > > instead of the internet browser? Thanks.
          > >
          > > -abcd[/color]
          >
          > ...
          > MailTo Protocol: Opens your electronic mail program to send a message to[/color]
          the[color=blue]
          > specified Internet e-mail address. A URL that uses the MailTo protocol has[/color]
          a[color=blue]
          > different format: (mailto:usernam e@domain)
          >
          >
          > --
          > Lyle
          > (for e-mail refer to http://ffdba.com/contacts.htm)[/color]


          Comment

          • Pieter Linden

            #6
            Re: hyperlink to open an email browser.

            "abcd" <arasuk@yahoo.c om> wrote in message news:<4015b76a$ 1@news.jcu.edu. au>...[color=blue]
            > Thanks it works. But I have another problem. I used the field property as
            > hyperlink and have a field with lots of records I need to change with a
            > prefix mailto:
            > Is there any simple procedure to covert all of my data? Thanks again.
            >
            > -abcd[/color]

            how about an update query?

            update MyTable
            Set myfield = "mailto:" & myfield;

            or something along those lines...

            but make a backup copy of your table before doing this... I wouldn't
            want to be wrong and have no back door...

            Comment

            • abcd

              #7
              Re: hyperlink to open an email browser.

              Through update query "mailto:"&[email] converts all the emails with a prefix
              mailto:
              However, clicking the field continues to open the web browser, instead of
              email programme. Any further suggestions please? Thanks.

              -arasu

              "Pieter Linden" <pietlinden@hot mail.com> wrote in message
              news:bf31e41b.0 401262329.3d8a4 160@posting.goo gle.com...[color=blue]
              > "abcd" <arasuk@yahoo.c om> wrote in message[/color]
              news:<4015b76a$ 1@news.jcu.edu. au>...[color=blue][color=green]
              > > Thanks it works. But I have another problem. I used the field property[/color][/color]
              as[color=blue][color=green]
              > > hyperlink and have a field with lots of records I need to change with a
              > > prefix mailto:
              > > Is there any simple procedure to covert all of my data? Thanks again.
              > >
              > > -abcd[/color]
              >
              > how about an update query?
              >
              > update MyTable
              > Set myfield = "mailto:" & myfield;
              >
              > or something along those lines...
              >
              > but make a backup copy of your table before doing this... I wouldn't
              > want to be wrong and have no back door...[/color]


              Comment

              Working...