home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Multimedia Jumpstart 1.1a / CD_ROM.BIN / develpmt / source / roadshow / global.txt < prev    next >
Text File  |  1993-10-14  |  417b  |  15 lines

  1. Global szTitle As String        'Path of the mvb file
  2. Global vwr As Integer           'Viewer handle
  3. Global hwndVwr As Integer       'Viewer hwnd
  4.  
  5. 'Variables for throwing away function return values
  6. Global x As Integer
  7. Global xl As Long
  8.  
  9. Sub JumpTopic (szTopic As String)
  10.     If VwrCommand(vwr, szTitle, "JumpID(qchPath, `" & szTopic & "')", cmdOptNone) = 0 Then
  11.         Error 32767
  12.     End If
  13. End Sub
  14.  
  15.