Click here to Skip to main content
15,908,111 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Howto declare a dynamic double Array Pin
De Nardis Andrea7-Oct-03 5:19
De Nardis Andrea7-Oct-03 5:19 
GeneralRe: Howto declare a dynamic double Array Pin
valikac7-Oct-03 5:56
valikac7-Oct-03 5:56 
GeneralText Control Pin
rawatvs7-Oct-03 3:53
rawatvs7-Oct-03 3:53 
GeneralRe: Text Control Pin
alex.barylski7-Oct-03 9:29
alex.barylski7-Oct-03 9:29 
GeneralCListCtrl problem Pin
jgauffin7-Oct-03 3:51
jgauffin7-Oct-03 3:51 
GeneralRe: CListCtrl problem Pin
David Crow7-Oct-03 4:00
David Crow7-Oct-03 4:00 
GeneralRe: CListCtrl problem Pin
jgauffin7-Oct-03 4:22
jgauffin7-Oct-03 4:22 
GeneralRe: CListCtrl problem Pin
vcplusplus7-Oct-03 5:11
vcplusplus7-Oct-03 5:11 
I have had much better luck using the LVITEM structure

LVITEM lvi;<br />
ZeroMemory(&lvi, sizeof(lvi));<br />
lvi.mask	= LVIF_TEXT;<br />
lvi.iItem	= lst.GetItemCount();<br />
lvi.iSubItem	= 0;<br />
lvi.pszText	= "Test";<br />
lvi.cchTextMax	= lstrlen("Test");<br />
INT nInsertPos = m_MyListCtrl.InsertItem(&lvi);<br />
<br />
<br />
ZeroMemory(&lvi, sizeof(lvi));<br />
lvi.mask	= LVIF_TEXT;<br />
lvi.iItem	= nInsertPos;<br />
lvi.iSubItem	= 1;<br />
lvi.pszText	= "Column one test";<br />
lvi.cchTextMax	= lstrlen("Column one test");<br />
m_MyListCtrl.SetItem(&lvi);

QuestionA safe system place for confidental data? Pin
Osborn7-Oct-03 3:43
Osborn7-Oct-03 3:43 
AnswerRe: A safe system place for confidental data? Pin
David Crow7-Oct-03 4:17
David Crow7-Oct-03 4:17 
AnswerRe: A safe system place for confidental data? Pin
Terry O'Nolley7-Oct-03 4:23
Terry O'Nolley7-Oct-03 4:23 
GeneralRe: A safe system place for confidental data? Pin
Osborn7-Oct-03 7:36
Osborn7-Oct-03 7:36 
AnswerRe: A safe system place for confidental data? Pin
JWood7-Oct-03 9:13
JWood7-Oct-03 9:13 
GeneralWeb browser control Pin
Anthony98877-Oct-03 3:33
Anthony98877-Oct-03 3:33 
QuestionMoveFileEx not always working? Pin
Kayembi7-Oct-03 3:20
Kayembi7-Oct-03 3:20 
AnswerRe: MoveFileEx not always working? Pin
David Crow7-Oct-03 3:55
David Crow7-Oct-03 3:55 
GeneralRe: MoveFileEx not always working? Pin
Kayembi7-Oct-03 6:02
Kayembi7-Oct-03 6:02 
GeneralRe: MoveFileEx not always working? Pin
David Crow7-Oct-03 6:15
David Crow7-Oct-03 6:15 
GeneralProgramm needs VC++ to run Pin
DarkMarine7-Oct-03 3:20
DarkMarine7-Oct-03 3:20 
GeneralRe: Programm needs VC++ to run Pin
vcplusplus7-Oct-03 3:48
vcplusplus7-Oct-03 3:48 
GeneralRe: Programm needs VC++ to run Pin
DarkMarine7-Oct-03 7:26
DarkMarine7-Oct-03 7:26 
GeneralRe: Programm needs VC++ to run Pin
vcplusplus7-Oct-03 7:55
vcplusplus7-Oct-03 7:55 
GeneralRe: Programm needs VC++ to run Pin
DarkMarine7-Oct-03 8:05
DarkMarine7-Oct-03 8:05 
GeneralRe: Programm needs VC++ to run Pin
vcplusplus7-Oct-03 9:29
vcplusplus7-Oct-03 9:29 
GeneralRe: Programm needs VC++ to run Pin
DarkMarine9-Oct-03 10:28
DarkMarine9-Oct-03 10:28 

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.