I have some code, and I want to do something like:
I want some code to execute on a 1 in 10 chance. But when testing on my PC while running in IDE I want it to happen all the time.VB Code:
Dim RandomNumber As New Random If IsRunningInIDE Or Else RandomNumber.Next(0,11) = 10 Then 'do something End If
yea yea...I know code is compiled and executed from the DLL, but the IDE debugs it.
Is this possible?
Woof


Reply With Quote

