home *** CD-ROM | disk | FTP | other *** search
/ Programming Tool Box / SIMS_2.iso / vb_code1 / nivb_src / nwtest.frm < prev    next >
Text File  |  1993-06-02  |  4KB  |  213 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. End
  102. Sub AboutItem_Click ()
  103.     AboutForm.Show 1
  104. End Sub
  105.  
  106. Sub AcctItem_Click ()
  107.     AcctForm.Show
  108. End Sub
  109.  
  110. Sub AFPItem_Click ()
  111.     AFPForm.Show
  112. End Sub
  113.  
  114. Sub BindItem_Click ()
  115.     Main.MousePointer = 11
  116.     BindForm.Show
  117. End Sub
  118.  
  119. Sub ConnItem_Click ()
  120.     ConnForm.Show
  121. End Sub
  122.  
  123. Sub DiagItem_Click ()
  124.     DiagForm.Show
  125. End Sub
  126.  
  127. Sub DirDirItem_Click ()
  128.     SelectDirForm.Show
  129. End Sub
  130.  
  131. Sub DirDriveInfo_Click ()
  132.     DirDriveForm.Show
  133. End Sub
  134.  
  135. Sub DirVolItem_Click ()
  136.     DirVolForm.Show
  137. End Sub
  138.  
  139. Sub ExitMenu_Click ()
  140.     End
  141. End Sub
  142.  
  143. Sub FileItem_Click ()
  144.     currentForm = FILE_FORM
  145.     SelectFileForm.Show
  146. End Sub
  147.  
  148. Sub Form_Load ()
  149.     originalPrefConnID% = GetPreferredConnectionID()
  150. End Sub
  151.  
  152. Sub IndexItem_Click ()
  153.     NoHelpForm.Show 1
  154. End Sub
  155.  
  156. Sub MiscItem_Click ()
  157.     MiscForm.Show
  158. End Sub
  159.  
  160. Sub MsgItem_Click ()
  161.     MessForm.Show
  162. End Sub
  163.  
  164. Sub NameSpItem_Click ()
  165.     NameSpaceForm.Show
  166. End Sub
  167.  
  168. Sub PrintItem_Click ()
  169.     PrntForm.Show
  170. End Sub
  171.  
  172. Sub PrtQueItem_Click ()
  173. End Sub
  174.  
  175. Sub PServItem_Click ()
  176.     PrintServerForm.Show
  177. End Sub
  178.  
  179. Sub QueueItem_Click ()
  180.     QueueForm.Show
  181. End Sub
  182.  
  183. Sub SAPItem_Click ()
  184.     SAPForm.Show
  185. End Sub
  186.  
  187. Sub Server2xItem_Click ()
  188.     FSE2xForm.Show
  189. End Sub
  190.  
  191. Sub ServerItem_Click ()
  192.     FSEForm.Show
  193. End Sub
  194.  
  195. Sub SyncItem_Click ()
  196.     SyncForm.Show
  197. End Sub
  198.  
  199. Sub TTSItem_Click ()
  200.     TTSForm.Show
  201. End Sub
  202.  
  203. Sub VersionItem_Click ()
  204.     Main.MousePointer = 11
  205.     DLLVersionForm.Show
  206.     Main.MousePointer = 0
  207. End Sub
  208.  
  209. Sub WrkstnItem_Click ()
  210.     WSEForm.Show
  211. End Sub
  212.  
  213.