Click here to Skip to main content
15,888,527 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: IE Extension: How to add a button to the status bar? Pin
ThatsAlok16-Sep-06 1:15
ThatsAlok16-Sep-06 1:15 
QuestionToolbar over 2 rows ? Pin
RedDragon2k15-Sep-06 5:11
RedDragon2k15-Sep-06 5:11 
QuestionDLL link error Pin
kk_vp15-Sep-06 5:03
kk_vp15-Sep-06 5:03 
AnswerRe: DLL link error Pin
Chris Losinger15-Sep-06 5:13
professionalChris Losinger15-Sep-06 5:13 
GeneralRe: DLL link error Pin
kk_vp17-Sep-06 19:29
kk_vp17-Sep-06 19:29 
GeneralRe: DLL link error Pin
kk_vp18-Sep-06 4:16
kk_vp18-Sep-06 4:16 
Question64 bit? Pin
Haoman1715-Sep-06 4:42
Haoman1715-Sep-06 4:42 
QuestionMFC (database) please help ! Pin
Bravoone_200615-Sep-06 2:55
Bravoone_200615-Sep-06 2:55 
How to speed up my Database ? i use ODBC driver visualfoxpro 6.0 database !

this is my code that fill in my CListCtrl if you have an ideea on how to speed up please tell me !!!!!



void CDtsc::FillList()
{

CDatabase_Plan* pPlan = new CDatabase_Plan();
if (!pPlan->Open())
return;

if (pPlan->IsOpen())
{

int x = 0;
while (!pPlan->IsEOF() )
{
m_list.InsertItem(x, pPlan->m_name);
m_list.SetItemText(x, 1, pPlan->m_den);

pPlan->Move(1);

x++;

}
m_list.Invalidate();
m_list.UpdateWindow();
}
pPlan->Close();
delete pPlan;
}

Bravoone

AnswerRe: MFC (database) please help ! Pin
Hamid_RT15-Sep-06 3:01
Hamid_RT15-Sep-06 3:01 
AnswerRe: MFC (database) please help ! Pin
David Crow15-Sep-06 3:13
David Crow15-Sep-06 3:13 
AnswerRe: MFC (database) please help ! Pin
Maximilien15-Sep-06 3:14
Maximilien15-Sep-06 3:14 
AnswerRe: MFC (database) please help ! Pin
Vinicius Pontes15-Sep-06 10:02
Vinicius Pontes15-Sep-06 10:02 
Questionproblem with FileInformation Pin
ragnabob15-Sep-06 2:44
ragnabob15-Sep-06 2:44 
QuestionRe: problem with FileInformation Pin
David Crow15-Sep-06 2:47
David Crow15-Sep-06 2:47 
AnswerRe: problem with FileInformation Pin
ragnabob15-Sep-06 2:50
ragnabob15-Sep-06 2:50 
GeneralRe: problem with FileInformation Pin
David Crow15-Sep-06 2:53
David Crow15-Sep-06 2:53 
GeneralRe: problem with FileInformation Pin
ragnabob15-Sep-06 3:15
ragnabob15-Sep-06 3:15 
AnswerRe: problem with FileInformation Pin
Stephen Hewitt15-Sep-06 3:03
Stephen Hewitt15-Sep-06 3:03 
GeneralRe: problem with FileInformation Pin
ragnabob15-Sep-06 3:14
ragnabob15-Sep-06 3:14 
GeneralRe: problem with FileInformation Pin
Stephen Hewitt16-Sep-06 1:32
Stephen Hewitt16-Sep-06 1:32 
QuestionWhat's function use for delete file and folder? Pin
Max++15-Sep-06 2:43
Max++15-Sep-06 2:43 
AnswerRe: What's function use for delete file and folder? Pin
Hamid_RT15-Sep-06 2:47
Hamid_RT15-Sep-06 2:47 
QuestionRe: What's function use for delete file and folder? Pin
David Crow15-Sep-06 2:48
David Crow15-Sep-06 2:48 
AnswerRe: What's function use for delete file and folder? Pin
Max++15-Sep-06 3:24
Max++15-Sep-06 3:24 
GeneralRe: What's function use for delete file and folder? Pin
David Crow15-Sep-06 3:32
David Crow15-Sep-06 3:32 

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.