lists and arrays in VBA

You will have to change some of your data types but the basics of what you just posted could be converted to something similar to this given the data types I used may not be accurate. Collections cannot be sorted so if you need to sort data you will probably want to use an array. … Read more

Sleep function Visual Basic

Is there a simple sleep function in Visual Basic that doens’t involve thread. Something similiar like there exists in: C: sleep(1); We also tried this code: …but it didn’t work. It gave me this error: PInvokeStackImbalance was detected Message: A call to PInvoke function ‘Ganzenbordspel!Ganzenbordspel.Spel::Sleep’ has unbalanced the stack. This is likely because the managed PInvoke … Read more