Results 1 to 12 of 12

Thread: A simple request to those who post source...

Threaded View

  1. #1

    Thread Starter
    Member filburt1's Avatar
    Join Date
    Aug 1999
    Posts
    6,935

    A simple request to those who post source...

    As you know, the API calls can get unrulingly long:

    VB Code:
    1. Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" ... ' wow this is a long call

    So if it is really long, can you do this instead to avoid horizontal scrolling?
    VB Code:
    1. Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" _
    2.         (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, _
    3.         ByVal lpParameters As String, ByVal lpDirectory As String, _
    4.         ByVal nShowCmd As Long) As Long
    Last edited by filburt1; Oct 7th, 2001 at 08:26 PM.

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