Joke Collection Website - Public benefit messages - How does vb get the verification code from the source file of the webpage into the program?

How does vb get the verification code from the source file of the webpage into the program?

After loading a web page using the WebBrowser 1 control, the following code

ImgFileName = App。 Path and path. " \temp.bmp "

For each x in WebBrowser 1. Documentation. All

If X.Id = "img_verify ",X.Id is the picture Id.

Set CtrlRange = WebBrowser 1. document . body . createcontrolrange()

CtrlRange。 Add (x)

CtrlRange.execCommand ("Copy ")

Save the picture clipboard. GetData,ImgFileName

Image 1。 picture = load picture(img file name)

Kill ImgFileName

If ... it will be over.

then