home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2001 November
/
Chip_2001-11_cd1.bin
/
internet
/
convert
/
c_app.vbs
< prev
next >
Wrap
Text File
|
2000-07-21
|
394b
|
17 lines
Option Explicit
Sub cmdOK_OnClick
Dim i, Txt
Txt = ""
For i = 0 to cboJednotka.Options.Length - 1
Txt = Txt & txtIn.Value * cboJednotka.Value / cboJednotka.Options(i).Value & " (" & cboJednotka.Options(i).Text & ")" & Chr(10) & Chr(13)
Next
lstOut.Value = Txt
txtIn.Focus
txtIn.Select
End Sub
Sub Window_OnLoad
txtIn.Focus
txtIn.Select
End Sub