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

C / C++ / MFC

 
GeneralRe: Drag & Drop Pin
vgandhi5-Nov-01 11:50
vgandhi5-Nov-01 11:50 
GeneralGDI+ Pin
AJ1235-Nov-01 6:17
AJ1235-Nov-01 6:17 
GeneralRe: GDI+ Pin
Michael Dunn5-Nov-01 6:56
sitebuilderMichael Dunn5-Nov-01 6:56 
GeneralWeird problem Pin
Peter Liddle5-Nov-01 6:00
Peter Liddle5-Nov-01 6:00 
GeneralRe: Weird problem Pin
Carlos Antollini5-Nov-01 6:08
Carlos Antollini5-Nov-01 6:08 
GeneralRe: Weird problem Pin
Mukkie5-Nov-01 9:16
Mukkie5-Nov-01 9:16 
GeneralRe: Weird problem Pin
Peter Liddle5-Nov-01 9:39
Peter Liddle5-Nov-01 9:39 
GeneralRe: Weird problem Pin
Mukkie5-Nov-01 10:11
Mukkie5-Nov-01 10:11 
The second 'for' loop uses 'u' variable. But inside You are using 'i':
[code]
for(int u = 0; u < uiNumberOfCountSigners; u++)
{
m_tSignersView.InsertItem(&sCountSigners[u][0], 1, 1, hItem[dwCountSigners[i]]);

char sTest[10];
_ultoa(dwCountSigners[i] ,sTest, 10);//<---- Here, You are using i
m_tSignersView.Expand(hItem[u], TVE_EXPAND );
[/code]

maybe this is the cause of the problem?
Rest looks rather ok.
Make sure, that You initialize all variables with zero in constructor.
Furthermore, You should put into the memory watch the content of the string which is being overwriten. Go through the code and look when it changes.
GeneralRe: Weird problem Pin
Peter Liddle5-Nov-01 10:19
Peter Liddle5-Nov-01 10:19 
GeneralWindows, wndproc, mouse Pin
#realJSOP5-Nov-01 5:47
professional#realJSOP5-Nov-01 5:47 
GeneralRe: Windows, wndproc, mouse Pin
Remi Morin5-Nov-01 10:27
Remi Morin5-Nov-01 10:27 
GeneralRe: Windows, wndproc, mouse Pin
Christian Graus5-Nov-01 10:34
protectorChristian Graus5-Nov-01 10:34 
GeneralRe: Windows, wndproc, mouse Pin
#realJSOP6-Nov-01 3:04
professional#realJSOP6-Nov-01 3:04 
GeneralRe: Windows, wndproc, mouse Pin
#realJSOP6-Nov-01 3:36
professional#realJSOP6-Nov-01 3:36 
GeneralPrinting graphics with nonstandart brush Pin
5-Nov-01 5:36
suss5-Nov-01 5:36 
GeneralRe: Printing graphics with nonstandart brush Pin
Christian Graus5-Nov-01 10:36
protectorChristian Graus5-Nov-01 10:36 
GeneralPlease Help! Pin
Andrew Stampor5-Nov-01 5:33
Andrew Stampor5-Nov-01 5:33 
GeneralSTL Pin
5-Nov-01 4:58
suss5-Nov-01 4:58 
GeneralRe: STL Pin
Christian Graus5-Nov-01 10:38
protectorChristian Graus5-Nov-01 10:38 
GeneralQuestion about working HKEY_CLASS_ROOT\*\shell\ Pin
CMFC6.0VS.NETUser5-Nov-01 4:46
CMFC6.0VS.NETUser5-Nov-01 4:46 
General-- Tomasz Sowinski -- (or anyone) Pin
Rickard Andersson205-Nov-01 4:42
Rickard Andersson205-Nov-01 4:42 
GeneralRe: -- Tomasz Sowinski -- (or anyone) Pin
Fazlul Kabir5-Nov-01 5:03
Fazlul Kabir5-Nov-01 5:03 
GeneralRe: -- Tomasz Sowinski -- (or anyone) Pin
Remi Morin5-Nov-01 5:06
Remi Morin5-Nov-01 5:06 
GeneralRe: -- Tomasz Sowinski -- (or anyone) Pin
Rickard Andersson205-Nov-01 7:53
Rickard Andersson205-Nov-01 7:53 
GeneralCOleVariant ---> char * Pin
Hadi Rezaee5-Nov-01 4:07
Hadi Rezaee5-Nov-01 4: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.