Click here to Skip to main content
15,921,577 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: CobList Error deleting last element !!!- HELP ME Pin
Jack Puppy22-Aug-05 0:57
Jack Puppy22-Aug-05 0:57 
GeneralRe: CobList Error deleting last element !!!- HELP ME Pin
dharani22-Aug-05 1:49
dharani22-Aug-05 1:49 
Generalreading a data file n a specific format Pin
a_david12321-Aug-05 23:41
a_david12321-Aug-05 23:41 
GeneralRe: reading a data file n a specific format Pin
toxcct22-Aug-05 0:04
toxcct22-Aug-05 0:04 
GeneralRe: reading a data file n a specific format Pin
David Crow22-Aug-05 5:01
David Crow22-Aug-05 5:01 
GeneralRe: reading a data file n a specific format Pin
toxcct22-Aug-05 5:57
toxcct22-Aug-05 5:57 
QuestionCan anyone help me ~please~~~!! Pin
ebinaini21-Aug-05 23:31
ebinaini21-Aug-05 23:31 
AnswerRe: Can anyone help me ~please~~~!! Pin
Aamir Butt21-Aug-05 23:46
Aamir Butt21-Aug-05 23:46 
From the compiler message: There is something wrong with = overloaded operator of CStringList. This means that there is no overloaded operator = for CStringList hence you cannot assign one List to another like you did. You will have to use some alternative method to do this like copying all the elements of one list to the other in a loop.

e.g., something like:

for(int i=0; i<str.list.GetCount();i++)
{
this->list.AddTail(str.list.GetAt(i));
}

<Font size = 1 color = red>
Steve Mayfield: "Coding in VB is like riding a tricycle...once you figured out how to peddle, its really hard to fall off."
</i></Font>
<a href='http://www.codeproject.com/script/Articles/list_articles.asp?userid=163403'> My Articles</a>

AnswerRe: Can anyone help me ~please~~~!! Pin
toxcct22-Aug-05 0:13
toxcct22-Aug-05 0:13 
Generalcustom border Pin
Nishad S21-Aug-05 23:16
Nishad S21-Aug-05 23:16 
Questioncan anyone help me.... please Pin
moodsey21121-Aug-05 22:55
moodsey21121-Aug-05 22:55 
AnswerRe: can anyone help me.... please Pin
toxcct21-Aug-05 23:00
toxcct21-Aug-05 23:00 
GeneralRe: can anyone help me.... please Pin
moodsey21121-Aug-05 23:24
moodsey21121-Aug-05 23:24 
GeneralRe: can anyone help me.... please Pin
toxcct22-Aug-05 0:10
toxcct22-Aug-05 0:10 
GeneralRe: can anyone help me.... please Pin
moodsey21122-Aug-05 14:59
moodsey21122-Aug-05 14:59 
GeneralRe: can anyone help me.... please Pin
Anonymous22-Aug-05 0:12
Anonymous22-Aug-05 0:12 
GeneralRe: can anyone help me.... please Pin
moodsey21122-Aug-05 15:09
moodsey21122-Aug-05 15:09 
GeneralRe: can anyone help me.... please Pin
Rage22-Aug-05 1:42
professionalRage22-Aug-05 1:42 
GeneralRe: can anyone help me.... please Pin
moodsey21122-Aug-05 15:19
moodsey21122-Aug-05 15:19 
AnswerRe: can anyone help me.... please Pin
Trollslayer22-Aug-05 3:16
mentorTrollslayer22-Aug-05 3:16 
GeneralRe: can anyone help me.... please Pin
moodsey21122-Aug-05 17:45
moodsey21122-Aug-05 17:45 
AnswerRe: can anyone help me.... please Pin
MailtoGops23-Aug-05 5:38
MailtoGops23-Aug-05 5:38 
GeneralRe: can anyone help me.... please Pin
moodse21124-Aug-05 0:19
sussmoodse21124-Aug-05 0:19 
GeneralRe: can anyone help me.... please Pin
moodsey211124-Aug-05 15:11
sussmoodsey211124-Aug-05 15:11 
GeneralRe: can anyone help me.... please Pin
moodsey21125-Aug-05 23:54
moodsey21125-Aug-05 23:54 

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.