Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

can I add .PDF to image type

Status
Not open for further replies.

smax59

IS-IT--Management
May 28, 2010
5
0
0
US
I need to add PDF images of parts (DWG saved as PDF) for our manufacturing company Any help would be greatful
 
I figured it out

use customizer to add button to panel. Link button to VB script
select variable to send to script
dim a
dim b
b = "(drive:\pdf folder\" & ML_ITEM_NO & ".pdf"

set fso = CreateObject("Scripting.FileSystemObject")

if fso.FileExists(b) then
set a = CreateObject("InternetExplorer.Application")
a.visible = true
with a
.navigate b

end with
else
MsgBox "Drawing does not exist for part number: " & ML_ITEM_NO &"!", 16
end if




 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top