Click here to Skip to main content
15,896,290 members
Articles / Desktop Programming / MFC

Visual Studio Bookmark Saver Add-In

Rate me:
Please Sign up or sign in to vote.
4.69/5 (8 votes)
6 Feb 2000 91.5K   1.5K   36  
Visual Studio add-in which saves and restores bookmarks after closing and re-opening a file.
// Copyright (C) 1998, 1999, 2000   Jignesh Patel
// All rights reserved. May not be sold for profit.

#if !defined(AFX_ABOUTDIALOG_H__315FA8C1_230F_11D2_8044_0060B0C17174__INCLUDED_)
#define AFX_ABOUTDIALOG_H__315FA8C1_230F_11D2_8044_0060B0C17174__INCLUDED_

#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
// AboutDialog.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CAboutDialog dialog
#include "hyperlink.h"

class CAboutDialog : public CPropertyPage
{
	DECLARE_DYNCREATE(CAboutDialog)

// Construction
public:
	CAboutDialog();
	~CAboutDialog();

// Dialog Data
	//{{AFX_DATA(CAboutDialog)
	enum { IDD = IDD_ABOUT_SMALL };
	CHyperLink	m_ctrlURLLink;
	CHyperLink	m_ctrlHyperLink;
	//}}AFX_DATA


// Overrides
	// ClassWizard generate virtual function overrides
	//{{AFX_VIRTUAL(CAboutDialog)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	// Generated message map functions
	//{{AFX_MSG(CAboutDialog)
	virtual BOOL OnInitDialog();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()

};

//{{AFX_INSERT_LOCATION}}
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_ABOUTDIALOG_H__315FA8C1_230F_11D2_8044_0060B0C17174__INCLUDED_)

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
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions