Movatterモバイル変換


[0]ホーム

URL:


Wayback Machine
8 captures
06 Feb 2008 - 16 Oct 2012
JulSEPOct
Previous capture07Next capture
200920112012
success
fail
COLLECTED BY
Organization:Internet Archive
The Internet Archive discovers and captures web pages through many different web crawls.At any given time several distinct crawls are running, some for months, and some every day or longer.View the web archive through theWayback Machine.

Web wide crawl with initial seedlist and crawler configuration from March 2011. This uses the new HQ software for distributed crawling by Kenji Nagahashi.

What’s in the data set:

Crawl start date: 09 March, 2011
Crawl end date: 23 December, 2011
Number of captures: 2,713,676,341
Number of unique URLs: 2,273,840,159
Number of hosts: 29,032,069

The seed list for this crawl was a list of Alexa’s top 1 million web sites, retrieved close to the crawl start date. We used Heritrix (3.1.1-SNAPSHOT) crawler software and respected robots.txt directives. The scope of the crawl was not limited except for a few manually excluded sites.

However this was a somewhat experimental crawl for us, as we were using newly minted software to feed URLs to the crawlers, and we know there were some operational issues with it. For example, in many cases we may not have crawled all of the embedded and linked objects in a page since the URLs for these resources were added into queues that quickly grew bigger than the intended size of the crawl (and therefore we never got to them). We also included repeated crawls of some Argentinian government sites, so looking at results by country will be somewhat skewed.

We have made many changes to how we do these wide crawls since this particular example, but we wanted to make the data available “warts and all” for people to experiment with. We have also done somefurther analysis of the content.

If you would like access to this set of crawl data, please contact us at info at archive dot org and let us know who you are and what you’re hoping to do with it. We may not be able to say “yes” to all requests, since we’re just figuring out whether this is a good idea, but everyone will be considered.

TIMESTAMPS
loading
The Wayback Machine - https://web.archive.org/web/20110907103120/http://www.codeproject.com/KB/miscctrl/intellitip.aspx
Click here to Skip to main content
8,069,544 members and growing! (46,295 online)
EmailPassword Lost password?
Home
Search within:




Licence 
First Posted 16 Jul 2003
Views 46,316
Downloads 1,238
Bookmarked 21 times

VB style tool tip control similar to IntelliSense ToolTip

ByAlex Hazanov | 16 Jul 2003
Tool tip control similar to Visual Basic IntelliSense tool tip
 
See Also
Print Article
add
Add to your CodeProject bookmarks
Discuss
Discuss this article
4
  3.58 (6 votes)
1 vote, 16.7%
1

2

3
1 vote, 16.7%
4
4 votes, 66.7%
5
3.58/5 - 6 votes
μ 3.58, σa 2.80 [?]
Sponsored Links

Sample Image - intellitip.jpg

Introduction

This is aCDialog derived window, which resembles the tool tip that pop-ups with function parameters in Visual Studio IDE. The control allows to display a function definition with it's parameters and mark the current parameter in bold font.

Usage

  1. Add a dialog resource to your project. Make sure to set the following for this dialog:
    Style = popup. Border = None.No TitleBar
  2. Add the dialog as a member to your application's main window.
  3. Callcreate for the dialog while passing pointer to the window that the tool tip belongs to:m_intelliToolTip.Create(pParentWnd).
  4. Add a function definition:
    BOOL CIntelliTipDemoDlg::OnInitDialog(){ CDialog::OnInitDialog();// Set the icon for this dialog.  The framework does this automatically//  when the application's main window is not a dialog SetIcon(m_hIcon, TRUE);// Set big icon SetIcon(m_hIcon, FALSE);// Set small icon// TODO: Add extra initialization here m_tip.Create(this); CStringArray params; params.Add("Param 1"); params.Add("Param 2"); params.Add("Param 3"); params.Add("Param 4"); params.Add("Param 5"); m_tip.SetFunction("SomeFunction",params); m_tip.SetCurParam(3);return TRUE;// return TRUE  unless you set the focus to a control}

When you need to show the tool tip, callCIntelliTip::Show() orCIntelliTip::Hide() to hide it. To set the position, callCIntelliTip::SetCursorPoint(cursorPoint). Example:

void CIntelliTipDemoDlg::OnButton1() {// TODO: Add your control notification handler code here CPoint pt; GetCursorPos(&pt); ScreenToClient(&pt); m_tip.SetCursorPoint(pt); m_tip.Show();}

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be foundhere

About the Author

Alex Hazanov

Software Developer (Senior)
RDV Systems
Israel Israel

Member


Sign Up to vote for this article
Add a reason or comment to your vote:x
Votes of 3 or less require a comment

Comments and Discussions

 
You mustSign In to use this message board. (secure sign-in)
FAQ FAQ 
 
    Noise level  Layout  Per page   
 RefreshFirstPrevNext
GeneralThanks,but i have a problemPinmemberLancelot Yuan17:57 14 Jul '05  
Hi, Thanks very much. It works very well.
Now i want to show the tip like this:

Some String
another String
Maybe another String
String

I don't know how many lines to show, and the length of each line.I have try to rewrite it ,but i don't how to do it. Please help me.
 
Forgive my poor english.
Thanks again.
Sign In·View Thread·Permalink
GeneralRe: Thanks,but i have a problemPinmemberAlex Hazanov11:50 16 Jul '05  
There are other multiline tooltip controls at this site. Search for one.
 


Sign In·View Thread·Permalink
GeneralVery NicePinmemberspaceseel17:52 29 May '05  
:-DIt looks pretty interesting. Looks just like what you would use in a compiler program. I might look into this later.
Sign In·View Thread·Permalink2.00/5 (1 vote)
GeneralThankyou!!!PinmemberAdrian Gibbons3:02 17 Jul '03  
Thankyou ever so much - this is exactly what I've been looking for for a while now.
Big Grin | :-D
Sign In·View Thread·Permalink2.00/5 (1 vote)
Last Visit: 19:00 31 Dec '99     Last Update: 1:31 7 Sep '111

General General   News News   Suggestion Suggestion   Question Question   Bug Bug   Answer Answer   Joke Joke   Rant Rant   Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink |Advertise |Privacy |Mobile
|Web23 |2.3.110830.1
Article Copyright 2003 by Alex Hazanov
Everything elseCopyright ©CodeProject, 1999-2011
Terms of Use
Layout:fixed|fluid

The Daily Insider

[8]ページ先頭

©2009-2025 Movatter.jp