![]() |
|
|
|
#1
|
|||
|
|||
|
ok, so it's taken a while because i'm no expert, but have managed to answer my own question
![]() Code:
Public varDebug As Variant
Public Function saveMyDebugValue(DebugValue As Variant) As Long
'
' https://social.msdn.microsoft.com/Forums/office/en-US/5c2a83cf-0596-41a2-9f42-e64cc6b1e556/immediate-window-memory-limitation?forum=accessdev
'
Dim I As Long
If IsEmpty(varDebug) Then
ReDim varDebug(0 To 0)
Else
ReDim Preserve varDebug(LBound(varDebug) To UBound(varDebug) + 1)
End If
I = UBound(varDebug)
varDebug(I) = DebugValue
saveMyDebugValue = I
End Function
Code:
ReDim varDebug(0 To 0) Code:
saveMyDebugValue Now saveMyDebugValue "Clean up document" Code:
Write_MyDebugValue Code:
Private Function Write_MyDebugValue()
'
' write log output to new document
'
Dim varCounter As Variant
Dim strOutPut As String
Dim objDocTarget As Document
' For Each varCounter In varDebug
For varCounter = 0 To UBound(varDebug)
strOutPut = strOutPut & varDebug(varCounter) & vbCrLf
Next varCounter
'MsgBox strOutPut
Set objDocTarget = Documents.Add
objDocTarget.Range = ""
With objDocTarget.Range
.Font.Size = 9
.Font.Name = "Arial"
' RGB value for 80% grey
.Font.TextColor = RGB(80, 84, 77)
'.InsertParagraphAfter
'.InsertAfter "====================================================================================="
.Text = strOutPut
'.InsertAfter strOutPut
End With
Set varCounter = Nothing
Set objDocTarget = Nothing
End Function
|
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Handling message box prompts | robert bristow | Word VBA | 2 | 07-10-2016 10:41 AM |
Images in Documents best practices
|
liamnacuac | Drawing and Graphics | 1 | 03-29-2016 04:11 PM |
PivotTable best Practices
|
lnicely@nvcc.edu | Excel | 1 | 07-13-2015 08:03 AM |
Floor maps and best practices
|
healthpointe | Visio | 0 | 07-10-2012 10:45 AM |
| Copying tables between Word documents best practices? | dylane | Word Tables | 0 | 12-18-2008 12:21 PM |