Click here to Skip to main content
15,887,135 members
Articles / Web Development / HTML

SurfHelper: A popup window killer and history cleaner

Rate me:
Please Sign up or sign in to vote.
4.77/5 (13 votes)
15 Nov 2001 190.1K   3.7K   46  
A free tool to remove popup windows, clear history, control window properties of IE, and more.
// flag.h
//

#ifndef __flag_h__
#define __flag_h__

//browser window flag
#define SHOW_MENU_BAR				0x00000001
#define SHOW_TOOL_BAR				0x00000002
#define SHOW_ADDRESS_BAR			0x00000004
#define SHOW_STATUS_BAR				0x00000008
#define SHOW_RESIZABLE				0x00000010

//setting flag
#define REMOVE_POPUP_BY_SIZE		0x00010000
#define REMOVE_POPUP_BY_TITLE		0x00020000
#define REMOVE_POPUP_BY_URL			0x00040000
#define REMOVE_STATUS_MODIFIER		0x00080000
#define REMOVE_ONCONTEXTMENU		0x00100000
#define REMOVE_ONUNLOAD				0x00200000
#define REMOVE_FLASH				0x00400000
#define REMOVE_TIMER				0x00800000

#endif //__flag_h__

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

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 found here


Written By
Web Developer
China China
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions