<meta http-equiv="Content-Language" content="en">

A

Alexander

Read and Set Meta Tag Properties
========================

How do you read and set the language meta-tag
<meta http-equiv="Content-Language" content="en">


Thanks
Alexander
 
A

Alexander

How do you read and set the following language meta-tag using Frontpage VBA
<meta http-equiv="Content-Language" content="en">


Thanks
Alexander
 
S

Stefan B Rusynko

Start w/ the MSDN FP VBA Object model links previously provided in all your other posts, then also use the F1 key in the VBE in FP




| How do you read and set the following language meta-tag using Frontpage VBA
| <meta http-equiv="Content-Language" content="en">
|
|
| Thanks
| Alexander
|
|
|
 
A

Alexander

Maybe I'm stupid, but could not find straight forward solution for metatags
in MSDN, Deja, and F1

MSDN Search Result: "Creating Custom Behaviors in FrontPage 2003" -> and
hours to read.

Have just a short hint were VBA editing possibilities for metatags are
described?

I just only need to edit the "content" propery of the language metatag
<meta http-equiv="Content-Language" content="en">

I need this for the spellchecker to work correct in Fp2000 in different
laguages

Thanks
Alexander

Stefan B Rusynko said:
Start w/ the MSDN FP VBA Object model links previously provided in all
your other posts, then also use the F1 key in the VBE in FP
 
S

Stefan B Rusynko

At MSDN Use the left side navigation to explore FP Object Models for VBA (once on a page provided to you as a link select the "sync
toc" to see the other related pages)

Look at identifying MetaTags from the MetaTags collection
http://msdn.microsoft.com/library/d...-us/off2000/html/fpobjmetatags.asp?frame=true
or identifying the HEAD section of a page from
http://msdn.microsoft.com/library/d...TML.asp?frame=true#fpidxprogramdhtmlscripting

Using the above you can then add a metatag to the collection or attach a metatag into the HEAD section
- but you should always check for existence of a tag before you add it

You aren't going to be able to work w/ FP VBA unless you spend the time to learn the Web and Page Object models and how to access
elements in both
- once you learn the objects and methods it is easier to search in the FP VBE help for VBA (not the FP Help) for the right
properties, etc




| Maybe I'm stupid, but could not find straight forward solution for metatags
| in MSDN, Deja, and F1
|
| MSDN Search Result: "Creating Custom Behaviors in FrontPage 2003" -> and
| hours to read.
|
| Have just a short hint were VBA editing possibilities for metatags are
| described?
|
| I just only need to edit the "content" propery of the language metatag
| <meta http-equiv="Content-Language" content="en">
|
| I need this for the spellchecker to work correct in Fp2000 in different
| laguages
|
| Thanks
| Alexander
|
| | > Start w/ the MSDN FP VBA Object model links previously provided in all
| your other posts, then also use the F1 key in the VBE in FP
| >
| > --
| >
| > _____________________________________________
| > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > "Warning - Using the F1 Key will not break anything!" (-;
| > To find the best Newsgroup for FrontPage support see:
| > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > _____________________________________________
| >
| >
| | > | How do you read and set the following language meta-tag using Frontpage
| VBA
| > | <meta http-equiv="Content-Language" content="en">
| > |
| > |
| > | Thanks
| > | Alexander
| > |
| > |
| > |
| >
| >
|
|
 
A

Alexander

Thanks a lot

Once you get the idea that metatag access could be supplied
in "Files.File.Metatags" things get easy.
You aren't going to be able to work w/ FP VBA
unless you spend the time to learn
Unfortunately learning is a quite slow process

MSDN:
I used msdn last time 15 years ago. It got very huge.
If you dont know the structure of the left side navigation, you are lost.
But if you learn the limitation of the MSDN Search function
you finaly get acceptable results (and sometimes, just by accident
the leftside Navigation takes a configuration that also helps you).
Sometimes synctoc helps, sometimes it spoils everything that you
have achieved in you navigation.
MSDN users have to spend a time learning MSDN.
If the learning process only would be quicker!

Thanks
Alexander


Stefan B Rusynko said:
At MSDN Use the left side navigation to explore FP Object Models for VBA
(once on a page provided to you as a link select the "sync
toc" to see the other related pages)

Look at identifying MetaTags from the MetaTags collection
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/off2000/htm
l/fpobjmetatags.asp?frame=true
or identifying the HEAD section of a page from
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/off2000/htm
l/fphowProgramDHTML.asp?frame=true#fpidxprogramdhtmlscripting

Using the above you can then add a metatag to the collection or attach a metatag into the HEAD section
- but you should always check for existence of a tag before you add it

You aren't going to be able to work w/ FP VBA unless you spend the time to
learn the Web and Page Object models and how to access
elements in both
- once you learn the objects and methods it is easier to search in the FP
VBE help for VBA (not the FP Help) for the right
properties, etc




| Maybe I'm stupid, but could not find straight forward solution for metatags
| in MSDN, Deja, and F1
|
| MSDN Search Result: "Creating Custom Behaviors in FrontPage 2003" -> and
| hours to read.
|
| Have just a short hint were VBA editing possibilities for metatags are
| described?
|
| I just only need to edit the "content" propery of the language metatag
| <meta http-equiv="Content-Language" content="en">
|
| I need this for the spellchecker to work correct in Fp2000 in different
| laguages
|
| Thanks
| Alexander
|
| | > Start w/ the MSDN FP VBA Object model links previously provided in all
| your other posts, then also use the F1 key in the VBE in FP
| >
| > --
| >
| > _____________________________________________
| > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > "Warning - Using the F1 Key will not break anything!" (-;
| > To find the best Newsgroup for FrontPage support see:
| > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > _____________________________________________
| >
| >
| | > | How do you read and set the following language meta-tag using Frontpage
| VBA
| > | <meta http-equiv="Content-Language" content="en">
| > |
| > |
| > | Thanks
| > | Alexander
| > |
| > |
| > |
| >
| >
|
|
 
V

\\~Virus Guard~/

I know I didn't post any in a long time but yes <meta
http-equiv="Content-Language" content="en"> does work.

/~DaN~\

Alexander said:
Thanks a lot

Once you get the idea that metatag access could be supplied
in "Files.File.Metatags" things get easy.
You aren't going to be able to work w/ FP VBA
unless you spend the time to learn
Unfortunately learning is a quite slow process

MSDN:
I used msdn last time 15 years ago. It got very huge.
If you dont know the structure of the left side navigation, you are lost.
But if you learn the limitation of the MSDN Search function
you finaly get acceptable results (and sometimes, just by accident
the leftside Navigation takes a configuration that also helps you).
Sometimes synctoc helps, sometimes it spoils everything that you
have achieved in you navigation.
MSDN users have to spend a time learning MSDN.
If the learning process only would be quicker!

Thanks
Alexander


Stefan B Rusynko said:
At MSDN Use the left side navigation to explore FP Object Models for VBA
(once on a page provided to you as a link select the "sync
toc" to see the other related pages)

Look at identifying MetaTags from the MetaTags collection
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/off2000/htm
l/fpobjmetatags.asp?frame=true
or identifying the HEAD section of a page from
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/off2000/htm
l/fphowProgramDHTML.asp?frame=true#fpidxprogramdhtmlscripting

Using the above you can then add a metatag to the collection or attach a metatag into the HEAD section
- but you should always check for existence of a tag before you add it

You aren't going to be able to work w/ FP VBA unless you spend the time
to
learn the Web and Page Object models and how to access
elements in both
- once you learn the objects and methods it is easier to search in the
FP
VBE help for VBA (not the FP Help) for the right
properties, etc




| Maybe I'm stupid, but could not find straight forward solution for metatags
| in MSDN, Deja, and F1
|
| MSDN Search Result: "Creating Custom Behaviors in FrontPage 2003" -> and
| hours to read.
|
| Have just a short hint were VBA editing possibilities for metatags are
| described?
|
| I just only need to edit the "content" propery of the language metatag
| <meta http-equiv="Content-Language" content="en">
|
| I need this for the spellchecker to work correct in Fp2000 in different
| laguages
|
| Thanks
| Alexander
|
| | > Start w/ the MSDN FP VBA Object model links previously provided in all
| your other posts, then also use the F1 key in the VBE in FP
| >
| > --
| >
| > _____________________________________________
| > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > "Warning - Using the F1 Key will not break anything!" (-;
| > To find the best Newsgroup for FrontPage support see:
| > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > _____________________________________________
| >
| >
| | > | How do you read and set the following language meta-tag using Frontpage
| VBA
| > | <meta http-equiv="Content-Language" content="en">
| > |
| > |
| > | Thanks
| > | Alexander
| > |
| > |
| > |
| >
| >
|
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top