KB no longer maintained - MapViewer is a Legacy Product. Legacy Products are still supported, but no longer receive new features or updates. Many of MapViewer's features have been moved to Surfer. Please contact support@goldensoftware.com with any questions. |
This article contains a sample script for printing multiple documents to filenames that are stored in an input text file.
To run this script:
- Copy the script below, or click here to download the BAS file: InputFiles.Txt
- Download the attached InputFiles.Txt file and put it in the C:\Program Files\Golden Software\MapViewer 8\Samples directory.
- In a Windows Explorer window, navigate to C:\Program Files\Golden Software\MapViewer 8\Scripter.
- Double click on Scripter.exe to launch Scripter.
- Press Ctrl+A to select all of the existing lines then press Delete.
- If you copied this script, press Ctrl+V to paste it into Scripter. If you downloaded it, click File | Open, select the BAS file from your downloads directory, and click Open.
- Click Script | Run to run the script.
*********
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' ' Print.BAS ' ' This sample demonstrates how to print multiple documents with their ' filenames stored in an input file. ' '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' Sub Main 'Creates an instance of the MapViewer Application object 'and assigns it to the variable named "MapViewerApp" Set MapViewerApp = CreateObject("MapViewer.Application") 'Makes the application main window visible MapViewerApp.Visible = True 'Assigns the location of the samples folder to the variable "InPath" InPath$ = MapViewerApp.ModuleFolder + "samples\" 'Open an input file that contains a filepath on each line, 'and assign it to the file handle as #1 Open InPath$ + "Scripts\InputFiles.txt" For Input As #1 'Read a line Line Input #1,wks$ While wks$ <> "EOF" 'Open a map document, and assigns it to the variable named "doc" Set doc = MapViewerApp.Documents.Open(InPath$ + wks$) doc.PrintOut() doc.Close(mvSaveChangesNo) 'Read the next line Line Input #1,wks$ Wend 'Close file handle Close #1 End Sub
Updated February 14, 2018
Comments
0 comments
Please sign in to leave a comment.