home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Welt 2003 February
/
PCWELT_02_2003.ISO
/
pcwsoft
/
Script-Tut.exe
/
scripts
/
numeric.vbs
< prev
next >
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