home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / nivb / nwtest.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1995-05-07  |  4.5 KB  |  189 lines

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