Microsoft
Software
Hardware
Network
Question : Array Help
I have an array that gets populated from a datatable.
The problem I am facing, I need the array to have increments of 4.
If the datatable only has 2 records, I need to pad the array with 2 additional positions.
If the datatable only has 13 records, I need to pad the array with 3 additional etc. etc.
Any thoughts.
Code Snippet:
1:
arrToLabels(i) = "To:" + DtSet.Tables(0).Rows(i).Item(0) + "-" + DtSet.Tables(0).Rows(i).Item(1)
Open in New Window
Select All
Answer : Array Help
If DtSet.Tables(0).Rows / 4 = 0 Then
arrSize = DtSet.Tables(0).Rows
Else
arrSize = DtSet.Tables(0).Rows + (4 - (DtSet.Tables(0).Rows Mod 4))
End If
Random Solutions
Delayed write c:\Mft
Hide the max, min and close buttons on a MDI Form
Stupidly activated "Log on using dial-up connection' and cant log in because i dont even have a dial-up connection
Outlook not updating/refreshing inbox - have to press F9.
the client-side configuration does not match the proxy
Convert Sprite Sheets to Animations
Need Assistance Selecting Web Authoring Tool
Control Size of Form in ACCDE?
GEt SQL data from Excel VBA
Login to local account on Domain Computer