2,748
社区成员




lcarea = '昆山——南京'
lctime = '17/12/30'
lccontent = '有票啦'
oxhttp=CREATEOBJECT("InternetExplorer.Application")
oxhttp.NAVIGATE('https://train.qunar.com/stationToStation.htm?fromStation=%E6%98%86%E5%B1%B1%E5%8D%97&toStation=%E5%8D%97%E4%BA%AC&date=2017-12-30')
oxhttp.VISIBLE = .F.
DO WHILE oxhttp.ReadyState != 4
INKEY(1,'H')
ENDDO
lnamount = 0
lcString = oxhttp.DOCUMENT.body.innerhtml
oxhttp.QUIT
RELEASE oxhttp
FOR a = 1 TO LEN(lcString)
IF SUBSTR(lcString,a,14) == '列车运行图调整'
lnamount = lnamount + 1
ENDIF
IF lnamount > 20 AND a = (LEN(lcString) - 1)
MESSAGEBOX("现在的列车调整数量为"+ALLTRIM(STR(lnamount)),48,'Tips',500)
oxhttp=CREATEOBJECT("InternetExplorer.Application")
oxhttp.NAVIGATE('https://train.qunar.com/stationToStation.htm?fromStation=%E6%98%86%E5%B1%B1%E5%8D%97&toStation=%E5%8D%97%E4%BA%AC&date=2017-12-30')
oxhttp.VISIBLE = .F.
DO WHILE oxhttp.ReadyState != 4
INKEY(1,'H')
ENDDO
a = 1
lnamount = 0
lcString = oxhttp.DOCUMENT.body.innerhtml
oxhttp.QUIT
RELEASE oxhttp
ENDIF
ENDFOR