home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2001 May
/
PCWorld_2001-05_cd.bin
/
Software
/
Vyzkuste
/
tiptrik
/
tiptrik.exe
/
Telefon.vbs
< prev
next >
Wrap
Text File
|
2001-03-04
|
685b
|
28 lines
Set f = CreateObject("Scripting.FileSystemObject")
Set datei = f.OpenTextFile("c:\skripty\telesez.txt")
'****** Ve 2. °ßdku nastavte cestu k textovΘmu souboru se seznamem adres a Φφsel *****
suche=ucase(inputbox("Koho hledßte ?","Telefonnφ seznam"))
suche=ltrim(suche)
suche=rtrim(suche)
i=instr(suche," ")
if i > 0 then
suche1=left(suche,i-1)
suche2=mid(suche, i +1)
else
suche1=suche
suche2=suche
end if
Do until datei.AtEndOfStream
zeile=ucase(datei.readline)
if instr(zeile,suche1) then
if instr(zeile,suche2) then output=output & zeile & chr(13) & chr(10)
end if
Loop
if output="" then
msgbox "Zßznam nenalezen."
else
msgbox output
end if