|
-
Apr 13th, 2004, 03:54 PM
#1
Thread Starter
New Member
array question
Does anyone have an example on adding a column in an array with say, 3 columns. My array is 14 rows with 3 columns and I cannot get it to work. Here is my code. The column I want to add is the 2nd column, or #1 since I'm using 0 to 2.
thanks!
Private Sub mnuReportsHighIncomeReport_Click()
Dim curRowTotal As Currency
Dim intRowIndex As Integer
Dim curIncomeTotal As Currency
For intRowIndex = 0 To 13
curIncomeTotal = curIncomeTotal + mintDataArray(intRowIndex, 1)
Next intRowIndex
Print mintDataArray(mintCurrentRow, 1)
End Sub
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|