The group you are posting to is a
Usenet group . Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
Newsgroups: microsoft.public.scripting.vbscript
From:
Steve <St... @discussions.microsoft.com>
Date: Thu, 12 Nov 2009 18:55:02 -0800
Local: Fri, Nov 13 2009 2:55 am
Subject: VB Script Hyperlinks
How do I display a list of hyplinks, that the user can click on, on a Web
Page using VB Script?
eg:
www.hp.com www.ibm.com
Thanks, Steve
You must
Sign in before you can post messages.
You do not have the permission required to post.
Newsgroups: microsoft.public.scripting.vbscript
From:
"Paul Randall" <paulr... @cableone.net>
Date: Thu, 12 Nov 2009 21:21:48 -0700
Local: Fri, Nov 13 2009 4:21 am
Subject: Re: VB Script Hyperlinks
You must
Sign in before you can post messages.
You do not have the permission required to post.
Newsgroups: microsoft.public.scripting.vbscript
From:
LikeToCode <LikeToC... @discussions.microsoft.com>
Date: Thu, 12 Nov 2009 21:28:01 -0800
Local: Fri, Nov 13 2009 5:28 am
Subject: RE: VB Script Hyperlinks
Here ya go. It is simple and very versatile.
<Code> Dim objExplorer Set objExplorer = CreateObject("InternetExplorer.Application") With objExplorer .Navigate "About:" .ToolBar = False .StatusBar = False .Width = 400 .Height = 400 .Left = 400 .Top= 200 .Visible = 1 .Document.WriteLN("<html><body bgColor=White> <Font size=5><center>") .Document.WriteLN("<p>Your Heading<p>") .Document.WriteLN("<a href=http://www.google.com target=_blank>Google</a href><br />")'the <br /> is the "return" operator .Document.WriteLN("<a href=http://www.msn.com target=_blank>MSN</a href>") .Document.WriteLN("</font></center></body></html>") Do While .Busy Sleep(1) Loop End With </Code>
"Steve" wrote:
> How do I display a list of hyplinks, that the user can click on, on a Web
> Page using VB Script?
> eg:
> www.hp.com > www.ibm.com
> Thanks, Steve
You must
Sign in before you can post messages.
You do not have the permission required to post.
Newsgroups: microsoft.public.scripting.vbscript
From:
Steve <St... @discussions.microsoft.com>
Date: Fri, 13 Nov 2009 12:41:04 -0800
Local: Fri, Nov 13 2009 8:41 pm
Subject: RE: VB Script Hyperlinks
Hi LikeToCode,
Great thanks for that. I want to embed the code into the html code into a form called "Search" and display in a text box called "Out" (just so it dosent overwite what already on the page). I tried just adding the following line but it came up with an error object dosent support this method?
Document.Search.Out.WriteLN("<p>Your Heading<p>")
This is the relavent html code: <FORM ID="Search" NAME="Search"> <textarea rows="2" name="Out" cols="20"></textarea></P>
Regards, Steve
"LikeToCode" wrote:
> Here ya go. It is simple and very versatile.
> <Code> > Dim objExplorer > Set objExplorer = CreateObject("InternetExplorer.Application") > With objExplorer > .Navigate "About:" > .ToolBar = False > .StatusBar = False > .Width = 400 > .Height = 400 > .Left = 400 > .Top= 200 > .Visible = 1 > .Document.WriteLN("<html><body bgColor=White> <Font size=5><center>") > .Document.WriteLN("<p>Your Heading<p>") > .Document.WriteLN("<a href=http://www.google.com target=_blank>Google</a > href><br />")'the <br /> is the "return" operator > .Document.WriteLN("<a href=http://www.msn.com target=_blank>MSN</a href>") > .Document.WriteLN("</font></center></body></html>") > Do While .Busy > Sleep(1) > Loop > End With > </Code>
> "Steve" wrote:
> > How do I display a list of hyplinks, that the user can click on, on a Web > > Page using VB Script?
> > eg:
> > www.hp.com > > www.ibm.com
> > Thanks, Steve
You must
Sign in before you can post messages.
You do not have the permission required to post.
Newsgroups: microsoft.public.scripting.vbscript
From:
LikeToCode <LikeToC... @discussions.microsoft.com>
Date: Fri, 13 Nov 2009 13:53:01 -0800
Local: Fri, Nov 13 2009 9:53 pm
Subject: RE: VB Script Hyperlinks
Hi Steve,
Please excuse me for being a little dense today! So you have an html doc
that has at textbox for search and a textbox for results (aka OUT)? What are
you trying to make happen, a user will type text to be searched in the
document and the results will be displayed in the "out" textbox?
"Steve" wrote:
> Hi LikeToCode,
> Great thanks for that. > I want to embed the code into the html code into a form called "Search" and > display in a text box called "Out" (just so it dosent overwite what already > on the page). I tried just adding the following line but it came up with an > error object dosent support this method?
> Document.Search.Out.WriteLN("<p>Your Heading<p>")
> This is the relavent html code: > <FORM ID="Search" NAME="Search"> > <textarea rows="2" name="Out" cols="20"></textarea></P>
> Regards, Steve
> "LikeToCode" wrote:
> > Here ya go. It is simple and very versatile.
> > <Code> > > Dim objExplorer > > Set objExplorer = CreateObject("InternetExplorer.Application") > > With objExplorer > > .Navigate "About:" > > .ToolBar = False > > .StatusBar = False > > .Width = 400 > > .Height = 400 > > .Left = 400 > > .Top= 200 > > .Visible = 1 > > .Document.WriteLN("<html><body bgColor=White> <Font size=5><center>") > > .Document.WriteLN("<p>Your Heading<p>") > > .Document.WriteLN("<a href=http://www.google.com target=_blank>Google</a > > href><br />")'the <br /> is the "return" operator > > .Document.WriteLN("<a href=http://www.msn.com target=_blank>MSN</a href>") > > .Document.WriteLN("</font></center></body></html>") > > Do While .Busy > > Sleep(1) > > Loop > > End With > > </Code>
> > "Steve" wrote:
> > > How do I display a list of hyplinks, that the user can click on, on a Web > > > Page using VB Script?
> > > eg:
> > > www.hp.com > > > www.ibm.com
> > > Thanks, Steve
You must
Sign in before you can post messages.
You do not have the permission required to post.
Newsgroups: microsoft.public.scripting.vbscript
From:
Steve <St... @discussions.microsoft.com>
Date: Fri, 13 Nov 2009 15:05:01 -0800
Local: Fri, Nov 13 2009 11:05 pm
Subject: RE: VB Script Hyperlinks
Hi LikeToCode,
Yes that exactly right they put in a search word and it displays hyperlinks to web site/s for them to click on.
Regards, Steve
"LikeToCode" wrote:
> Hi Steve,
> Please excuse me for being a little dense today! So you have an html doc
> that has at textbox for search and a textbox for results (aka OUT)? What are
> you trying to make happen, a user will type text to be searched in the
> document and the results will be displayed in the "out" textbox?
> "Steve" wrote:
> > Hi LikeToCode,
> > Great thanks for that. > > I want to embed the code into the html code into a form called "Search" and > > display in a text box called "Out" (just so it dosent overwite what already > > on the page). I tried just adding the following line but it came up with an > > error object dosent support this method?
> > Document.Search.Out.WriteLN("<p>Your Heading<p>")
> > This is the relavent html code: > > <FORM ID="Search" NAME="Search"> > > <textarea rows="2" name="Out" cols="20"></textarea></P>
> > Regards, Steve
> > "LikeToCode" wrote:
> > > Here ya go. It is simple and very versatile.
> > > <Code> > > > Dim objExplorer > > > Set objExplorer = CreateObject("InternetExplorer.Application") > > > With objExplorer > > > .Navigate "About:" > > > .ToolBar = False > > > .StatusBar = False > > > .Width = 400 > > > .Height = 400 > > > .Left = 400 > > > .Top= 200 > > > .Visible = 1 > > > .Document.WriteLN("<html><body bgColor=White> <Font size=5><center>") > > > .Document.WriteLN("<p>Your Heading<p>") > > > .Document.WriteLN("<a href=http://www.google.com target=_blank>Google</a > > > href><br />")'the <br /> is the "return" operator > > > .Document.WriteLN("<a href=http://www.msn.com target=_blank>MSN</a href>") > > > .Document.WriteLN("</font></center></body></html>") > > > Do While .Busy > > > Sleep(1) > > > Loop > > > End With > > > </Code>
> > > "Steve" wrote:
> > > > How do I display a list of hyplinks, that the user can click on, on a Web > > > > Page using VB Script?
> > > > eg:
> > > > www.hp.com > > > > www.ibm.com
> > > > Thanks, Steve
You must
Sign in before you can post messages.
You do not have the permission required to post.