I'm currently working with some semi automated scripts in VBA.
I need to wait 1 second before going into the next loop. the method 'Application.wait' is not accessible due to these macros is for the AP2700 series.
the loop goes like this:
For i = 0 To 20
AP.S2CDsp.Analyzer.FuncFilter = 0
noiseListNone(i) = AP.S2CDsp.Analyzer.FuncChARdg("V")
AP.S2CDsp.Analyzer.FuncFilter = 1
noiseListA(i) = AP.S2CDsp.Analyzer.FuncChARdg("V")
AP.S2CDsp.Analyzer.FuncFilter = 2
noiseListCCIR(i) = AP.S2CDsp.Analyzer.FuncChARdg("V")
Wait 1
Next
I want to save the readings into a array to handle later on.
I'm kind a new to VBA / VB. therefore I'm wondering.. the 'Wait 1' will it wait one second or are there other alternatives?
Best regards.