[mso] Re: remove hyperlink

  • From: "Dian Chapman" <dian@xxxxxxxxxxxxx>
  • To: <mso@xxxxxxxxxxxxx>
  • Date: Tue, 5 Aug 2003 14:03:40 -0500

> What's the difference between VB and VBA?

VBA is a subset of VB, as is VB Script. However, VBA means Visual Basic for
Applications. This means that you need a HOST application to run your code,
such as Word, Excel, etc. VB is a program that compiles self-running EXEs.
VB also compiles it's code when you create it. VBA isn't compiled until the
first time you run it. So it's initial run is slower, since it needs to
compile into computer language and store in your memory. 

They're both object-oriented programming languages and very similar...using
many of the same codes. But VB is like the big brother and can do more.
Also...VBA is oriented to the object model of the application that runs it.
Meaning, if you write it against Word, you'll be dealing with the Word
object model. If in Excel, then you need to know the Excel object model,
etc. Whereas with VB, it has it's own objects.

And all of this is now being replaced, gradually, by VB/VBA.net. 


Dian Chapman
Technical Consultant
& Microsoft MVP

Free Word Tips & Tricks eBook: http://www.mousetrax.com/books.html
Free Tutorial site: http://www.mousetrax.com/techpage.html
Free Support Ezine: http://www.mousetrax.com/techtrax/
  


-----Original Message-----
From: mso-bounce@xxxxxxxxxxxxx [mailto:mso-bounce@xxxxxxxxxxxxx] On Behalf
Of Pam
Sent: Tuesday, August 05, 2003 1:26 PM
To: mso@xxxxxxxxxxxxx
Subject: [mso] Re: remove hyperlink

Hi Dave,

My VBA is not too swift.  
Thank you for your help!

Another question?...... What's the difference between VB and VBA?

Pam



>-----Original Message-----
>From: mso-bounce@xxxxxxxxxxxxx [mailto:mso-bounce@xxxxxxxxxxxxx]On
>Behalf Of David Good - ANSYS Europe
>Sent: Tuesday, August 05, 2003 12:57 PM
>To: 'mso@xxxxxxxxxxxxx'
>Subject: [mso] Re: remove hyperlink
>
>
>Pam,
>
>How's your VBA?
>
>The following code will create a macro which will remove the Hyperlinks 
>from a selection;
>
>Sub HyperLinks_Remove_Sel()
>    Dim rngSrc As Range
>    Dim lMax As Long, lCtr As Long
>    Set rngSrc = ActiveSheet.Range(ActiveWindow.Selection.Address)
>    lMax = rngSrc.Cells.Count
>    For lCtr = 1 To lMax
>            rngSrc.Cells(lCtr).Hyperlinks.Delete
>    Next lCtr
>End Sub
>
>HTH,
>
>Dave.
>
>-----Original Message-----
>From: Pam [mailto:ltf01@xxxxxxxxxx]
>Sent: 05 August 2003 18:52
>To: MicrosoftOffice
>Subject: [mso] remove hyperlink
>
>
>Hi,
>Does anyone know of a way to remove the hyperlink from multiple entries 
>in a column in Excel 2000?  I can see where to remove them one by one 
>but there are several thousand of them to do.
>
>Thanks,
>Pam
>
>*************************************************************
>You are receiving this mail because you subscribed to mso@xxxxxxxxxxxxx 
>or MicrosoftOffice@xxxxxxxxxxxxxxxx
>
>To send mail to the group, simply address it to mso@xxxxxxxxxxxxx
>
>To Unsubscribe from this group, send an email to 
>mso-request@xxxxxxxxxxxxx with the word "unsubscribe" (without the 
>quotes) in the subject line.
>
>Or, visit the group's homepage and use the dropdown menu.  This will 
>also allow you to change your email settings to digest or vacation (no
mail).
>//www.freelists.org/webpage/mso
>
>To be able to use the files section for sharing files with the group, 
>send a request to mso-moderators@xxxxxxxxxxxxx and you will be sent an 
>invitation with instructions.  Once you are a member of the files 
>group, you can go here to upload/download files: 
>http://www.smartgroups.com/vault/msofiles
>*************************************************************
>
>*************************************************************
>You are receiving this mail because you subscribed to mso@xxxxxxxxxxxxx 
>or MicrosoftOffice@xxxxxxxxxxxxxxxx
>
>To send mail to the group, simply address it to mso@xxxxxxxxxxxxx
>
>To Unsubscribe from this group, send an email to 
>mso-request@xxxxxxxxxxxxx with the word "unsubscribe" (without the
>quotes) in the subject line.
>
>Or, visit the group's homepage and use the dropdown menu.  This will 
>also allow you to change your email settings to digest or vacation (no 
>mail).
>//www.freelists.org/webpage/mso
>
>To be able to use the files section for sharing files with the group, 
>send a request to mso-moderators@xxxxxxxxxxxxx and you will be sent an 
>invitation with instructions.  Once you are a member of the files 
>group, you can go here to upload/download files:
>http://www.smartgroups.com/vault/msofiles
>*************************************************************
>
*************************************************************
You are receiving this mail because you subscribed to mso@xxxxxxxxxxxxx or
MicrosoftOffice@xxxxxxxxxxxxxxxx

To send mail to the group, simply address it to mso@xxxxxxxxxxxxx

To Unsubscribe from this group, send an email to mso-request@xxxxxxxxxxxxx
with the word "unsubscribe" (without the quotes) in the subject line.

Or, visit the group's homepage and use the dropdown menu.  This will also
allow you to change your email settings to digest or vacation (no mail).
//www.freelists.org/webpage/mso

To be able to use the files section for sharing files with the group, send a
request to mso-moderators@xxxxxxxxxxxxx and you will be sent an invitation
with instructions.  Once you are a member of the files group, you can go
here to upload/download files:
http://www.smartgroups.com/vault/msofiles
*************************************************************

*************************************************************
You are receiving this mail because you subscribed to mso@xxxxxxxxxxxxx or 
MicrosoftOffice@xxxxxxxxxxxxxxxx

To send mail to the group, simply address it to mso@xxxxxxxxxxxxx

To Unsubscribe from this group, send an email to 
mso-request@xxxxxxxxxxxxx with the word "unsubscribe" (without the quotes) in 
the subject line.

Or, visit the group's homepage and use the dropdown menu.  This will also allow 
you to change your email settings to digest or vacation (no mail).
//www.freelists.org/webpage/mso

To be able to use the files section for sharing files with the group, send a 
request to mso-moderators@xxxxxxxxxxxxx and you will be sent an invitation with 
instructions.  Once you are a member of the files group, you can go here to 
upload/download files:
http://www.smartgroups.com/vault/msofiles
*************************************************************

Other related posts: