FP2000: How to Remove the Generator Meta Tag by Using VBA

ID: Q241730


The information in this article applies to:
  • Microsoft FrontPage 2000


SUMMARY

The sample Visual Basic for Applications code in this article removes the Generator meta tag from all pages in the active web.

For more information about using the sample code in this article, click the article number below to view the article in the Microsoft Knowledge Base:

Q212536 OFF2000: How to Run Sample Code from Knowledge Base Articles


MORE INFORMATION

Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact a Microsoft Certified Solution Provider or the Microsoft fee-based consulting line at (800) 936-5200. For more information about Microsoft Certified Solution Providers, please see the following page on the World Wide Web:

http://www.microsoft.com/mcsp/
For more information about the support options available from Microsoft, please see the following page on the World Wide Web:

http://www.microsoft.com/support/supportnet/overview/overview.asp


To use this code, use the copy and paste operation to copy the code into the Visual Basic Editor in FrontPage, and run the myProcedure macro.

Sub myProcedure()
       
   'Set up a variable to hold the result of a message box
   Dim myMsgBoxResults As VbMsgBoxResult
       
   'Check to see if a web is open.
   If ActiveWebWindow.Web Is Nothing Then

       'If no web is open, display a message box.
       MsgBox "Please open a web before running this macro.", _
         vbOKOnly + vbExclamation

       '. . . and end the macro.
       Exit Sub

   End If
       
   '////////////////////////////////////////////////////////////////// 
   'In order for us to update the HTML in our files, there must be no
   'pages open.  To check for this, we check the Count property of
   'the PageWindows collection.  The PageWindows collection's Count
   'property is equal to the number of files that are currently open.
   '////////////////////////////////////////////////////////////////// 

   'Get the count of the PageWindows collection
   If ActiveWeb.ActiveWebWindow.PageWindows.Count <> 0 Then

       'Assign the result of a message box to the variable
       myMsgBoxResults = _
         MsgBox("Please close all files before running this macro.", _
           vbOKOnly + vbExclamation)

       'If the user clicks OK in our message box, exit the macro.
       'This variable will equal vbOK as soon as the user clicks
       'the OK button in the message box.
       If myMsgBoxResults = vbOK Then Exit Sub

   End If

   'Set up a variable for the WebFolder we're passing to the
   'RemoveMetaTag procedure
   Dim myTempFolder As WebFolder
       
   'Set the myWebFolder variable to equal the rootfolder of
   'the active web
   Set myTempFolder = ActiveWeb.RootFolder
       
   'Now call the RemoveMetaTag procedure and pass myWebFolder to it.
   RemoveMetaTag myTempFolder
       
   'Display a dialog saying we're done.
   myMsgBoxResults = MsgBox _
     ("All Generator meta tags removed.", vbOKOnly + vbInformation)
       
End Sub

Sub RemoveMetaTag(myWebFolder As WebFolder)
       
   'Set up all variables
   Dim myFiles As WebFiles
   Dim myFile As WebFile
   Dim myFolders As WebFolders
       
   'Set myFiles equal to the active web's Files collection
   Set myFiles = myWebFolder.Files

   'Set myFolders equal to the active web's Folders collection
   Set myFolders = myWebFolder.Folders
          
   'This For loop loops through each file in the root folder
   For Each myFile In myFiles

       'Check to see if the file is actually an ASP or HTML file.
       If UCase(myFile.Extension) = "HTM" Or UCase(myFile.Extension) = "HTML" Or UCase(myFile.Extension) = "ASP" Then
        
           'Open the file
           myFile.Open
        
           'Set up a variable for the opened PageWindow
           Dim myPage As PageWindow
           Set myPage = ActivePageWindow

           'Make sure we're in Normal view
           myPage.ViewMode = fpPageViewNormal
            
           'Remove the meta tag
           ActiveDocument.all.tags("meta").Item("GENERATOR").outerHTML = ""
            
           'Save and close the page.
           myPage.save
           myPage.Close
            
       End If
            
   Next myFile
       
   'Now we have to recursively call the RemoveMetaTag procedure so
   'that we can loop through all folders in the web.
   Dim mySubFolder As WebFolder
       
   For Each mySubFolder In myWebFolder.Folders
    
       'Only call RemoveMetaTag if the current subfolder is not a subweb
       If mySubFolder.IsWeb = False Then RemoveMetaTag mySubFolder
        
   Next mySubFolder       

End Sub 

Additional query words: fp2000 fp2k VBA VBE VB

Keywords :
Version : WINDOWS:
Platform : WINDOWS
Issue type :


Last Reviewed: October 6, 1999
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.