' This VB-Script opens a project in PCAN-Explorer
'-----------------------------------------------------------------------------
' Copyright (c) 2016 PEAK-System Technik GmbH.  All rights reserved.


Dim app
Set app = CreateObject("PCANExplorer6.Application")

' Open the project
app.Documents.Open "$(MyDocsDir)\MyProject\MyProject.peproj"

' Show the application window
app.MainWindow.IsVisible = True
