|
-
Jan 31st, 2006, 11:07 AM
#1
Thread Starter
Member
Starting non-Office Application
I want to be able to start a non-Office application via code in a macro.
Any pointers on hwo to do this?
Cheers
-
Jan 31st, 2006, 11:12 AM
#2
Re: Starting non-Office Application
Depends - What application is it?
Declan
Don't forget to mark your Thread as resolved.
Take a moment to rate posts that you think are helpful 
-
Jan 31st, 2006, 11:22 AM
#3
Thread Starter
Member
Re: Starting non-Office Application
It's not an 'off the shelf' package and it non-windows based.
I thinks it's on a UNIX platform???? and have been told it's on an AS400 mainframe.
Does this help?
-
Jan 31st, 2006, 11:26 AM
#4
Re: Starting non-Office Application
It helps in that it tells me I'm out of my depth here. Sorry
Declan
Don't forget to mark your Thread as resolved.
Take a moment to rate posts that you think are helpful 
-
Jan 31st, 2006, 11:35 AM
#5
Thread Starter
Member
Re: Starting non-Office Application
The start up file is an .edp file if it helps
-
Jan 31st, 2006, 12:53 PM
#6
Frenzied Member
Re: Starting non-Office Application
The Shell command is commonly used to start most non-office programs, but I think it has to be a Windows app.
It's been a few years, but I don't think the AS400 runs on Unix; I think IBM has it's own language for it. At any rate, Unix & AS400 were separate classes.
Tengo mas preguntas que contestas
-
Jan 31st, 2006, 01:32 PM
#7
Re: Starting non-Office Application
Here is an example of using the ShellExecute API to do a reliable shelling of most any app.
VB Code:
Option Explicit
Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, _
ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
Private Const SW_SHOWNORMAL As Long = 1
Private Const SW_SHOWMINIMIZED As Long = 2
Private Const SW_SHOWMAXIMIZED As Long = 3
Private Sub Command1_Click()
On Error GoTo MyError
Dim lRet As Long
lRet = ShellExecute(Me.hwnd, "Open", "C:\MyExe.edp", vbNullString, "C:\", SW_SHOWNORMAL)
If lRet <= 32 Then
MsgBox "Error Shelling"
End If
Exit Sub
MyError:
MsgBox Err.Number & " - " & Err.Description
End Sub
VB/Office Guru™ (AKA: Gangsta Yoda™ ®)
I dont answer coding questions via PM. Please post a thread in the appropriate forum. 
Microsoft MVP 2006-2011
Office Development FAQ (C#, VB.NET, VB 6, VBA)
Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
If a post has helped you then Please Rate it! 
• Reps & Rating Posts • VS.NET on Vista • Multiple .NET Framework Versions • Office Primary Interop Assemblies • VB/Office Guru™ Word SpellChecker™.NET • VB/Office Guru™ Word SpellChecker™ VB6 • VB.NET Attributes Ex. • Outlook Global Address List • API Viewer utility • .NET API Viewer Utility •
System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6 
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|