Click here to Skip to main content
15,903,854 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralSTL on Solaris Pin
retZ24-Jan-03 7:28
retZ24-Jan-03 7:28 
GeneralRe: STL on Solaris Pin
Anonymous24-Jan-03 8:01
Anonymous24-Jan-03 8:01 
GeneralRe: STL on Solaris Pin
retZ24-Jan-03 8:09
retZ24-Jan-03 8:09 
GeneralRe: STL on Solaris Pin
Anonymous24-Jan-03 8:29
Anonymous24-Jan-03 8:29 
GeneralRe: STL on Solaris Pin
retZ24-Jan-03 9:19
retZ24-Jan-03 9:19 
GeneralRe: STL on Solaris Pin
Anonymous24-Jan-03 10:40
Anonymous24-Jan-03 10:40 
GeneralRe: STL on Solaris Pin
retZ24-Jan-03 11:03
retZ24-Jan-03 11:03 
GeneralPIN Generation Algorithm Pin
DViggiano24-Jan-03 6:51
DViggiano24-Jan-03 6:51 
GeneralRe: PIN Generation Algorithm Pin
Chris Losinger24-Jan-03 7:01
professionalChris Losinger24-Jan-03 7:01 
GeneralRe: PIN Generation Algorithm Pin
DViggiano24-Jan-03 7:03
DViggiano24-Jan-03 7:03 
GeneralRe: PIN Generation Algorithm Pin
Jamie Hale24-Jan-03 7:18
Jamie Hale24-Jan-03 7:18 
GeneralRe: PIN Generation Algorithm Pin
DViggiano24-Jan-03 7:24
DViggiano24-Jan-03 7:24 
GeneralRe: PIN Generation Algorithm Pin
Chris Losinger24-Jan-03 7:49
professionalChris Losinger24-Jan-03 7:49 
GeneralRe: PIN Generation Algorithm Pin
Chris Losinger24-Jan-03 7:46
professionalChris Losinger24-Jan-03 7:46 
GeneralRe: PIN Generation Algorithm Pin
Jamie Hale24-Jan-03 7:54
Jamie Hale24-Jan-03 7:54 
GeneralRe: PIN Generation Algorithm Pin
Chris Losinger24-Jan-03 8:01
professionalChris Losinger24-Jan-03 8:01 
GeneralRe: PIN Generation Algorithm Pin
DViggiano24-Jan-03 8:11
DViggiano24-Jan-03 8:11 
GeneralNon-MFC OLEDB / ADO Class Pin
Anonymous24-Jan-03 6:25
Anonymous24-Jan-03 6:25 
GeneralThread function graceful shutdown Pin
Anonymous24-Jan-03 6:11
Anonymous24-Jan-03 6:11 
GeneralRe: Thread function graceful shutdown Pin
Ted Ferenc24-Jan-03 6:20
Ted Ferenc24-Jan-03 6:20 
GeneralRe: Thread function graceful shutdown Pin
Anonymous24-Jan-03 7:21
Anonymous24-Jan-03 7:21 
GeneralRe: Thread function graceful shutdown Pin
John M. Drescher24-Jan-03 7:34
John M. Drescher24-Jan-03 7:34 
GeneralRe: Thread function graceful shutdown Pin
Ted Ferenc24-Jan-03 7:43
Ted Ferenc24-Jan-03 7:43 
GeneralSmart ComboBox Pin
ns24-Jan-03 5:57
ns24-Jan-03 5:57 
Theres a CP project :

http://www.codeproject.com/docking/ToolbarWithCombo.asp

which has either a regular combobox being created in the toolbar or a CSmartComboBox (derived from CComboBox).

However
BOOL    CreateComboBox(class CComboBox& comboBox, UINT nIndex, UINT nID, int nWidth, int nDropHeight);


has class CComboBox in it. Can I pass in a SmartComboBox variable instead? Or do I have to modify the function to:
BOOL    CreateComboBox(class CSmartComboBox& comboBox, UINT nIndex, UINT nID, int nWidth, int nDropHeight);
?


The second question is : why the word class in class CComboBox& comboBox ??? Cant it just be:

CreateComboBox(CComboBox& comboBox,...) withgout the word class?



Appreciate your help,
ns
GeneralRe: Smart ComboBox Pin
Ben Burnett24-Jan-03 17:31
Ben Burnett24-Jan-03 17:31 

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.