I use many many macros and periodically I need to increase the HostSettleTime. This is difficult to do with over 60 macros. Can I incoprporate the host settle time into a header file and have each macro access the header file so I can change this time in one file only and have it affect every macro? I'll need specifics you are are going to make any suggestions. Right now I have this coded in my macro. Thank you in advance.
g_HostSettleTime = 200 ' milliseconds
OldSystemTimeout& = System.TimeoutValue
If (g_HostSettleTime > OldSystemTimeout) Then
System.TimeoutValue = g_HostSettleTime
End If
g_HostSettleTime = 200 ' milliseconds
OldSystemTimeout& = System.TimeoutValue
If (g_HostSettleTime > OldSystemTimeout) Then
System.TimeoutValue = g_HostSettleTime
End If