Click here to Skip to main content
15,914,327 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: hardware enumeration Pin
toxcct24-Mar-05 22:07
toxcct24-Mar-05 22:07 
GeneralRe: hardware enumeration Pin
David Crow25-Mar-05 2:53
David Crow25-Mar-05 2:53 
Generalhigh performance graphic libaray! Pin
simonchen.net24-Mar-05 18:12
simonchen.net24-Mar-05 18:12 
Questionwhat does enum type do? whats the difference? Pin
ligerDave24-Mar-05 17:27
ligerDave24-Mar-05 17:27 
AnswerRe: what does enum type do? whats the difference? Pin
Ed K24-Mar-05 17:55
Ed K24-Mar-05 17:55 
AnswerRe: what does enum type do? whats the difference? Pin
Roger Wright26-Mar-05 21:30
professionalRoger Wright26-Mar-05 21:30 
GeneralMultiple Selection In ListBox MFC Pin
emilie560224-Mar-05 16:46
emilie560224-Mar-05 16:46 
GeneralRe: Multiple Selection In ListBox MFC Pin
David Crow25-Mar-05 3:42
David Crow25-Mar-05 3:42 
Is this any better?

int nCount = ListBox_GetSelCount(hCtrl);
int *pArray = new int[nCount];
ListBox_GetSelItems(hCtrl, nCount, pArray);
 
for (int x = 0; x < nCount; x++)
{
    ListBox_GetText(hCtrl, *(pArray + x), tmp);
    DispMsg(tmp);
}
 
delete [] pArray;



"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow


GeneralString manipulation.. Pin
RobJones24-Mar-05 15:12
RobJones24-Mar-05 15:12 
GeneralRe: String manipulation.. Pin
Michael Dunn24-Mar-05 15:40
sitebuilderMichael Dunn24-Mar-05 15:40 
GeneralRe: String manipulation.. Pin
RobJones24-Mar-05 16:10
RobJones24-Mar-05 16:10 
QuestionHow to load a mht file into IWebBrowser2 from stream ? Pin
Tcpip200524-Mar-05 14:54
Tcpip200524-Mar-05 14:54 
Questioncrash with dump? Pin
zecodela24-Mar-05 14:01
zecodela24-Mar-05 14:01 
AnswerRe: crash with dump? Pin
Roger Wright26-Mar-05 21:35
professionalRoger Wright26-Mar-05 21:35 
GeneralRe: crash with dump? Pin
zecodela27-Mar-05 15:01
zecodela27-Mar-05 15:01 
GeneralPermutations Pin
Pebbles124-Mar-05 12:23
Pebbles124-Mar-05 12:23 
GeneralRe: Permutations Pin
Shao Voon Wong24-Mar-05 13:05
mvaShao Voon Wong24-Mar-05 13:05 
GeneralRe: Permutations Pin
Pebbles124-Mar-05 14:10
Pebbles124-Mar-05 14:10 
GeneralRe: Permutations Pin
toxcct24-Mar-05 20:50
toxcct24-Mar-05 20:50 
GeneralSimulate CTRL+ALT+DEL Pin
zoroto24-Mar-05 10:43
zoroto24-Mar-05 10:43 
GeneralRe: Simulate CTRL+ALT+DEL Pin
Kelly Herald24-Mar-05 11:01
Kelly Herald24-Mar-05 11:01 
GeneralRe: Simulate CTRL+ALT+DEL Pin
geo_m25-Mar-05 2:32
geo_m25-Mar-05 2:32 
GeneralRe: Simulate CTRL+ALT+DEL Pin
David Crow25-Mar-05 2:53
David Crow25-Mar-05 2:53 
GeneralRe: Simulate CTRL+ALT+DEL Pin
zoroto25-Mar-05 11:04
zoroto25-Mar-05 11:04 
GeneralSetting the Maximum Number of Open Files Pin
jerry1211a24-Mar-05 10:07
jerry1211a24-Mar-05 10:07 

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.