1
Answer

how do i fill a text box in WebKitBrowser ?

Photo of Abolfazl

Abolfazl

10y
718
1
i can navigate to web pages by WebKitBrowser,now i want to fill text boxes and click on buttons.
for example i want to go to google.com and put a name in google search box and then click on google search button.how do this?
thanks

Answers (1)

0
Photo of Vulpes
NA 98.3k 1.5m 13y
None of those functions are anything to do with ASP.NET as such though they can be called from it (using the Platform Invoke mechanism in the case of the first two).

Briefly:

* LoadLibrary is an unmanaged function which loads a dll into a process's address space.

* CoCreateInstance is an unmanaged funmction which creates a COM object using its Class Id (CLSID).

* CreateObject is a VB library function which creates a COM object using its Program Id (ProgID).

* Assembly.Load is a .NET method which loads an assembly at runtime.