home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / VISUAL_B / CODIGO_1 / NIVB_SRC / NWTEST.FRM (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1993-06-02  |  4.4 KB  |  185 lines

  1. VERSION 2.00
  2. Begin Form Main 
  3.    Caption         =   "NetWare API Test"
  4.    Height          =   2700
  5.    Left            =   2295
  6.    LinkMode        =   1  'Source
  7.    LinkTopic       =   "Form1"
  8.    ScaleHeight     =   2010
  9.    ScaleWidth      =   6810
  10.    Top             =   1395
  11.    Width           =   6930
  12.    Begin Label Label1 
  13.       Caption         =   "This application tests several NetWare APIs, using the NetWare Interface for Visual Basic."
  14.       Height          =   492
  15.       Left            =   1440
  16.       TabIndex        =   0
  17.       Top             =   120
  18.       Width           =   4092
  19.    End
  20.    Begin Menu ExitMenu 
  21.       Caption         =   "E&xit!"
  22.    End
  23.    Begin Menu TestMenu 
  24.       Caption         =   "&Test"
  25.       Begin Menu VersionItem 
  26.          Caption         =   "DLL &Versions"
  27.       End
  28.       Begin Menu AcctItem 
  29.          Caption         =   "&Accounting"
  30.       End
  31.       Begin Menu AFPItem 
  32.          Caption         =   "AFP"
  33.       End
  34.       Begin Menu BindItem 
  35.          Caption         =   "&Bindery"
  36.       End
  37.       Begin Menu ConnItem 
  38.          Caption         =   "&Connection"
  39.       End
  40.       Begin Menu DiagItem 
  41.          Caption         =   "&Diagnostics"
  42.       End
  43.       Begin Menu DirDirItem 
  44.          Caption         =   "Directory (Directory Info)"
  45.       End
  46.       Begin Menu DirDriveInfo 
  47.          Caption         =   "Directory (Drive Info)"
  48.       End
  49.       Begin Menu DirVolItem 
  50.          Caption         =   "Directory (Volume Info)"
  51.       End
  52.       Begin Menu FileItem 
  53.          Caption         =   "&File"
  54.       End
  55.       Begin Menu ServerItem 
  56.          Caption         =   "File Server Env"
  57.       End
  58.       Begin Menu Server2xItem 
  59.          Caption         =   "File Server Env v2.x"
  60.       End
  61.       Begin Menu MiscItem 
  62.          Caption         =   "Miscellaneous"
  63.       End
  64.       Begin Menu MsgItem 
  65.          Caption         =   "&Message"
  66.       End
  67.       Begin Menu NameSpItem 
  68.          Caption         =   "&Name Space"
  69.       End
  70.       Begin Menu PrintItem 
  71.          Caption         =   "&Print"
  72.       End
  73.       Begin Menu PServItem 
  74.          Caption         =   "Print Server"
  75.       End
  76.       Begin Menu QueueItem 
  77.          Caption         =   "&Queue"
  78.       End
  79.       Begin Menu SAPItem 
  80.          Caption         =   "&SAP"
  81.       End
  82.       Begin Menu SyncItem 
  83.          Caption         =   "Synchronization"
  84.       End
  85.       Begin Menu TTSItem 
  86.          Caption         =   "&TTS"
  87.       End
  88.       Begin Menu WrkstnItem 
  89.          Caption         =   "&Workstation Env"
  90.       End
  91.    End
  92.    Begin Menu HelpMenu 
  93.       Caption         =   "&Help"
  94.       Begin Menu IndexItem 
  95.          Caption         =   "&There Is No Help"
  96.       End
  97.       Begin Menu AboutItem 
  98.          Caption         =   "&About..."
  99.       End
  100.    End
  101. Sub AboutItem_Click ()
  102.     AboutForm.Show 1
  103. End Sub
  104. Sub AcctItem_Click ()
  105.     AcctForm.Show
  106. End Sub
  107. Sub AFPItem_Click ()
  108.     AFPForm.Show
  109. End Sub
  110. Sub BindItem_Click ()
  111.     Main.MousePointer = 11
  112.     BindForm.Show
  113. End Sub
  114. Sub ConnItem_Click ()
  115.     ConnForm.Show
  116. End Sub
  117. Sub DiagItem_Click ()
  118.     DiagForm.Show
  119. End Sub
  120. Sub DirDirItem_Click ()
  121.     SelectDirForm.Show
  122. End Sub
  123. Sub DirDriveInfo_Click ()
  124.     DirDriveForm.Show
  125. End Sub
  126. Sub DirVolItem_Click ()
  127.     DirVolForm.Show
  128. End Sub
  129. Sub ExitMenu_Click ()
  130.     End
  131. End Sub
  132. Sub FileItem_Click ()
  133.     currentForm = FILE_FORM
  134.     SelectFileForm.Show
  135. End Sub
  136. Sub Form_Load ()
  137.     originalPrefConnID% = GetPreferredConnectionID()
  138. End Sub
  139. Sub IndexItem_Click ()
  140.     NoHelpForm.Show 1
  141. End Sub
  142. Sub MiscItem_Click ()
  143.     MiscForm.Show
  144. End Sub
  145. Sub MsgItem_Click ()
  146.     MessForm.Show
  147. End Sub
  148. Sub NameSpItem_Click ()
  149.     NameSpaceForm.Show
  150. End Sub
  151. Sub PrintItem_Click ()
  152.     PrntForm.Show
  153. End Sub
  154. Sub PrtQueItem_Click ()
  155. End Sub
  156. Sub PServItem_Click ()
  157.     PrintServerForm.Show
  158. End Sub
  159. Sub QueueItem_Click ()
  160.     QueueForm.Show
  161. End Sub
  162. Sub SAPItem_Click ()
  163.     SAPForm.Show
  164. End Sub
  165. Sub Server2xItem_Click ()
  166.     FSE2xForm.Show
  167. End Sub
  168. Sub ServerItem_Click ()
  169.     FSEForm.Show
  170. End Sub
  171. Sub SyncItem_Click ()
  172.     SyncForm.Show
  173. End Sub
  174. Sub TTSItem_Click ()
  175.     TTSForm.Show
  176. End Sub
  177. Sub VersionItem_Click ()
  178.     Main.MousePointer = 11
  179.     DLLVersionForm.Show
  180.     Main.MousePointer = 0
  181. End Sub
  182. Sub WrkstnItem_Click ()
  183.     WSEForm.Show
  184. End Sub
  185.