home *** CD-ROM | disk | FTP | other *** search
/ PC Shareware 2000 January / PCShareware-1-00.iso / trials / Fc7 / ABC.Z / NETWORK.FRM (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1997-08-13  |  15.5 KB  |  480 lines

  1. VERSION 4.00
  2. Begin VB.Form NetworkDatabaseDemo 
  3.    Appearance      =   0  'Flat
  4.    BackColor       =   &H00C0C0C0&
  5.    BorderStyle     =   1  'Fixed Single
  6.    Caption         =   "Network Database Demo"
  7.    ClientHeight    =   1950
  8.    ClientLeft      =   1245
  9.    ClientTop       =   2190
  10.    ClientWidth     =   5265
  11.    ClipControls    =   0   'False
  12.    BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851} 
  13.       Name            =   "MS Sans Serif"
  14.       Size            =   8.25
  15.       Charset         =   0
  16.       Weight          =   700
  17.       Underline       =   0   'False
  18.       Italic          =   0   'False
  19.       Strikethrough   =   0   'False
  20.    EndProperty
  21.    ForeColor       =   &H80000008&
  22.    Height          =   2355
  23.    Icon            =   "NETWORK.frx":0000
  24.    Left            =   1185
  25.    LinkTopic       =   "Form1"
  26.    MaxButton       =   0   'False
  27.    ScaleHeight     =   1950
  28.    ScaleWidth      =   5265
  29.    Top             =   1845
  30.    Width           =   5385
  31.    Begin VB.CommandButton BrowseBtn 
  32.       Appearance      =   0  'Flat
  33.       BackColor       =   &H80000005&
  34.       Caption         =   "&Browse..."
  35.       Height          =   375
  36.       Left            =   3690
  37.       TabIndex        =   6
  38.       Top             =   795
  39.       Width           =   1335
  40.    End
  41.    Begin VB.PictureBox Picture1 
  42.       Appearance      =   0  'Flat
  43.       BackColor       =   &H00C0C0C0&
  44.       BorderStyle     =   0  'None
  45.       ForeColor       =   &H80000008&
  46.       Height          =   495
  47.       Left            =   4350
  48.       Picture         =   "NETWORK.frx":030A
  49.       ScaleHeight     =   495
  50.       ScaleWidth      =   495
  51.       TabIndex        =   4
  52.       Top             =   195
  53.       Width           =   495
  54.    End
  55.    Begin VB.Data Data1 
  56.       Appearance      =   0  'Flat
  57.       Caption         =   "Data1"
  58.       Connect         =   ""
  59.       DatabaseName    =   ""
  60.       Exclusive       =   0   'False
  61.       Height          =   270
  62.       Left            =   1440
  63.       Options         =   0
  64.       ReadOnly        =   0   'False
  65.       RecordsetType   =   1  'Dynaset
  66.       RecordSource    =   "Network"
  67.       Top             =   3600
  68.       Visible         =   0   'False
  69.       Width           =   1935
  70.    End
  71.    Begin VB.CommandButton cmdCancel 
  72.       Appearance      =   0  'Flat
  73.       BackColor       =   &H80000005&
  74.       Caption         =   "&Cancel"
  75.       Height          =   375
  76.       Left            =   2640
  77.       TabIndex        =   2
  78.       Top             =   1440
  79.       Width           =   1335
  80.    End
  81.    Begin VB.CommandButton cmdOK 
  82.       Appearance      =   0  'Flat
  83.       BackColor       =   &H80000005&
  84.       Caption         =   "&OK"
  85.       Default         =   -1  'True
  86.       Height          =   375
  87.       Left            =   1065
  88.       TabIndex        =   1
  89.       Top             =   1440
  90.       Width           =   1335
  91.    End
  92.    Begin VB.TextBox Text1 
  93.       Appearance      =   0  'Flat
  94.       Height          =   285
  95.       Left            =   105
  96.       TabIndex        =   0
  97.       Top             =   840
  98.       Width           =   3465
  99.    End
  100.    Begin MSComDlg.CommonDialog OpenDatabaseFile 
  101.       Left            =   120
  102.       Top             =   1440
  103.       _ExtentX        =   847
  104.       _ExtentY        =   847
  105.       _Version        =   327680
  106.    End
  107.    Begin AbcflowLib.ABC ABC1 
  108.       Left            =   4320
  109.       Top             =   1440
  110.       _Version        =   65536
  111.       _ExtentX        =   1085
  112.       _ExtentY        =   873
  113.       _StockProps     =   1
  114.    End
  115.    Begin VB.Label Label2 
  116.       Alignment       =   2  'Center
  117.       Appearance      =   0  'Flat
  118.       BackColor       =   &H00C0C0C0&
  119.       BackStyle       =   0  'Transparent
  120.       Caption         =   "Press ""Browse"" to choose another database."
  121.       ForeColor       =   &H80000008&
  122.       Height          =   495
  123.       Left            =   840
  124.       TabIndex        =   5
  125.       Top             =   120
  126.       Width           =   3015
  127.    End
  128.    Begin VB.Label Label1 
  129.       Appearance      =   0  'Flat
  130.       AutoSize        =   -1  'True
  131.       BackColor       =   &H00C0C0C0&
  132.       Caption         =   "Database File:"
  133.       ForeColor       =   &H80000008&
  134.       Height          =   195
  135.       Left            =   120
  136.       TabIndex        =   3
  137.       Top             =   600
  138.       Width           =   1245
  139.    End
  140.    Begin VB.Line Line1 
  141.       BorderColor     =   &H00FFFFFF&
  142.       X1              =   0
  143.       X2              =   5280
  144.       Y1              =   1320
  145.       Y2              =   1320
  146.    End
  147. Attribute VB_Name = "NetworkDatabaseDemo"
  148. Attribute VB_Creatable = False
  149. Attribute VB_Exposed = False
  150. Option Explicit
  151.     Dim ABC As Object
  152.     Dim NetSource As RECORD
  153.     Dim UserName As String
  154.     Dim DataBaseFile As String
  155.     Dim TestFileValid As String
  156.     Dim FlowVersion As Double
  157.     Const DATA_ERRCONTINUE = 1
  158.     Const DATA_ERRDISPLAY = 0
  159.     Const OFN_FILEMUSTEXIST = &H1000&
  160.     Const OFN_PATHMUSTEXIST = &H800&
  161. Private Sub ABC1_AppQuitNOTIFY()
  162.     Data1.Recordset.Close
  163.     End
  164. End Sub
  165. Private Sub ABC1_DoubleClickSUBCLASS(ByVal Object As Object, ByVal Chart As Object, Override As Boolean)
  166.     Dim Obj As Object
  167.     Set Obj = ABC1.Chart.Objects.ItemFromText(".mdb")
  168.     If Obj.Valid Then
  169.         ' Get the database from the chart
  170.         Data1.DatabaseName = Obj.Text
  171.         GetDatabaseInfo (Object.Text)
  172.     Else
  173.         
  174.     End If
  175.     Override = True
  176. End Sub
  177. Private Sub BrowseBtn_Click()
  178.     'In case of error
  179.     On Error Resume Next
  180.     'Set properties here
  181.     OpenDatabaseFile.CancelError = True
  182.     OpenDatabaseFile.DefaultExt = "mdb"
  183.     OpenDatabaseFile.Filter = "Database Files(*.mdb)|*.mdb"
  184.     OpenDatabaseFile.Flags = OFN_FILEMUSTEXIST And OFN_PATHMUSTEXIST
  185.     OpenDatabaseFile.Action = 1
  186.     'Close if cancelled
  187.     If Err = 32755 Then
  188.         Exit Sub
  189.     Else
  190.         DataBaseFile = OpenDatabaseFile.filename
  191.     End If
  192.      
  193.     Text1.Text = DataBaseFile
  194. End Sub
  195. Private Sub cmdCancel_Click()
  196.      Unload NetworkDatabaseDemo
  197.      End
  198. End Sub
  199. Private Sub cmdOK_Click()
  200.     Dim DataBaseFileOne As Integer
  201.     Dim DataBaseFileTwo As Integer
  202.     Err = 0
  203.     DataBaseFile = Text1.Text
  204.     DataBaseFileOne = InStr(DataBaseFile, "NETBASE1.MDB")
  205.     DataBaseFileTwo = InStr(DataBaseFile, "NETBASE2.MDB")
  206.     If Not DataBaseFileOne > 1 And DataBaseFileTwo = 0 Then
  207.     Err = 2
  208.     ElseIf Not DataBaseFileTwo > 1 And DataBaseFileOne = 0 Then
  209.     Err = 2
  210.     End If
  211.     If Err = 1 Then
  212.         cmdOK.Enabled = False
  213.         MsgBox "File does not exist!", 48
  214.         Text1.SetFocus
  215.     End If
  216.     If Err = 2 Then
  217.         cmdOK.Enabled = False
  218.         MsgBox "This is an Invalid Database File!", 48
  219.         Text1.SetFocus
  220.     End If
  221.     If Err = 0 Then
  222.         cmdOK.Enabled = False
  223.         NetworkDatabaseDemo.WindowState = 1 ' iconize form
  224.         NetworkDatabaseDemo.Refresh
  225.         'Build the chart
  226.         Call DrawNetChart(DataBaseFile)
  227.         Call ValidateFilename
  228.     End If
  229. End Sub
  230. Private Sub DrawNetChart(DataBaseFile As String)
  231.         
  232.     Dim Shape As Object
  233.     Dim Shape1 As Object
  234.     Dim TextTitle As Object
  235.     Dim recCount As Integer
  236.     Dim PageWidth As Integer
  237.     Dim ChartCancelled As Integer
  238.     Dim CurrentRec As String
  239.     Dim FieldInfo As String
  240.     Dim ProcessorType As String
  241.     Dim Chart As Object
  242.     Dim ABCObject As Object
  243.     Dim NewLine() As Object
  244.     Dim Obj As Object
  245.     Dim DataBaseText As Object
  246.     Dim Counter As Integer
  247.     Dim TotalCount As Integer
  248.     'Get the chart
  249.     Set Chart = ABC.New
  250.     Rem Set the Chart's internal type
  251.     Chart.Type = "NETWORK"
  252.     Chart.TypeUsesEXE = True
  253.     Set ABCObject = Chart.Objects
  254.     'Prepare for chart to draw
  255.     Chart.NoRepaint = True
  256.     Chart.MasterItems.HideAll
  257.     Chart.PageLayout.Orientation = 1
  258.     Chart.View = 1
  259.     ABC.ShapePaletteVisible = False
  260.     ' Set defaults so there are no shape numbers
  261.     Set Obj = Chart.DrawShape
  262.     Obj.Shape.NumberShowN = False
  263.     Chart.SetDefaults Obj
  264.     Obj.Clear_               'This object can be seen when selected'
  265.     'Set gauge
  266.     ABC.PercentGauge NetworkDatabaseDemo.Caption, "Building Diagram", "Please Wait..."
  267.     ChartCancelled = ABC.PercentGaugeCancelled
  268.         If ChartCancelled = True Then
  269.         Call EndAppDraw
  270.         End If
  271.     'Title page
  272.     If FlowVersion >= 7.1 Then
  273.         ABC.OpenPalette ("FlowCharter Palettes\Standard")
  274.     End If
  275.     Chart.CurrentShapePalette = "Standard"
  276.     Chart.CurrentShape = "Rounded Process"
  277.     Chart.DrawPositionX = 4.5
  278.     Chart.DrawPositionY = 0.5
  279.     Set Shape = Chart.DrawShape
  280.     Shape.Height = 0.5
  281.     Shape.Width = 5.5
  282.     Shape.Text = "Network Diagram"
  283.     Shape.Font.Size = 18
  284.     Shape.Font.Bold = True
  285.     Shape.Shape.BorderWidth = 3
  286.     Shape.Shape.BorderColor = ABC.RED
  287.     Shape.Shape.FillColor = ABC.GRAY
  288.     'give feedback here
  289.     'ABC.PercentGaugeValue = 10
  290.     'cancel chart?
  291.     ChartCancelled = ABC.PercentGaugeCancelled
  292.         If ChartCancelled Then
  293.         Call EndAppDraw
  294.         End If
  295.    'Get Network palette
  296.     If FlowVersion >= 7.1 Then
  297.         ABC.OpenPalette ("FlowCharter Palettes\Net - PC Workstations")
  298.     End If
  299.     Chart.CurrentShapePalette = "Net - PC Workstations"
  300.     Chart.CurrentShape = "Tower"
  301.     'Set shape spacing
  302.     Chart.DrawPositionX = 4.5
  303.     Chart.DrawPositionY = 1.5
  304.     Set Shape1 = Chart.DrawShape
  305.     Shape1.Height = 1.25
  306.     Shape1.Width = 1.25
  307.     Shape1.Text = "SERVER"
  308.     Shape1.Font.Bold = True
  309.     Shape1.Font.Size = 12
  310.     ChartCancelled = ABC.PercentGaugeCancelled
  311.         If ChartCancelled Then
  312.         Call EndAppDraw
  313.         End If
  314.     'Open the Database
  315.     Data1.DatabaseName = DataBaseFile
  316.     Data1.RecordSource = "Network"
  317.     Data1.Refresh
  318.     'Get the number of records
  319.     recCount = GetRecNum(Data1.Recordset)
  320.     Data1.Refresh
  321.     PageWidth = Chart.PageLayout.Width
  322.     If recCount <= 5 Then
  323.     Chart.DrawSpacingX = PageWidth / recCount
  324.     Chart.DrawPositionX = (PageWidth / 2) / recCount
  325.     Else
  326.     Chart.DrawSpacingX = 1.5
  327.     Chart.DrawPositionX = 1
  328.     End If
  329.     Chart.DrawPositionY = 3.5
  330.     Chart.DrawDirection = 1
  331.     Do While Not Data1.Recordset.EOF
  332.         CurrentRec = GetCurrRec(Data1.Recordset)
  333.         CopyMemory NetSource, ByVal CurrentRec, Len(NetSource)
  334.         FieldInfo = Trim(NetSource.User)
  335.         ProcessorType = Trim(NetSource.Computer)
  336.     'Draw Shapes and add Usernames
  337.         Chart.CurrentShape = ProcessorType
  338.         Set Shape = Chart.DrawShape
  339.         Shape.Height = 1.25
  340.         Shape.Width = 1.25
  341.         Shape.Text = FieldInfo
  342.         Shape.Font.Size = 12
  343.         Shape.Font.Color = ABC.BLUE
  344.         TotalCount = recCount
  345.         Counter = 100 / TotalCount
  346.     'Draw Lines from server to workstation
  347.         Chart.CurrentLineRouting = 3
  348.             ReDim NewLine(recCount) As Object
  349.         Set NewLine(recCount) = Chart.DrawLine(Shape1, Shape, 2, 0)
  350.         NewLine(recCount).Line_.StemWidth = 3
  351.         recCount = recCount - 1
  352.     'Increment gauge
  353.         If Counter > 0 Then
  354.         ABC.PercentGaugeValue = Int(100 - (Counter * recCount))
  355.         End If
  356.         
  357.      Data1.Recordset.MoveNext
  358.     Loop
  359.     'Give feedback here
  360.     'ABC.PercentGaugeValue = 90
  361.     ChartCancelled = ABC.PercentGaugeCancelled
  362.         If ChartCancelled Then
  363.         Call EndAppDraw
  364.         End If
  365.     'Give double-click instructions
  366.     Chart.DrawPositionX = 1.5
  367.     Chart.DrawPositionY = 5
  368.     Set TextTitle = Chart.DrawTextBlock(UCase("To find server information, Double-click on a shape."))
  369.     TextTitle.Font.Bold = True
  370.     TextTitle.Font.Size = 16
  371.     TextTitle.CenterX = PageWidth / 2
  372.     ' Write out database name
  373.     Chart.DrawPositionX = 1.5
  374.     Chart.DrawPositionY = 5.25
  375.     Set DataBaseText = Chart.DrawTextBlock(LCase(Text1))
  376.     DataBaseText.Font.Bold = False
  377.     DataBaseText.Font.Size = 12
  378.     DataBaseText.CenterX = PageWidth / 2
  379.     'Data1.Recordset.Close
  380.     Data1.Refresh
  381.     'Give feedback here
  382.     ABC.PercentGaugeValue = 99
  383.     ABC.HidePercentGauge
  384.     'Draw chart
  385.     Chart.NoRepaint = False
  386.     Chart.Repaint
  387. End Sub
  388. Private Sub EndAppDraw()
  389.         ABC.HidePercentGauge
  390.         End
  391. End Sub
  392. Private Sub Form_Load()
  393.    'Open ABC
  394.     Set ABC = CreateObject("ABCFlow.Application")
  395.    ' ABC.Maximize
  396.     ABC.Hourglass = True
  397.     ABC.Visible = True
  398.     FlowVersion = CDbl(ABC.Version)
  399.     'Register the Events
  400.     ABC.RegisterEvent ABC1, "Network", "DoubleClickSUBCLASS"
  401.     ABC.RegisterEvent ABC1, "Network", "AppQuitNOTIFY"
  402.     'Load both forms
  403.     Load ServerInfo
  404.     NetworkDatabaseDemo.Left = (Screen.Width - Width) \ 2
  405.     NetworkDatabaseDemo.Top = (Screen.Height - Height) \ 2
  406.     Text1.Text = UCase(App.Path & "\" & "netbase1.mdb")
  407.     NetworkDatabaseDemo.Show
  408. End Sub
  409. Private Sub GetDatabaseInfo(UserName As String)
  410.     Dim CurrentRec As String
  411.     Data1.RecordSource = "Network"
  412.     Data1.Refresh
  413.     'Find this username in the database
  414.         If UserName = Data1.Recordset.Fields("User").Value Then
  415.             CurrentRec = GetCurrRec(Data1.Recordset)
  416.             CopyMemory NetSource, ByVal CurrentRec, Len(NetSource)
  417.     'Display server information
  418.     ServerInfo.txtType.Text = Trim$(NetSource.Type)
  419.     ServerInfo.txtProcess = Trim$(NetSource.Computer)
  420.     ServerInfo.txtUserID = Trim$(NetSource.UserID)
  421.     ServerInfo.txtUserName = Trim$(NetSource.User)
  422.     ServerInfo.txtServer = Trim$(NetSource.Server)
  423.     ServerInfo.Show 1
  424.           
  425.         ElseIf UserName = "" Then
  426.                     MsgBox "This Station is Unassigned.", 64
  427.         ElseIf Not UserName = Data1.Recordset.Fields("User").Value Then
  428.             Data1.Recordset.MoveFirst
  429.             Do
  430.                 Data1.Recordset.MoveNext
  431.                     On Error GoTo Error_out
  432.             Loop Until Data1.Recordset.EOF = True Or UserName = Data1.Recordset.Fields("User").Value
  433.                 CurrentRec = GetCurrRec(Data1.Recordset)
  434.                 CopyMemory NetSource, ByVal CurrentRec, Len(NetSource)
  435.     'Display server information
  436.     ServerInfo.txtType.Text = Trim$(NetSource.Type)
  437.     ServerInfo.txtProcess = Trim$(NetSource.Computer)
  438.     ServerInfo.txtUserID = Trim$(NetSource.UserID)
  439.     ServerInfo.txtUserName = Trim$(NetSource.User)
  440.     ServerInfo.txtServer = Trim$(NetSource.Server)
  441.     ServerInfo.Show 1
  442.         
  443.         End If
  444. Error_out:
  445.           Select Case Err
  446.                 Case 3021
  447.             ServerInfo.Hide
  448.             MsgBox UCase("This is not a Workstation!") + Chr(13) + Chr(13) + "  Please choose a valid name."
  449.             'DATA_ERRDISPLAY = 0
  450.             'DATA_ERRCONTINUE = 1
  451.             Data1.Refresh
  452.             Data1.Recordset.MoveFirst
  453.             Resume CloseDB
  454.                 Case Else
  455.                 Data1.Refresh
  456.                 ServerInfo.Hide
  457.           End Select
  458. CloseDB:
  459.         Data1.Refresh
  460.         Data1.Recordset.MoveFirst
  461.         
  462. End Sub
  463. Private Sub Text1_Change()
  464.     Call ValidateFilename
  465. End Sub
  466. Private Sub Text1_GotFocus()
  467.     Text1.SelStart = 0
  468.     Text1.SelLength = Len(Text1.Text)
  469. End Sub
  470. Private Sub ValidateFilename()
  471.     Dim Attr As Single
  472.     On Error Resume Next
  473.     Attr = GetAttr(Text1)
  474.     If Err Then
  475.         cmdOK.Enabled = False
  476.     Else
  477.         cmdOK.Enabled = True
  478.     End If
  479. End Sub
  480.