CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Nov 1999
    Posts
    15

    run exe or bat files

    how can i run from my project exe or bat files?
    thenxxx


  2. #2
    Join Date
    Oct 1999
    Posts
    63

    Re: run exe or bat files

    You can use ShellExecute API

    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




  3. #3
    Join Date
    Nov 1999
    Posts
    15

    Re: run exe or bat files

    pleas be more specific of what to do after that thenxxx


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

Featured