Gmail Calendar Documents Reader Web more »
Recently Visited Groups | Help | Sign in
Google Groups Home
VB Script Hyperlinks
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  6 messages - Collapse all  -  Translate all to Translated (View all originals)
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
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Steve  
View profile  
 More options Nov 13 2009, 2:55 am
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


    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Paul Randall  
View profile  
 More options Nov 13 2009, 4:21 am
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

"Steve" <St...@discussions.microsoft.com> wrote in message

news:5F5CE196-E05A-4BA9-AA09-8D91BC8027FD@microsoft.com...

> 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

Hi, Steve
You might do a google search for some words like the following:
download free html editor
Download and install, then run the editor of your choice and copy the links
from your post and paste them into the editor's graphic interface, then look
at the html generated in the editor's text interface.

Here is one link that might do the trick:
http://www.coffeecup.com/free-editor/

You might also google for free web sites that have tutorials on HTML, like
http://www.w3schools.com/, or maybe look at Microsoft's HTML and DHTML
Reference http://msdn.microsoft.com/en-us/library/ms533050(VS.85).aspx

-Paul Randall


    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
LikeToCode  
View profile  
 More options Nov 13 2009, 5:28 am
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>


    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Steve  
View profile  
 More options Nov 13 2009, 8:41 pm
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


    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
LikeToCode  
View profile  
 More options Nov 13 2009, 9:53 pm
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?


    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Steve  
View profile  
 More options Nov 13 2009, 11:05 pm
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


    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2010 Google