home *** CD-ROM | disk | FTP | other *** search
/ Programming Tool Box / SIMS_2.iso / vb_code1 / apix / apix.txt < prev    next >
Text File  |  1992-04-27  |  2KB  |  65 lines

  1. ------------------------------------------------------------
  2.  
  3. APIX version 1.0
  4.  
  5. Author - Jeff Simms  CIS 72200,3173  
  6.  
  7. April 27, 1992
  8.  
  9. ------------------------------------------------------------
  10. The Apix Programmers Utility gives you instant access to the 
  11.  
  12. API Declares - Constants - Types
  13. ------------------------------------------------------------
  14.  
  15. File list for APIX:
  16.  
  17. Program Files:    APIXGLOB.BAS - Nothing there now.
  18.         APIXCLIC.FRM - Holds Program Icon 
  19.         APIXMAIN.FRM - Main Program Form.
  20.         APIX.MAK      -The make file.    
  21.             
  22. Text Files:    APIABRV.TXT  - Abbreviated API declares.
  23.         APICONST.TXT -API & VB Constant list.
  24.         APITYPE.TXT  - API Types list.
  25.         
  26.  
  27. Program installation:
  28.  
  29.     The program code looks for the above text files in the "C:\VB" directory. Wherever you decide to place the files just make sure it's reflected in the ClearList Subroutine.
  30.  
  31. Program How-To:
  32.  
  33.     1) To load main form click on program icon. 
  34.     2)To add items to the selected list you double-click. You double-click to remove also.
  35.      3) Use the "ACT" Buttons to switch between lists:
  36.     
  37.         A - The API Calls List
  38.         C - The API Constants List
  39.         T - The API Types List
  40.  
  41. The last button "Q" unloads the main form. To end the program you click on the program icon with the right button. You can use the keyboard to move quickly in a list.
  42.  
  43. Program Notes:
  44.  
  45.     Program was coded on a monochrome display so color to suit before making executable.
  46.     
  47.     To change constants to "global" you can change the code in the SelectFrom_DblClick sub to read 'ClipboardList.AddItem "Global Const" + SelectFrom.Text'
  48.  
  49.     You can add or remove items from the APICONST.TXT with out much trouble. 
  50.  
  51.     To add items to the API Types list that are not in the "Type - End Type" format you can add them manually. DefInt A-Z was added this way.
  52.  
  53.     "Const WM_USER = 1024" is added to the ClipboardList the first time you make a selection from API Constants. 
  54.  
  55. DON'T DELETE YOUR WINAPI.TXT JUST YET.
  56.  
  57. If you get a "Bad DLL Calling Convention" refer to your copy of the WINAPI.TXT to make sure there isn't a missing ByVal (not caused by APIX) and that the variables are the correct type.
  58.  
  59.     The Code is not commented out. I used descriptive sub and variable names that should help you follow the program if you're interested.
  60.  
  61.     This program is provided free to all users of Visual Basic, courtesy of Jeff Simms  72200,3173. If you have any problems please let me know.
  62.  
  63.  
  64.  
  65.