Click here to Skip to main content
15,891,136 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Question"HTML Builder" library for C++ Pin
peterchen6-Jul-06 2:56
peterchen6-Jul-06 2:56 
AnswerRe: "HTML Builder" library for C++ Pin
Wes Aday6-Jul-06 4:25
professionalWes Aday6-Jul-06 4:25 
AnswerRe: "HTML Builder" library for C++ Pin
led mike6-Jul-06 5:34
led mike6-Jul-06 5:34 
GeneralRe: "HTML Builder" library for C++ [modified] Pin
peterchen6-Jul-06 10:49
peterchen6-Jul-06 10:49 
GeneralRe: "HTML Builder" library for C++ Pin
led mike6-Jul-06 11:05
led mike6-Jul-06 11:05 
GeneralRe: "HTML Builder" library for C++ Pin
peterchen6-Jul-06 12:03
peterchen6-Jul-06 12:03 
GeneralRe: "HTML Builder" library for C++ Pin
led mike7-Jul-06 4:55
led mike7-Jul-06 4:55 
Questioncan't add elements in the column Pin
kamalesh826-Jul-06 2:52
kamalesh826-Jul-06 2:52 
Hi i've strange problem.i've 4 columns Account,date,amount,address in a Clist Control.
//a breif abt my project

in my project am trying to slect a file by browsing (i used cfiledialog). & then pressing the button 'showbutton' i want to see all the documents(i.e.account,date,amount,address) of that file.this file is actually a list of several transaction.........

now in this project i didn't use classwizard, all the message mapping,dialog creation i've done mannually...............


//the problem

now, the problem is, while am trynig to insert items in the r8 column, only the 1st column is being populated , not the others....in the insertion column

CString strItem;
LVITEM lvi;
lvi.mask = LVIF_TEXT;



//Account no...
strItem.Format(_T(&TP->TR.Account[1]));
lvi.iSubItem = 0;
lvi.pszText = (LPTSTR)(LPCTSTR)(strItem);
m_cListCtrl.InsertItem( &lvi);

//Expirary Date
strItem.Format(_T(&TP->TR.ExpDate[1]));
lvi.iSubItem = 1;
lvi.pszText = (LPTSTR)(LPCTSTR)( strItem);
m_cListCtrl.InsertItem( &lvi);


nd this way only putting "lvi.iSubItem=2,3...4"

Don't get confused with TP,TR...these r my project variables for other issues.


using that above code.. am getting only 1st column....

waiting for quick reply.....A GOOD DAY to all.

kamalesh
AnswerRe: can't add elements in the column Pin
David Crow6-Jul-06 3:21
David Crow6-Jul-06 3:21 
GeneralRe: can't add elements in the column Pin
kamalesh826-Jul-06 4:00
kamalesh826-Jul-06 4:00 
AnswerRe: can't add elements in the column [modified] Pin
bosfan6-Jul-06 4:02
bosfan6-Jul-06 4:02 
AnswerRe: can't add elements in the column [modified] Pin
bosfan6-Jul-06 4:31
bosfan6-Jul-06 4:31 
QuestionVirtual Memory question Pin
Dennis L6-Jul-06 2:04
Dennis L6-Jul-06 2:04 
AnswerRe: Virtual Memory question Pin
_AnsHUMAN_ 6-Jul-06 2:32
_AnsHUMAN_ 6-Jul-06 2:32 
AnswerRe: Virtual Memory question Pin
David Crow6-Jul-06 2:46
David Crow6-Jul-06 2:46 
GeneralRe: Virtual Memory question Pin
Maximilien6-Jul-06 4:15
Maximilien6-Jul-06 4:15 
QuestionHow can we reverse the dialog Pin
muravi6-Jul-06 2:01
muravi6-Jul-06 2:01 
AnswerRe: How can we reverse the dialog Pin
_AnsHUMAN_ 6-Jul-06 2:07
_AnsHUMAN_ 6-Jul-06 2:07 
GeneralRe: How can we reverse the dialog [modified] Pin
muravi6-Jul-06 2:15
muravi6-Jul-06 2:15 
QuestionRe: How can we reverse the dialog Pin
David Crow6-Jul-06 2:48
David Crow6-Jul-06 2:48 
AnswerRe: How can we reverse the dialog Pin
Hamid_RT6-Jul-06 2:15
Hamid_RT6-Jul-06 2:15 
Questiondialer problem Pin
ashish dogra6-Jul-06 1:48
ashish dogra6-Jul-06 1:48 
AnswerRe: dialer problem Pin
Hamid_RT6-Jul-06 2:08
Hamid_RT6-Jul-06 2:08 
GeneralRe: dialer problem Pin
ashish dogra6-Jul-06 2:46
ashish dogra6-Jul-06 2:46 
GeneralRe: dialer problem Pin
Hamid_RT6-Jul-06 4:18
Hamid_RT6-Jul-06 4:18 

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.