Can we display only integers / numbers through the message
box? Is there any constraint to do so?
Answer Posted / hemal1972
yes, we can display only integers/numbers through the
message box. following is the code.
'code starts here
'declaring variable which holds integer number.
dim intA as integer
'declaring variable which holds string value
dim strB as string
'now, if we have textbox control in which we enter the
value of any number which may or may not be integer.
intA=cint(val(text1.text))'text1 is name of textbox
control.
strB= cstr(intA)
msgbox strB,vbokonly,"here is integer number"
'code ends here.
paste this code in command1_click event in the form which
contains textbox control text1 and commandbutton control
command1.run the program. enter any number in textbox,
click command1 and see the result in message box. thanks.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Draw Sequence Modal of RDO? Explain.
What is instantiating?
What are some methods you can use to send data from one VB executable to another one?
How do I use GetPrivateProfileString to read from INI files?
What is the default model of the form?
What is the use of OLE?
What is the use of Tabledef?
Explain OLE Drag and Drop?
How do I make a text box not beep but do something else when I hit the Enter key?
OLE is used for _______
_____ collection in recordset used to assign a value from textbox to table columns without making abinding in datacontrol.
Explain the working with task in Gantt chart view.
What is the difference between change event in normal combobox and dbcombobox?
What do you mean by provider?
what is the Difference between Dynaset and Snapshot?