Click here to Skip to main content
16,005,037 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: List exported function in DLL Pin
vmaltsev8-Apr-03 5:06
vmaltsev8-Apr-03 5:06 
GeneralRe: List exported function in DLL Pin
AnTri8-Apr-03 11:04
AnTri8-Apr-03 11:04 
GeneralRe: List exported function in DLL Pin
Dudi Avramov8-Apr-03 23:04
Dudi Avramov8-Apr-03 23:04 
GeneralCListView Pin
rosen7-Apr-03 23:59
rosen7-Apr-03 23:59 
GeneralRe: CListView Pin
jhwurmbach8-Apr-03 0:16
jhwurmbach8-Apr-03 0:16 
Generalcontext mneu question Pin
Jump_Around7-Apr-03 23:50
Jump_Around7-Apr-03 23:50 
GeneralRe: context mneu question Pin
Brian Shifrin8-Apr-03 1:15
Brian Shifrin8-Apr-03 1:15 
GeneralRe: context mneu question Pin
Cedric Moonen8-Apr-03 1:19
Cedric Moonen8-Apr-03 1:19 
Take a look at the documentation for the CMenu class. You can use for several purpose (also if you want to change the text).

You can use the ModifyItem function.
Suppose the ID of the menu item you want to change the text is ID_YOURID and the menu is ID_YOURMENU. Use the following code:

CMenu* pNewMenu = new CMenu();<br />
pNewMenu->LoadMenu(ID_YOURMENU);<br />
pNewMenu->ModifyMenu(ID_YOURID,MF_BYCOMMAND|MF_STRING,ID_YOURID,"Your Text");<br />


Call then TpNewMenu->TrackPopupMenu(...) to show the menu!

Hope this helps!
QuestionUnzipping? Pin
Brian Delahunty7-Apr-03 23:09
Brian Delahunty7-Apr-03 23:09 
AnswerRe: Unzipping? Pin
jhwurmbach7-Apr-03 23:27
jhwurmbach7-Apr-03 23:27 
GeneralScrollWindow Pin
jeremysay7-Apr-03 23:04
jeremysay7-Apr-03 23:04 
GeneralRe: ScrollWindow Pin
Brian Shifrin8-Apr-03 1:20
Brian Shifrin8-Apr-03 1:20 
GeneralRe: ScrollWindow Pin
jeremysay8-Apr-03 2:06
jeremysay8-Apr-03 2:06 
GeneralRe: ScrollWindow Pin
Brian Shifrin8-Apr-03 13:48
Brian Shifrin8-Apr-03 13:48 
GeneralRe: ScrollWindow Pin
jeremysay9-Apr-03 3:21
jeremysay9-Apr-03 3:21 
GeneralHook problem Pin
_Theo_7-Apr-03 22:24
_Theo_7-Apr-03 22:24 
GeneralBitmap buttons Pin
yashraj7-Apr-03 22:19
yashraj7-Apr-03 22:19 
GeneralRe: Bitmap buttons Pin
Mahesh Varma8-Apr-03 0:41
Mahesh Varma8-Apr-03 0:41 
GeneralRe: Bitmap buttons Pin
yashraj12-Apr-03 0:14
yashraj12-Apr-03 0:14 
GeneralChanging dialog style Pin
Chopper7-Apr-03 22:17
Chopper7-Apr-03 22:17 
GeneralRe: Changing dialog style Pin
Ernesto D.7-Apr-03 23:10
Ernesto D.7-Apr-03 23:10 
GeneralRe: Changing dialog style Pin
Chopper7-Apr-03 23:16
Chopper7-Apr-03 23:16 
GeneralRe: Changing dialog style Pin
Joan M8-Apr-03 0:21
professionalJoan M8-Apr-03 0:21 
GeneralRe: Changing dialog style Pin
Chopper8-Apr-03 1:04
Chopper8-Apr-03 1:04 
GeneralRe: Changing dialog style Pin
Joan M8-Apr-03 3:16
professionalJoan M8-Apr-03 3:16 

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.