home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Welt 2001 April
/
PC-WELT 4-2001.ISO
/
software
/
wsh
/
numeric.exe
/
numeric.vbs
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2001-01-22
|
208 b
|
9 lines
Option Explicit
Dim MyNumber
MyNumber = InputBox("Bitte geben Sie eine Zahl ein")
if IsNumeric(MyNumber) then
MsgBox "Eingegebene Zahl: " & MyNumber, 64
else
MsgBox "Das war keine Zahl.", 48
end if