home *** CD-ROM | disk | FTP | other *** search
/ PC Shareware 2000 January / PCShareware-1-00.iso / trials / Fc7 / ABC.Z / EXCELDAT.FRM (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1996-12-16  |  11.4 KB  |  356 lines

  1. VERSION 4.00
  2. Begin VB.Form ExcelSample 
  3.    Appearance      =   0  'Flat
  4.    BackColor       =   &H00C0C0C0&
  5.    BorderStyle     =   1  'Fixed Single
  6.    Caption         =   "Excel Data DEMO"
  7.    ClientHeight    =   4125
  8.    ClientLeft      =   3480
  9.    ClientTop       =   1800
  10.    ClientWidth     =   4815
  11.    BeginProperty Font 
  12.       name            =   "MS Sans Serif"
  13.       charset         =   0
  14.       weight          =   700
  15.       size            =   8.25
  16.       underline       =   0   'False
  17.       italic          =   0   'False
  18.       strikethrough   =   0   'False
  19.    EndProperty
  20.    ForeColor       =   &H80000008&
  21.    Height          =   4815
  22.    Icon            =   "EXCELDAT.frx":0000
  23.    Left            =   3420
  24.    LinkTopic       =   "Form1"
  25.    ScaleHeight     =   4125
  26.    ScaleWidth      =   4815
  27.    Top             =   1170
  28.    Width           =   4935
  29.    Begin VB.CommandButton ReadData 
  30.       Appearance      =   0  'Flat
  31.       BackColor       =   &H80000005&
  32.       Caption         =   "&Read Data"
  33.       Height          =   375
  34.       Left            =   3360
  35.       TabIndex        =   8
  36.       Top             =   3120
  37.       Width           =   1215
  38.    End
  39.    Begin VB.ListBox ExcelFields 
  40.       Appearance      =   0  'Flat
  41.       Height          =   1590
  42.       Left            =   360
  43.       MultiSelect     =   2  'Extended
  44.       TabIndex        =   3
  45.       TabStop         =   0   'False
  46.       Top             =   1560
  47.       Width           =   2655
  48.    End
  49.    Begin VB.CommandButton Browse 
  50.       Appearance      =   0  'Flat
  51.       BackColor       =   &H80000005&
  52.       Caption         =   "&Browse..."
  53.       Height          =   375
  54.       Left            =   3240
  55.       TabIndex        =   2
  56.       Top             =   600
  57.       Width           =   1215
  58.    End
  59.    Begin VB.CommandButton Quit 
  60.       Appearance      =   0  'Flat
  61.       BackColor       =   &H80000005&
  62.       Cancel          =   -1  'True
  63.       Caption         =   "&Quit"
  64.       Height          =   375
  65.       Left            =   3360
  66.       TabIndex        =   1
  67.       Top             =   1320
  68.       Width           =   1215
  69.    End
  70.    Begin VB.CommandButton MakeChart 
  71.       Appearance      =   0  'Flat
  72.       BackColor       =   &H80000005&
  73.       Caption         =   "Make &Chart"
  74.       Default         =   -1  'True
  75.       Enabled         =   0   'False
  76.       Height          =   375
  77.       Left            =   3360
  78.       TabIndex        =   0
  79.       Top             =   3600
  80.       Width           =   1215
  81.    End
  82.    Begin VB.Frame Frame1 
  83.       Appearance      =   0  'Flat
  84.       BackColor       =   &H00C0C0C0&
  85.       Caption         =   "Source Excel Data File"
  86.       ForeColor       =   &H80000008&
  87.       Height          =   975
  88.       Left            =   240
  89.       TabIndex        =   4
  90.       Top             =   120
  91.       Width           =   4335
  92.       Begin VB.TextBox DataFilename 
  93.          Appearance      =   0  'Flat
  94.          Height          =   300
  95.          Left            =   120
  96.          TabIndex        =   5
  97.          Text            =   "DataFilename"
  98.          Top             =   510
  99.          Width           =   2715
  100.       End
  101.    End
  102.    Begin VB.Frame Frame2 
  103.       Appearance      =   0  'Flat
  104.       BackColor       =   &H00C0C0C0&
  105.       Caption         =   "Fields"
  106.       ForeColor       =   &H80000008&
  107.       Height          =   2775
  108.       Left            =   240
  109.       TabIndex        =   6
  110.       Top             =   1200
  111.       Width           =   2895
  112.       Begin VB.Label HintText 
  113.          Appearance      =   0  'Flat
  114.          BackColor       =   &H00C0C0C0&
  115.          Caption         =   "To multi-select, click on items in the list while holding the CTRL key."
  116.          ForeColor       =   &H80000008&
  117.          Height          =   615
  118.          Left            =   120
  119.          TabIndex        =   7
  120.          Top             =   2040
  121.          Width           =   2655
  122.       End
  123.    End
  124.    Begin MSComDlg.CommonDialog CMDialog1 
  125.       Left            =   3720
  126.       Top             =   2160
  127.       _Version        =   65536
  128.       _ExtentX        =   847
  129.       _ExtentY        =   847
  130.       _StockProps     =   0
  131.    End
  132.    Begin VB.Menu Help 
  133.       Caption         =   "Help"
  134.       Begin VB.Menu About 
  135.          Caption         =   "About"
  136.       End
  137.    End
  138. Attribute VB_Name = "ExcelSample"
  139. Attribute VB_Creatable = False
  140. Attribute VB_Exposed = False
  141. Const xlR1C1 = -4150
  142. Dim TraderData(40, 15) As String
  143. Dim Record_Count As Integer
  144. Dim CreateFailed As Integer
  145. Dim Col As Integer, Row As Integer
  146. Dim ExcelApp As Object
  147. Private Sub About_Click()
  148.     Load AboutForm
  149.     AboutForm.Visible = True
  150.     ExcelSample.Enabled = False
  151. End Sub
  152. Private Sub Browse_Click()
  153.     On Error GoTo ErrHandler2        'CancelError is True
  154.                                     'Set filters
  155.     CMDialog1.Filter = "Excel Files (*.xls)|*.XLS|Text Files (*.txt)|*.txt|All Files (*.*)|*.*"
  156.     CMDialog1.FilterIndex = 1       'Set default filter
  157.     CMDialog1.Action = 1            'Display the Open dialog box
  158.     DataFilename = CMDialog1.filename
  159. ErrHandler2:                         'User pressed Cancel button
  160.     Exit Sub
  161. End Sub
  162. Private Sub CreateExcel()
  163.     On Error GoTo ExcelFail
  164.     CreateFailed = False
  165.     Set ExcelApp = CreateObject("Excel.Application")
  166.     Exit Sub
  167. ExcelFail:
  168.     Call HourGlassOff
  169.     MsgBox "You must have MS Excel installed to run this DEMO!", 16, "Critical Error"
  170.     CreateFailed = True
  171.     Resume Next
  172. End Sub
  173. Private Sub DataFilename_Change()
  174.     Call ValidateFilename
  175. End Sub
  176. Private Sub Form_Load()
  177.     DataFilename = App.Path + "\ABCSAMPL.XLS"
  178. End Sub
  179. Private Sub GetDataFile(DataFile As String)
  180.     Dim ExcelSheet As Object, xlWorkbooks As Object
  181.     Dim Cell As Object
  182.     Dim Rowz As Integer, Colz As Integer
  183.     ' Load up Excel - sets ExcelApp Object
  184.     Call CreateExcel
  185.     If CreateFailed Then Exit Sub
  186.     ExcelApp.Application.Visible = True
  187.     Set xlWorkbooks = ExcelApp.Workbooks
  188.     xlWorkbooks.Open DataFile
  189.     Set ExcelSheet = ExcelApp.ActiveSheet
  190.     ExcelSheet.Activate
  191.     ExcelApp.ReferenceStyle = xlR1C1
  192.     ExcelSample.Visible = False
  193.     ' Find the first row with data
  194.     ' (check only the first 256 rows)
  195.     For FirstRow = 1 To 256
  196.         Set Cell = ExcelSheet.Cells(FirstRow, 1)
  197.         Cell.Select
  198.         If Not Cell.Value = Empty Then Exit For
  199.     Next FirstRow
  200.     ' Find the last row with data
  201.     ' (check only the first 256 rows)
  202.     For Rows = FirstRow To FirstRow + 256
  203.         Set Cell = ExcelSheet.Cells(Rows, 1)
  204.         Cell.Select
  205.         If Cell.Value = Empty Then
  206.             Rows = Rows - FirstRow - 1
  207.             Exit For
  208.         End If
  209.     Next Rows
  210.     ' Now count the number of columns
  211.     ' (Again only up to 256)
  212.     For Col = 1 To 256
  213.         Set Cell = ExcelSheet.Cells(FirstRow, Col)
  214.         Cell.Select
  215.         If Cell.Value = Empty Then
  216.             Col = Col - 1
  217.             Exit For
  218.         End If
  219.     Next Col
  220.     DoEvents
  221.     Call HourGlassOn
  222.     For Rowz = 1 To Rows + 1
  223.         For Colz = 1 To Col
  224.             Set Cell = ExcelSheet.Cells(FirstRow + Rowz - 1, Colz)
  225.             Cell.Select
  226.             TraderData(Rowz, Colz) = Cell.Value
  227.         Next Colz
  228.     Next Rowz
  229.     Call HourGlassOff
  230.     Record_Count = Rows
  231.     For Colz = 1 To Col
  232.         ExcelFields.AddItem TraderData(1, Colz)
  233.     Next Colz
  234.     ExcelSheet.Application.DisplayAlerts = False
  235.     ExcelSheet.Application.ActiveWorkbook.Close
  236.     ExcelApp.Application.Quit
  237.     ExcelSample.Visible = True
  238.     MakeChart.Enabled = True
  239.     Call SelectAll(ExcelFields)
  240. End Sub
  241. Private Sub GetExcel()
  242.     On Error GoTo TryCreate
  243.     Call HourGlassOn
  244.     Set ExcelApp = GetObject(, "Excel.Application")
  245.     Call HourGlassOff
  246.     Exit Sub
  247. TryCreate:
  248.     Call CreateExcel
  249.     Resume Next
  250. End Sub
  251. Private Sub HourGlassOff()
  252.     Screen.MousePointer = 0
  253. End Sub
  254. Private Sub HourGlassOn()
  255.     Screen.MousePointer = 11
  256. End Sub
  257. Private Sub MakeChart_Click()
  258. Dim ABC As Object, Chart As Object, Field1 As Object, Field2 As Object
  259. Dim X As Integer, Y As Integer, Index_1 As Integer, ShapeCount As Integer
  260. Dim Line1 As Object, FieldNameIndex As Integer
  261. Static Fields() As Object
  262. Static Shape() As Object
  263.     Dim Units as Integer
  264.     ' Reset counters for the PercentGauge
  265.     TotalLoops = 3
  266.     CurrentLoop = 0
  267.     ReDim Fields(ExcelFields.ListCount)
  268.     'Start ABC
  269.     Call HourGlassOn
  270.     Set ABC = CreateObject("ABCFlow.Application")
  271.     ABC.Visible = True
  272.     ABC.FieldViewerVisible = False
  273.     Call HourGlassOff
  274.     'Make a new chart
  275.     Set Chart = ABC.New
  276.     Units = Chart.Units ' save current units to restore them later
  277.     Chart.Units = 0     ' set units to inches for all measurements below
  278.     'Set up some parameters for chart
  279.     Chart.DrawPositionX = 1
  280.     Chart.DrawSpacingX = 1.5
  281.     Chart.FieldNamesHidden = True
  282.     Chart.NoRepaint = True
  283.     Rem Use right angle lines
  284.     Chart.CurrentLineRouting = 1
  285.     ABC.Activate         ' Bring FlowCharter to the foreground
  286.     ABC.PercentGauge
  287.     'Get the shape count
  288.     ReDim Shape(Record_Count)
  289.     ShapeCount = Record_Count
  290.     For X = 1 To ShapeCount
  291.         If ABC.PercentGaugeCancelled Then Exit For
  292.         'Draw shapes
  293.         Set Shape(X) = Chart.DrawShape("FlowCharter Palettes\Standard\Operation")
  294.         Shape(X).Shape.FillColor = ABC.Blue
  295.         'Create another row of shapes
  296.         If (X Mod 5) = 0 Then
  297.             Chart.DrawPositionX = 1
  298.             Chart.DrawPositionY = Chart.DrawPositionY + 2
  299.         End If
  300.         ABC.PercentGaugeValue = ((X / ShapeCount) * (1 / TotalLoops) + CurrentLoop / TotalLoops) * 100
  301.     Next X
  302.     CurrentLoop = CurrentLoop + 1
  303.     'Draw Lines
  304.     For X = 2 To ShapeCount
  305.         If ABC.PercentGaugeCancelled Then Exit For
  306.         Set Line1 = Chart.DrawLine(Shape(X), Shape(X - 1))
  307.         Line1.Line_.DestArrowStyle = 0
  308.         ABC.PercentGaugeValue = ((X / ShapeCount) * (1 / TotalLoops) + CurrentLoop / TotalLoops) * 100
  309.     Next X
  310.         
  311.     'Position fields below shapes
  312.     Chart.FieldPlacement = 3
  313.     'Add Field Ttemplates to Chart
  314.     For X = 0 To ExcelFields.ListCount - 1
  315.         If ExcelFields.Selected(X) Then
  316.             Set Fields(X) = Chart.FieldTemplates.Add(ExcelFields.List(X))
  317.             'Format field as text
  318.             Fields(X).Format = 0
  319.         End If
  320.     Next X
  321.     CurrentLoop = CurrentLoop + 1
  322.     'Put Field data into shapes
  323.     For X = 1 To ShapeCount
  324.         If ABC.PercentGaugeCancelled Then Exit For
  325.         For Y = 1 To Col
  326.             Shape(X).FieldValues.Item(TraderData(1, Y)).Value = TraderData(X + 1, Y)
  327.         Next Y
  328.         ABC.PercentGaugeValue = ((X / ShapeCount) * (1 / TotalLoops) + CurrentLoop / TotalLoops) * 100
  329.     Next X
  330.     ABC.HidePercentGauge
  331.     Chart.Units = Units
  332.     Chart.NoRepaint = False
  333.     Chart.Repaint
  334. End Sub
  335. Private Sub Quit_Click()
  336.     Unload ExcelSample
  337. End Sub
  338. Private Sub ReadData_Click()
  339.     ExcelFields.Clear
  340.     GetDataFile (DataFilename) 'Open the selected file
  341. End Sub
  342. Private Sub SelectAll(ListBox As ListBox)
  343.     For it = 0 To ListBox.ListCount - 1
  344.         ListBox.Selected(it) = True
  345.     Next it
  346. End Sub
  347. Private Sub ValidateFilename()
  348.    On Error Resume Next
  349.    Attr = GetAttr(DataFilename)
  350.    If Err Then
  351.         ReadData.Enabled = False
  352.    Else
  353.         ReadData.Enabled = True
  354.    End If
  355. End Sub
  356.