Advertisement
Advertisement
| 08.06.2008 at 02:44PM PDT, ID: 23627514 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: |
Sub WriteCollection()
Dim MySheet As Worksheet, SheetName As String
Dim MyRange As Range, MyObject
Dim ARow As Long
Dim MyColl As New Collection
Set MyColl = Nothing
Dim I As Integer, J As Integer
Dim Inst As New Class1 ' Create a new instance of Class1
'On Class Modul Class1 is declared: Public InstanceName
Set MyRange = ActiveSheet.Range("D1")
For ARow = 2 To 60 'used rows
If Len(MyRange.Offset(ARow - 1, 0).Value) > 0 Then
MyObject = MyRange.Offset(ARow - 1, 0)
MyColl.Add MyObject 'To read MyObjects into MyColl
End If
Next ARow
'test only
Sheets("Sheet34").Select
[A1].Select
[A1].Value = MyColl.Count
J = 1
For Each MyObject In MyColl
J = J + 1
[J+1,1] = MyObject
Next MyObject
'test only end
End Sub
|