Results 1 to 4 of 4

Thread: ShellExecute HELP !@!@!@!@!@

  1. #1

    Thread Starter
    Member
    Join Date
    Dec 2005
    Posts
    57

    Resolved ShellExecute HELP !@!@!@!@!@

    i need to shell .exe file with ShellExecute,but i am stupid and i dont know how to do it
    if some1 can help me and gimme example will be great for me

  2. #2
    Fanatic Member paralinx's Avatar
    Join Date
    Jun 2005
    Location
    Michigan
    Posts
    987

    Re: ShellExecute HELP !@!@!@!@!@

    VB Code:
    1. Private Declare Function ShellEx Lib "shell32.dll" _ Alias "ShellExecuteA"
    2. (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal _ lpParameters As Any, ByVal lpDirectory As Any, ByVal nShowCmd As Long) As Long
    3.  
    4.  
    5. Private Sub Command1_Click()
    6.     Dim x
    7.     x = ShellEx(Form1.hwnd, "open", "path of file", "", "", 1)
    8. End Sub

  3. #3
    Lively Member
    Join Date
    Jan 2006
    Posts
    114

    Re: ShellExecute HELP !@!@!@!@!@

    or...
    VB Code:
    1. shell("path")

  4. #4
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: ShellExecute HELP !@!@!@!@!@

    VB Code:
    1. Option Explicit
    2.  
    3. Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, _
    4. ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
    5.  
    6. Private Const SW_SHOWNORMAL As Long = 1
    7. Private Const SW_SHOWMINIMIZED As Long = 2
    8. Private Const SW_SHOWMAXIMIZED As Long = 3
    9.  
    10. Private Sub Command1_Click()
    11.     On Error GoTo MyError
    12.     Dim lRet As Long
    13.     lRet = ShellExecute(Me.hwnd, "Open", "C:\MyApp.exe", vbNullstring, "C:\", SW_SHOWNORMAL)
    14.     If lRet <= 32 Then
    15.         MsgBox "Error Shelling"
    16.     End If
    17.     Exit Sub
    18. MyError:
    19.     MsgBox Err.Number & " - " & Err.Description
    20. 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 PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI 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
  •  



Click Here to Expand Forum to Full Width