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]
"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)
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]
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]
"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...
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