Click here to Skip to main content
16,006,768 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: I would like to convert int to char Pin
sacoskun14-Oct-04 22:49
sacoskun14-Oct-04 22:49 
GeneralRe: I would like to convert int to char Pin
toxcct14-Oct-04 22:54
toxcct14-Oct-04 22:54 
GeneralRe: I would like to convert int to char Pin
sacoskun14-Oct-04 23:04
sacoskun14-Oct-04 23:04 
GeneralRe: I would like to convert int to char Pin
Bob Stanneveld15-Oct-04 2:25
Bob Stanneveld15-Oct-04 2:25 
GeneralRe: I would like to convert int to char Pin
Sujan Christo14-Oct-04 22:06
Sujan Christo14-Oct-04 22:06 
QuestionHow to trace handle leaks Pin
Member 6562814-Oct-04 20:13
Member 6562814-Oct-04 20:13 
GeneralToolbar button state Pin
ledallam14-Oct-04 20:09
ledallam14-Oct-04 20:09 
GeneralRe: Toolbar button state Pin
Sujan Christo14-Oct-04 21:04
Sujan Christo14-Oct-04 21:04 
Hi,
Think u must have 2 use something like

CMainFrame *pFrame = (CMainFrame *) GetParentFrame();

TBBUTTONINFO tbi;
tbi.dwMask= TBIF_STYLE;

tbi.cbSize= sizeof(TBBUTTONINFO);
pFrame->m_wndToolBar.GetToolBarCtrl().GetButtonInfo(ID_FILE_SAVE, &tbi);

tbi.fsStyle |= TBSTATE_PRESSED;
pFrame->m_wndToolBar.GetToolBarCtrl().SetButtonInfo(ID_FILE_SAVE, &tbi);

Sometimes this may help u

Sujan
Generaldebugging the break point? :) :) Pin
FASTian14-Oct-04 19:47
FASTian14-Oct-04 19:47 
GeneralRe: debugging the break point? :) :) Pin
toxcct14-Oct-04 19:52
toxcct14-Oct-04 19:52 
GeneralRe: debugging the break point? :) :) Pin
22491714-Oct-04 21:14
22491714-Oct-04 21:14 
GeneralRe: debugging the break point? :) :) Pin
David Crow15-Oct-04 6:22
David Crow15-Oct-04 6:22 
GeneralDecimal number class Pin
paulb14-Oct-04 19:16
paulb14-Oct-04 19:16 
GeneralRe: Decimal number class Pin
toxcct14-Oct-04 19:50
toxcct14-Oct-04 19:50 
GeneralRe: Decimal number class Pin
paulb14-Oct-04 20:35
paulb14-Oct-04 20:35 
GeneralRe: Decimal number class Pin
Cedric Moonen14-Oct-04 20:49
Cedric Moonen14-Oct-04 20:49 
GeneralRe: Decimal number class Pin
toxcct14-Oct-04 22:37
toxcct14-Oct-04 22:37 
GeneralRe: Decimal number class Pin
jan larsen15-Oct-04 2:34
jan larsen15-Oct-04 2:34 
GeneralRe: Decimal number class Pin
markkuk15-Oct-04 0:06
markkuk15-Oct-04 0:06 
GeneralRe: Decimal number class Pin
David Crow15-Oct-04 6:25
David Crow15-Oct-04 6:25 
GeneralSimple file I/O is giving me trouble Pin
georgiek5014-Oct-04 18:59
georgiek5014-Oct-04 18:59 
GeneralRe: Simple file I/O is giving me trouble Pin
Sujan Christo14-Oct-04 21:24
Sujan Christo14-Oct-04 21:24 
GeneralRe: Simple file I/O is giving me trouble Pin
Mad__14-Oct-04 22:22
Mad__14-Oct-04 22:22 
GeneralRe: Simple file I/O is giving me trouble Pin
David Crow15-Oct-04 7:56
David Crow15-Oct-04 7:56 
GeneralRe: Simple file I/O is giving me trouble Pin
georgiek5015-Oct-04 17:11
georgiek5015-Oct-04 17:11 

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.