Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
visual basic help??????????/?
can you give any example of nested if and compounded if program of Control structure....with coding plz
2 Answers
- 1 decade agoFavorite Answer
if ( TRUE )
Execute the next statement
Compounded if:
if ( TRUE )
{
Execute all statements inside the braces
}
Nested If:
if ( <condition> )
{
// Execute these statements if <condition> is TRUE
}
else if ( <another condition> )
{
// Execute these statements if <another condition> is TRUE and
// <condition> is FALSE
}
- jwong71091Lv 61 decade ago
I have found FunctionX to be very useful for learning Visual Basic, C++, etc.
Here are some of their tutorials for Visual Basic
http://www.functionx.com/visualbasic/index.htm
If you scroll to the bottom you will see the "Windows Controls Applications"; Functionx website also includes many examples of Visual Basic programs and show step BY step how to set it up:
http://www.functionx.com/vb/index.htm
http://www.functionx.com/vb/applications/danilopiz...
http://www.functionx.com/vb/applications/pledge.ht...
http://www.functionx.com/vb/applications/carinvent...
Also YouTube has tutorials for Visual Basic also:
http://www.youtube.com/results?search_query=visual...
I hope this helps!