Click here to Skip to main content
15,928,207 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: None rectangular button Pin
Jun Du11-Jun-06 14:48
Jun Du11-Jun-06 14:48 
AnswerRe: None rectangular button Pin
Hamid_RT11-Jun-06 18:48
Hamid_RT11-Jun-06 18:48 
QuestionGetting Notification event for ActiveXObject (xmlhttp) ? Pin
Paulino De Assis Fong11-Jun-06 11:08
Paulino De Assis Fong11-Jun-06 11:08 
Questionchat application help please2 Pin
amyy8611-Jun-06 10:37
amyy8611-Jun-06 10:37 
QuestionHow to dynamically detect when CD/DVD burner drive is added/removed ? Pin
Defenestration11-Jun-06 9:27
Defenestration11-Jun-06 9:27 
AnswerRe: How to dynamically detect when CD/DVD burner drive is added/removed ? Pin
Hamid_RT11-Jun-06 18:59
Hamid_RT11-Jun-06 18:59 
QuestionGetting values from CDateTimeCtrl Pin
ensger11-Jun-06 8:37
ensger11-Jun-06 8:37 
AnswerRe: Getting values from CDateTimeCtrl [modified] Pin
bob1697211-Jun-06 12:33
bob1697211-Jun-06 12:33 
// Using ClassWizard, create a member variable for the CDateTimeCtrl "value"

class CMyDialog : public CDialog
{
// Construction
public:
CMyDialog(CWnd* pParent = NULL); // standard constructor

// Dialog Data
//{{AFX_DATA(CMyDialog)
enum { IDD = IDD_DIALOG1 };
CTime m_TimeValue;
//}}AFX_DATA
...

// Then if, for example, your dialog is shown on a menu item selection...
void CMyView::OnShowdialog()
{
// TODO: Add your command handler code here
CMyDialog dlg;
dlg.m_TimeValue=CTime::GetCurrentTime(); // Init time

if (dlg.DoModal()==IDOK) {

TRACE("%s\n",dlg.m_TimeValue.Format("%Y/%m/%d %H:%M:%S"));
}
}

-- modified at 18:34 Sunday 11th June, 2006
GeneralRe: Getting values from CDateTimeCtrl Pin
ensger12-Jun-06 1:18
ensger12-Jun-06 1:18 
AnswerRe: Getting values from CDateTimeCtrl Pin
David Crow12-Jun-06 3:24
David Crow12-Jun-06 3:24 
GeneralRe: Getting values from CDateTimeCtrl Pin
ensger12-Jun-06 4:17
ensger12-Jun-06 4:17 
QuestionAtl Object Pin
hmklakmal11-Jun-06 7:31
hmklakmal11-Jun-06 7:31 
AnswerRe: Atl Object Pin
bob1697211-Jun-06 8:37
bob1697211-Jun-06 8:37 
GeneralRe: Atl Object Pin
hmklakmal11-Jun-06 10:04
hmklakmal11-Jun-06 10:04 
GeneralRe: Atl Object Pin
bob1697211-Jun-06 11:34
bob1697211-Jun-06 11:34 
QuestionVisual C++ Task list Pin
Giles11-Jun-06 7:25
Giles11-Jun-06 7:25 
QuestionMenu Bitmaps from Minimal Source Code in Dialog Pin
Igor Mihailov11-Jun-06 7:25
Igor Mihailov11-Jun-06 7:25 
AnswerRe: Menu Bitmaps from Minimal Source Code in Dialog Pin
Gary R. Wheeler11-Jun-06 8:21
Gary R. Wheeler11-Jun-06 8:21 
GeneralRe: Menu Bitmaps from Minimal Source Code in Dialog Pin
Igor Mihailov11-Jun-06 9:30
Igor Mihailov11-Jun-06 9:30 
GeneralRe: Menu Bitmaps from Minimal Source Code in Dialog Pin
Gary R. Wheeler11-Jun-06 10:44
Gary R. Wheeler11-Jun-06 10:44 
GeneralRe: Menu Bitmaps from Minimal Source Code in Dialog Pin
Igor Mihailov11-Jun-06 20:14
Igor Mihailov11-Jun-06 20:14 
QuestionHow to detect if XML resource is UTF8 or UTF16 Pin
Andre xxxxxxx11-Jun-06 7:01
Andre xxxxxxx11-Jun-06 7:01 
AnswerRe: How to detect if XML resource is UTF8 or UTF16 Pin
bob1697211-Jun-06 8:31
bob1697211-Jun-06 8:31 
AnswerRe: How to detect if XML resource is UTF8 or UTF16 Pin
Michael Dunn11-Jun-06 9:54
sitebuilderMichael Dunn11-Jun-06 9:54 
GeneralRe: How to detect if XML resource is UTF8 or UTF16 Pin
Andre xxxxxxx11-Jun-06 10:20
Andre xxxxxxx11-Jun-06 10:20 

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

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