home *** CD-ROM | disk | FTP | other *** search
- ' Global-Datei fⁿr Programmbeispiel HLPDEMO0.MAK zum Artikel
- ' "Windows-Online-Hilfe fⁿr Visual-Basic-Anwendungen"
- ' fⁿr BASIC PROFESSIONELL (Beschreibung siehe Ausgabe 6/93).
- ' Redaktionskontakt: Tel. 0431/732916 Fax 0431/77796
- ' Autor: Harald Zoschke Datum: 10.8.93
-
- 'WinHelp-Deklarationen
-
- Declare Function WinHelp Lib "User" (ByVal hWnd%, ByVal HelpFile$, ByVal HlpCommand%, Dat As Any) As Integer
- 'Declare Function WinHelpM Lib "User" Alias "WinHelp" (ByVal hWnd%, ByVal HelpFile$, ByVal HlpCommand%, ByVal Macro$) As Integer
-
- '▄bergabe-Parameter WinHelp() in Windows 3.0 + 3.1
- Global Const HELP_CONTEXT = &H1 'Hilfethema anhand der Kontextnr. anzeigen
- Global Const HELP_QUIT = &H2 'Hilfe beenden
- Global Const HELP_INDEX = &H3 'Hilfe-Index anzeigen (Inhaltsⁿbersicht)
- Global Const HELP_HELPONHELP = &H4 'Hilfe zur Hilfebenutzung anzeigen
- Global Const HELP_SETINDEX = &H5 'Alternativer Index fⁿr Hilfedateien mit mehr als 1 Index
- Global Const HELP_KEY = &H101 'Hilfethema anhand des Schlⁿsselwortes anzeigen
- Global Const HELP_MULTIKEY = &H201 'Schlⁿsselwort in anderer Tabelle suchen und Hilfethema anzeigen
-
-
- '▄bergabe-Parameter WinHelp() neu in Windows 3.1
- Global Const HELP_CONTEXTPOPUP = &H8 'Hilfeseite in einem Popup-Fenster anzeigen
- Global Const HELP_FORCEFILE = &H9 'Sicherstellen, da▀ die korrekte Hilfedatei angezeigt wird
- Global Const HELP_COMMAND = &H102 'Hilfe-Makro ausfⁿhren
- Global Const HELP_PARTIALKEY = &H105 'In Schlⁿsselliste gefundenes Hilfethema anzeigen
- Global Const HELP_SETWINPOS = &H203 'Hilfefenster positionieren und anzeigen
-
- 'Diese beiden stehen (mit neuen Namen) nochmals in der 3.1er ErgΣnzung...
- 'Global Const HELP_CONTENTS = &H3 'fⁿr 3.1 nochmals definiert, jedoch
- 'Global Const HELP_SETCONTENTS = &H5 'mit neuen Konstanten-Namen (?)
-
- 'HlpFile$-Deklaration siehe "generell"-Abschnitt im Form
-
-