|
|
Comments and Discussions
|
|
 |
|

|
very easy and fast than Inet Control or Webbrowser control
|
|
|
|

|
http://newyork.craigslist.org/mnh/eng/255305939.html
Search Engine Expert: Building Web 3.0 Social Networking People Search Engine, Do You Want To Be The King Of The Internet?
Company Description:
PeoplePeople.com: The Superior MySpace Alternative .....
PeoplePeople.com is combining proprietary Natural Language Extraction, Artificial Intelligence Algorithms and Information Integration logic to build a Social Networking Search Engine.
Using Natural Language Extraction tools, our programs are able to read English sentences and understand what they mean. PeoplePeople.com then extracts relevant pieces of information about people, such as the companies they work for and their job titles or a social networking page like a person's page on MySpace.
Artificial Intelligence Algorithms allow our computers to analyze a Web site and extract information based on an understanding of how the Web site is constructed. PeoplePeople.com can deduce that a specific paragraph describes a company, or a social networking page like a person's page on MySpace.
Position Purpose:
This person will work with the PeoplePeople.com Search Technology Team to develop the core search engine and web crawlers. This individual will be the search engineer on the design and implementation of a large scale crawling, processing and serving system. Tasks include implementing search algorithms, data mining, improving relevancy or search results, managing terabytes of data and scaling algorithms to work on very large data sets, and serving search results using a large network of Windows 2003 Servers.
Accountabilities:
This position is an integral part of PeoplePeople.com's core technology team involving the design, development and implementation of PeoplePeople.com's search engine: the crawling, indexing and ranking of billions of documents on the Internet. As such, this person will be expected to make a significant contribution to this effort by designing innovative technical solutions to this significant challenge.
Requirements/Qualities:
*Must have experience in building a search engine crawler and indexer
*Configuring crawlers and indexing content
*Must have the desire and commitment to build a leading-edge search technology
*Must have extensive programming experience in Microsoft C#.NET and SQL Server.
*Must have experience with search engine relevance and information retrieval techniques
*Must have a minimum of 5 years experience in software development in either an academic or corporate environment
*Must be able to communicate and work with both technical and non-technical people
This position is open to telecommuting, consulting or full time work.
Send your resume to searchengine@GeeWHIZConsulting.com, attention Leo Loiacono.
Best,
Leo
201-923-9595[^]
|
|
|
|

|
Hi, I have a problem in Visual Basic 2005 Express Edition whit:
Dim objMSHTML As New MSHTML.HTMLDocument
Dim objDocument As New MSHTML.HTMLDocument
objDocument = objMSHTML.createDocumentFromUrl(txtURL.Text, vbNullString)
the error message that I get is "AccessVioletionException was unhandled "
Fra_Mimi
|
|
|
|

|
When I double-click on a treeview item, isn't it supposed to list the limks available on that site?
It is just copying all the items from the listbox to the item that you double-clicked on. It is not going back to the web for the new links.
There is also some commented-out code in there. Did you check this code before you posted it?
Thanks.
|
|
|
|

|
The title implies that there is a part I but I can't find it.
Please let me know.
Thank you.
|
|
|
|

|
I want each of the links specified in a webpage to open programmaticaly and browse through their contents through VB. Does anybody has an idea as to how one can implement this.
Aman
|
|
|
|

|
hi aman
i was browsing through your posts. i think u wont mind helping me. can u mail me ur email address mine is mamsonu_2005 AT yahoo DOT com
thanx
|
|
|
|

|
Am trying to write an application that uses createDocumentFromUrl do retreive data from the web. The particular site I am retreiving causes the following IE message:
This page has an unspecified potential security flaw. Would you like to continue?
I am retreiving several 100 pages so I neet to programatically supress this message, how can this be done?
Note that when using the same url in IE directly (rather than from VB), I do
not get any error / warning messages.
Thanks
JC
|
|
|
|
|

|
pleasse help me. I also meet the same error createDocumentFromUrl when i added component Microsoft HTML object library. And i can't find createDocumentFromUrl. when i could continuous work!
Thanh you very much for somebody help me
ragard
phan van tien
|
|
|
|

|
I used your code to open a document in an activex dll in visual basic 6. I compiled the dll, and i called it from an asp page (I have IE version 6.0) . The code stays in the loop of DoEvents forever.
How can I resolve this problem?
|
|
|
|

|
So how could i delete a link while performing the for each loop?.
I know how to retrieve values from attributes in each link, but how could i replace these values, again while performing the loop?.
|
|
|
|

|
How do you get the plain text from each of the links objects and place those in the treeview instead of the link itself?
Thanks,
Don
Don
|
|
|
|

|
Hello,
I am getting below said error message when i ran the above code. I am attaching here with the error and code. Please help me how to get out of this problem.
I am getting this error for only google.com site. As best of my knowledge, in body onload event google set the focus to the text field.
How can I disable all the events in document. Because of I am using this component in ASP. My requirement is to get the content of the web page and extract the info. from it and store in our database.
I can also get the content using WinINET control. But I want the html code after executing the client side script.
If is there any alternate solution please help me.
Waiting for your valuable reply.....
V.Thandava Krishna.
======================================================
Option Explicit
Public Function GetHTMLCode(URL As String, strSearch As String) As
String
On Error Resume Next
Dim doc1 As New HTMLDocument
Dim doc2 As HTMLDocument
Set doc2 = doc1.createDocumentFromUrl("http://www.google.com/",
"null")
Do Until doc2.readyState = "complete"
DoEvents
Loop
GetHTMLCode = doc2.documentElement.outHTML
End Function
============================================================
============================================================
A run time error has occured.
Do u want to debug?
Line8:
Error: Can't move the focus to the controls because it is invisible,
not eanbled, or of a type that does not accept the focus.
============================================================
V.Thandava Krishna.
Application Programmer
|
|
|
|

|
I Am getting the same type of error on there
In The code
If Left$(.ItemURL(i), 1) = "h" Then
Set objDocument = objMSHTML.createDocumentFromUrl(clsInet.ItemURL(i), vbNullString)
While objDocument.ReadyState <> "complete"
DoEvents
Wend
Dim tempstr
' 'tempstr = objDocument.documentElement.outerText
' 'Text1.text = tempstr
' On Error Resume Next
strHtmlContet = objDocument.documentElement.outerHTML
'Text1.text = objDocument.documentElement.outerHTML
lstText.SetFocus
This is probably 'coz of
Set objDocument = objMSHTML.createDocumentFromUrl(clsInet.ItemURL(i), vbNullString)
but i don't find how to give a focus to it
---------------------------
Error
---------------------------
A Runtime Error has occurred.
Do you wish to Debug?
Line: 1139
Error: Can't move focus to the control because it is invisible, not enabled, or of a type that does not accept the focus.
---------------------------
Yes No
---------------------------
satya
|
|
|
|

|
I am trying to implement this code in a vb.net solution. I get the following error wheni try to use the htmllinkelement
"An unhandled exception of type 'System.NullReferenceException' occurred in Test.exe
Additional information: Object reference not set to an instance of an object."
Here is my code
Dim oLink As mshtml.HTMLLinkElement
Dim oMSHTML As New mshtml.HTMLDocument()
Dim oDom As New mshtml.HTMLDocument()
oMSHTML.open()
oDom = oMSHTML.createDocumentFromUrl(sPath, vbNullString)
Do Until oDom.readyState = "complete"
System.Windows.Forms.Application.DoEvents()
Loop
For Each oLink In oDom.links
MsgBox(oLink.innerText) 'THIS IS THE LINE THAT GENERATEs THE ERROR
Next
oMSHTML.close()
Any help would be appreciated
|
|
|
|

|
Hiya,
The variable "oLink" is mistype-ed
it should have been
Dim objLink As mshtml.HTMLAnchorElementClass
and it works fine.atleast for me.
-Adi Scale Arumugam
|
|
|
|

|
Hi.. i tried this code but getting an error as
Attempted to read or write protected memory. This is often an indication that other memory is corrupt. in VB.NET.
Can u help me out to solve this...
|
|
|
|

|
I like the idea of web agents, but instead of crawling for unidentified HTML resources such like images, href, and so on, wouldn't it be more useful to square out real components of web pages such like navbars, ad blocks, main content, ... ?
I know that's hard, because one has to reverse engineer the semantics of any arbitraty HTML code, but I believe this would blast !
|
|
|
|

|
once you hve the document object with you, its really very easy to scan thru any page. But before doing it you should know how the page is formatted. Making this generic would be a pain as different pages are laid out differently.
|
|
|
|

|
I got an error on opening the form which was written in log file as:
"Line 13: Class MSComctlLib.TreeView of control trvLinks was not a loaded control class."
Then after I managed to put a different treeview from MSComCtl.ocx file, I got compile error (User-defined type not defined) on first line of function getLinks "objLink As HTMLLinkElement"
How to fix this?
Ammar
There is a difference in knowing the path and walking the path.
|
|
|
|

|
Regarding ur error objLink as HTMLLinkElement, check whether u hve added Microsoft HTML Object Library in your reference
Thanks
Gopi:
|
|
|
|

|
Ooops.
Thanks.
Now I get the error (Objext doesnt support this method or property) on line:
Set objDoc = objMSHTML.createDocumentFromUrl(txtURL.Text, vbNullString)
I checked. createDocumentFromUrl doesnt exist is objMSHTML list box.
Ammar
There is a difference in knowing the path and walking the path.
|
|
|
|

|
Hey,
Check if u hve IE 5, if not install it..microsoft have a strange way of behaving
|
|
|
|
 |
|
|
General News Suggestion Question Bug Answer Joke Rant Admin
Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.
|
Small Web Agents using VB - Part II
| Type | Article |
| Licence | CPOL |
| First Posted | 12 Aug 2002 |
| Views | 129,157 |
| Downloads | 1,590 |
| Bookmarked | 26 times |
|
|