Friday, November 27, 2009

operator<< syntax

//IO_Form& IO_Form::operator<<(IO_Field* f){
// return IO_Form::add(f,true,false);
//}

hey can anyone help me with this?

Friday, November 20, 2009

IO_Form private > add()

i just want to see if i'm on the right track... well our group.. so can someone take a look?

int IO_Form::add(IO_Field* f, bool dynamic, bool submitter){

IO_Node *Temp = new IO_Node(f, dynamic, submitter);
if(Tail){
Tail->_next = Temp;
Temp->_prev = Tail;
Temp->_next = NULL;
Tail = Temp;
Current = Tail;
}
else{
Current = Head = Tail = Temp;
}
f->set(this);

return length();
}

Thursday, October 15, 2009

Monday, October 5, 2009

OOP344

case RIGHT_KEY: /* should stop at the end of data or maxfieldlength */
if(*curpos != fieldlen - 1){
(*curpos)++;
}
else if(/*HELP here can anyone explain to me?*/){
break;
}
else{
(*offset)++;
}
break;


can anyone explain to me? like how do i stop it

Wednesday, September 16, 2009

Week 2

this is actually my first blog of my life haha, requirement for my oop344 class. I'm sure this will be a great class :) get to learn more about C++.