home *** CD-ROM | disk | FTP | other *** search
/ Programming Tool Box / SIMS_2.iso / bp_6_93 / winhelp / vbhilfe / hlpglobl.bas < prev   
Encoding:
BASIC Source File  |  1993-01-05  |  1.9 KB  |  35 lines

  1. ' Global-Datei fⁿr Programmbeispiel HLPDEMO0.MAK zum Artikel
  2. ' "Windows-Online-Hilfe fⁿr Visual-Basic-Anwendungen"
  3. ' fⁿr BASIC PROFESSIONELL (Beschreibung siehe Ausgabe 6/93).
  4. ' Redaktionskontakt: Tel. 0431/732916 Fax 0431/77796
  5. ' Autor: Harald Zoschke  Datum: 10.8.93
  6.  
  7. 'WinHelp-Deklarationen
  8.  
  9. Declare Function WinHelp Lib "User" (ByVal hWnd%, ByVal HelpFile$, ByVal HlpCommand%, Dat As Any) As Integer
  10. 'Declare Function WinHelpM Lib "User" Alias "WinHelp" (ByVal hWnd%, ByVal HelpFile$, ByVal HlpCommand%, ByVal Macro$) As Integer
  11.  
  12. '▄bergabe-Parameter WinHelp() in Windows 3.0 + 3.1
  13. Global Const HELP_CONTEXT = &H1      'Hilfethema anhand der Kontextnr. anzeigen
  14. Global Const HELP_QUIT = &H2         'Hilfe beenden
  15. Global Const HELP_INDEX = &H3        'Hilfe-Index anzeigen (Inhaltsⁿbersicht)
  16. Global Const HELP_HELPONHELP = &H4   'Hilfe zur Hilfebenutzung anzeigen
  17. Global Const HELP_SETINDEX = &H5     'Alternativer Index fⁿr Hilfedateien mit mehr als 1 Index
  18. Global Const HELP_KEY = &H101        'Hilfethema anhand des Schlⁿsselwortes anzeigen
  19. Global Const HELP_MULTIKEY = &H201   'Schlⁿsselwort in anderer Tabelle suchen und Hilfethema anzeigen
  20.  
  21.  
  22. '▄bergabe-Parameter WinHelp() neu in Windows 3.1
  23. Global Const HELP_CONTEXTPOPUP = &H8 'Hilfeseite in einem Popup-Fenster anzeigen
  24. Global Const HELP_FORCEFILE = &H9    'Sicherstellen, da▀ die korrekte Hilfedatei angezeigt wird
  25. Global Const HELP_COMMAND = &H102    'Hilfe-Makro ausfⁿhren
  26. Global Const HELP_PARTIALKEY = &H105 'In Schlⁿsselliste gefundenes Hilfethema anzeigen
  27. Global Const HELP_SETWINPOS = &H203  'Hilfefenster positionieren und anzeigen
  28.  
  29. 'Diese beiden stehen (mit neuen Namen) nochmals in der 3.1er ErgΣnzung...
  30. 'Global Const HELP_CONTENTS = &H3    'fⁿr 3.1 nochmals definiert, jedoch
  31. 'Global Const HELP_SETCONTENTS = &H5 'mit neuen Konstanten-Namen (?)
  32.  
  33. 'HlpFile$-Deklaration siehe "generell"-Abschnitt im Form
  34.  
  35.