You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.4 KiB
57 lines
1.4 KiB
//+--------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1994 - 1997.
|
|
//
|
|
// File: editschd.hxx
|
|
//
|
|
// Contents: Task schedule property page.
|
|
//
|
|
// Classes: CEditSchedPage
|
|
//
|
|
// History: 11-21-1997 SusiA
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
#ifndef __EDITSCHD_HXX_
|
|
#define __EDITSCHD_HXX_
|
|
|
|
//+--------------------------------------------------------------------------
|
|
//
|
|
// Class: CEditSchedPage
|
|
//
|
|
// Purpose: Implement the task wizard welcome dialog
|
|
//
|
|
// History: 11-21-1997 SusiA
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
class CEditSchedPage: public CWizPage
|
|
|
|
{
|
|
public:
|
|
|
|
//
|
|
// Object creation/destruction
|
|
//
|
|
CEditSchedPage(
|
|
HINSTANCE hinst,
|
|
ISyncSchedule *pISyncSched,
|
|
HPROPSHEETPAGE *phPSP);
|
|
|
|
BOOL ShowSchedName();
|
|
void SetSchedNameDirty();
|
|
BOOL SetSchedName();
|
|
BOOL Initialize(HWND hwnd);
|
|
|
|
private:
|
|
BOOL _Initialize_ScheduleName(HWND hwnd);
|
|
BOOL _Initialize_TriggerString(HWND hwnd);
|
|
BOOL _Initialize_LastRunString(HWND hwnd);
|
|
BOOL _Initialize_NextRunString(HWND hwnd);
|
|
|
|
HWND m_hwnd;
|
|
BOOL m_fSchedNameChanged;
|
|
|
|
};
|
|
|
|
#endif // __EDITSCHD_HXX_
|
|
|