vb实现捕捉网页数据? - VB / 网络编程
如何用VB实现捕捉指定网页上的一个数据??
INET据说可以实现,但是思路我不太清晰,高手指教。
我的网页类似于:
00:00到00:05 20
10:05到10:05 100
12:00到12:05 200
14:00到14:10 300
总计 620人,
我就每天获得这个620数据,而且要累加。{{
相关问答:
Private Sub Command1_Click()
Dim MyString() As String
Open "a.xml" For Binary As #1 ' 打开刚创建的文件。
ReDim MyString(LOF(1) - 1)
Put #1, , MyRecord ' 读入所有字符到变量中 ......
现在有个xml文件是<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xm ......
挺繁琐,之前发的帖子,分值太低现在重发一个。欢迎各位大侠~~
#include "stdlib.h"
#include "math.h"
#include "stdio.h"
float objfx(float x[]);
void constraint(float x[] ......