Click here to Skip to main content
15,894,539 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: is call false?? Pin
alpdoruk30-Apr-07 22:25
alpdoruk30-Apr-07 22:25 
GeneralRe: is call false?? Pin
Christian Graus30-Apr-07 22:32
protectorChristian Graus30-Apr-07 22:32 
GeneralRe: is call false?? Pin
alpdoruk30-Apr-07 22:37
alpdoruk30-Apr-07 22:37 
GeneralRe: is call false?? Pin
Christian Graus30-Apr-07 22:56
protectorChristian Graus30-Apr-07 22:56 
GeneralRe: is call false?? Pin
Tom John1-May-07 2:10
Tom John1-May-07 2:10 
GeneralRe: is call false?? Pin
alpdoruk1-May-07 3:25
alpdoruk1-May-07 3:25 
GeneralRe: is call false?? Pin
Tom John2-May-07 8:54
Tom John2-May-07 8:54 
GeneralRe: is call false?? Pin
ummoops2-May-07 13:04
ummoops2-May-07 13:04 
to convert textbox text to single:

froma = cdec(textbox.text)

Note that if a non-numeric character (a letter or a symbol) is entered into the textbox it will cause an exception error, to get around that use a validation technique such as

if isnumeric(textbox.text) = false then<br />
messagebox.show("you did not enter a number!")<br />
textbox.focus()<br />
end if<br />


what this does is alerts the user to his/her error and forces them to correct it

now as for the step-by-step.

The step-by-step shows you what the complier is actually running, so if it never gets highlighted it never has been called

Example:

if true= true than<br />
'this code will always run<br />
else if x = 10 then<br />
'this code will never run<br />
else<br />
'this code will also never run<br />
end if<br />


Hopes this helps

There are 10 types of people in the world: those who understand binary and those who don't

QuestionDHTML Editing Control - Table Property's? Pin
TimHot30-Apr-07 21:18
TimHot30-Apr-07 21:18 
AnswerRe: DHTML Editing Control - Table Property's? Pin
Dave Kreskowiak1-May-07 3:50
mveDave Kreskowiak1-May-07 3:50 
GeneralRe: DHTML Editing Control - Table Property's? Pin
TimHot1-May-07 3:59
TimHot1-May-07 3:59 
GeneralRe: DHTML Editing Control - Table Property's? Pin
Dave Kreskowiak1-May-07 4:41
mveDave Kreskowiak1-May-07 4:41 
GeneralRe: DHTML Editing Control - Table Property's? Pin
TimHot3-May-07 3:19
TimHot3-May-07 3:19 
Questionvoice command performer Pin
sanket h modi30-Apr-07 21:02
sanket h modi30-Apr-07 21:02 
AnswerRe: voice command performer Pin
Dave Kreskowiak1-May-07 3:49
mveDave Kreskowiak1-May-07 3:49 
QuestionPop up on right click on the whole application window Pin
x86phre3x30-Apr-07 19:35
x86phre3x30-Apr-07 19:35 
AnswerRe: Pop up on right click on the whole application window Pin
Christian Graus30-Apr-07 21:16
protectorChristian Graus30-Apr-07 21:16 
GeneralRe: Pop up on right click on the whole application window Pin
x86phre3x1-May-07 1:48
x86phre3x1-May-07 1:48 
GeneralRe: Pop up on right click on the whole application window Pin
Christian Graus1-May-07 1:54
protectorChristian Graus1-May-07 1:54 
AnswerRe: Pop up on right click on the whole application window Pin
Tom John1-May-07 2:16
Tom John1-May-07 2:16 
GeneralRe: Pop up on right click on the whole application window Pin
x86phre3x1-May-07 20:41
x86phre3x1-May-07 20:41 
GeneralRe: Pop up on right click on the whole application window Pin
Tom John2-May-07 8:48
Tom John2-May-07 8:48 
Questionhow to set a corresponding color on a particular cell? Pin
moomoooomoo30-Apr-07 17:24
moomoooomoo30-Apr-07 17:24 
AnswerRe: how to set a corresponding color on a particular cell? Pin
ChandraRam30-Apr-07 22:51
ChandraRam30-Apr-07 22:51 
GeneralRe: how to set a corresponding color on a particular cell? Pin
moomoooomoo30-Apr-07 23:59
moomoooomoo30-Apr-07 23:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.