home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2001 May
/
PCWorld_2001-05_cd.bin
/
Software
/
Vyzkuste
/
tiptrik
/
tiptrik.exe
/
ASearch.vbs
< prev
next >
Wrap
Text File
|
2001-03-04
|
569b
|
25 lines
Dim MeinIE
Eingabe = Inputbox("Zadejte zkratku, kterou chcete vysv∞tlit")
Set MeinIE = CreateObject("InternetExplorer.Application")
do while MeinIE.Busy
loop
MeinIE.Visible = 0
MeinIE.Navigate "http://www.chemie.fu-berlin.de/cgi-bin/acronym?" & Eingabe
do while MeinIE.Busy
loop
Text_von_IE = MeinIE.Document.Body.innerText
If Len(Text_von_IE)< 145 + Len(Eingabe) Then
MsgBox("Zkratka nebyla nalezena! " & ucase(Eingabe))
Else
Rechter_Teil=Right(Text_von_IE,Len(Text_von_IE)-143-Len(Eingabe))
MsgBox Rechter_Teil
End If
MeinIE.Quit