Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

DoEvents


EclipseCommunity
 Share

Recommended Posts

Depends entirely on the code. It should be used sparingly and only if you need to update another part of the application.

The loading procedures at the initial load, for example. DoEvents needs to be used to make the loading screen update.
Link to comment
Share on other sites

there are 3 condtional statments

if…  then - simple true false checker, only runs once, just remember >, <, = , <>, or, and

do... while- an uncommonly used loop, used for looping as long at one thing is the same

for- a more common loop, loops though a set array and stops when it reached the end, used for checking large abounts of ordered data, and writing large amounts data

*correct me if im wrong, but this is the basic ideas for the statments in most programing mediums
Link to comment
Share on other sites

@RyokuHasu:

> there are 3 condtional statments
>
> if…  then - simple true false checker, only runs once, just remember >, <, = , <>, or, and
>
> do... while- an uncommonly used loop, used for looping as long at one thing is the same
>
> for- a more common loop, loops though a set array and stops when it reached the end, used for checking large abounts of ordered data, and writing large amounts data
>
> *correct me if im wrong, but this is the basic ideas for the statments in most programing mediums

What in the name of christ are you talking about?
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...