Click here to Skip to main content
15,915,744 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionPlease Help me in this Pin
Vinay Dornala1-May-07 2:45
Vinay Dornala1-May-07 2:45 
AnswerRe: Please Help me in this Pin
Colin Angus Mackay1-May-07 4:08
Colin Angus Mackay1-May-07 4:08 
QuestionAggregation Implementation Pin
VineetRawat30-Apr-07 23:53
VineetRawat30-Apr-07 23:53 
AnswerRe: Aggregation Implementation Pin
Christian Graus1-May-07 2:06
protectorChristian Graus1-May-07 2:06 
Questiondecimal point setting in smart device Pin
laurensia inge30-Apr-07 23:21
laurensia inge30-Apr-07 23:21 
Questionvisual basic Pin
tummala pavan30-Apr-07 22:12
tummala pavan30-Apr-07 22:12 
AnswerRe: visual basic Pin
Christian Graus30-Apr-07 22:22
protectorChristian Graus30-Apr-07 22:22 
Questionis call false?? Pin
alpdoruk30-Apr-07 21:40
alpdoruk30-Apr-07 21:40 
AnswerRe: is call false?? Pin
Christian Graus30-Apr-07 22:21
protectorChristian Graus30-Apr-07 22:21 
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 

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.