If your OCLC Passport print record command (F12 or some alternate key combination) is not printing the first few lines of the first screen (the save number, to be specific), do the following:
Go to F:\Community\VOYAGER\Cat Stuff\OCLC
Copy PRSMUTIL.MBK
Paste it to C:\OCLCAPPS\PASSPORT
Replace the existing file
NOTE: I also edited the PRSMUTIL!PrintRecord macro to print a maximum of 10 pages, in case you accidentally try to print a list or opening screen instead of a record. This is what I changed:
BEFORE:
' Get text to be printed
Do While bLoop% = TRUE
Row% = CS.GetLastRowUsed
CS.GetTextInRegion Temp$, 6, 1, Row%, Columns%, TRUE
AFTER: '6' TO '1'
' Get text to be printed
Do While bLoop% = TRUE
Row% = CS.GetLastRowUsed
CS.GetTextInRegion Temp$, 1, 1, Row%, Columns%, TRUE
BEFORE:
' Allow only 15 pages to print
if nPages < 15 then
AFTER:
' Allow only 10 pages to print
if nPages < 10 then