Click here to Skip to main content
16,008,010 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Help on Overlapped Serial IO Pin
patk14-Dec-02 17:07
patk14-Dec-02 17:07 
GeneralRe: Help on Overlapped Serial IO Pin
work_to_live14-Dec-02 17:57
work_to_live14-Dec-02 17:57 
GeneralRe: Help on Overlapped Serial IO Pin
patk14-Dec-02 18:49
patk14-Dec-02 18:49 
GeneralRe: Help on Overlapped Serial IO Pin
work_to_live14-Dec-02 19:23
work_to_live14-Dec-02 19:23 
GeneralRe: Help on Overlapped Serial IO Pin
work_to_live14-Dec-02 20:01
work_to_live14-Dec-02 20:01 
GeneralRe: Help on Overlapped Serial IO Pin
patk15-Dec-02 2:35
patk15-Dec-02 2:35 
GeneralDeskband remove check Pin
14-Dec-02 13:33
suss14-Dec-02 13:33 
Generalprinting a linked list Pin
Anonymous14-Dec-02 12:06
Anonymous14-Dec-02 12:06 
in my program i have a linked list, which is circular and i need to print out the numbers in the list from a given number.
the number i have to print from is the third number (62) in the list (as shown below) to the end then it has to rap back around and print the first two numbers.any suggestions

92 82 62 72 99

it needs to print out

62 72 99 92 82
[code]
void ClosedList::PrintFrom(int item) const
{

NodeType* currPtr = head->backlink;
NodeType* newNodePtr = new NodeType;

newNodePtr->component = item;
newNodePtr->backlink = currPtr;
currPtr = newNodePtr;
newNodePtr = NULL;

if(!IsEmpty())
{
do
{
cout << currPtr->component << " ";
currPtr = currPtr->backlink;

}while (currPtr != head);

cout << currPtr->component << " ";
}
cout <<endl;
}
bool ClosedList::IsEmpty() const
{
return (head == NULL);
}
[/code]
GeneralRe: printing a linked list Pin
Christian Graus14-Dec-02 12:33
protectorChristian Graus14-Dec-02 12:33 
GeneralRe: printing a linked list Pin
nde_plume14-Dec-02 13:06
nde_plume14-Dec-02 13:06 
GeneralPutting a control bar inside a splitter window Pin
trimtrom14-Dec-02 11:19
trimtrom14-Dec-02 11:19 
Questionhow can i check it? Pin
imran_rafique14-Dec-02 10:22
imran_rafique14-Dec-02 10:22 
AnswerRe: how can i check it? Pin
l a u r e n14-Dec-02 11:28
l a u r e n14-Dec-02 11:28 
GeneralRe: how can i check it? Pin
Christian Graus14-Dec-02 11:48
protectorChristian Graus14-Dec-02 11:48 
GeneralRe: how can i check it? Pin
imran_rafique14-Dec-02 11:52
imran_rafique14-Dec-02 11:52 
GeneralRe: how can i check it? Pin
Christian Graus14-Dec-02 12:39
protectorChristian Graus14-Dec-02 12:39 
QuestionLogitech QuickCam SDK? Pin
devvvy14-Dec-02 8:03
devvvy14-Dec-02 8:03 
AnswerRe: Logitech QuickCam SDK? Pin
Joshua Nussbaum14-Dec-02 12:13
Joshua Nussbaum14-Dec-02 12:13 
Generali downloaded the SDK Pin
devvvy14-Dec-02 14:59
devvvy14-Dec-02 14:59 
Generalone cool feature: motion detection Pin
devvvy14-Dec-02 15:07
devvvy14-Dec-02 15:07 
GeneralRe: one cool feature: motion detection Pin
leppie14-Dec-02 21:11
leppie14-Dec-02 21:11 
GeneralCWinThread and SetThreadDesktop Pin
Nish Nishant14-Dec-02 6:50
sitebuilderNish Nishant14-Dec-02 6:50 
GeneralRe: CWinThread and SetThreadDesktop Pin
Stephane Rodriguez.14-Dec-02 23:16
Stephane Rodriguez.14-Dec-02 23:16 
GeneralRe: CWinThread and SetThreadDesktop Pin
Nish Nishant14-Dec-02 23:27
sitebuilderNish Nishant14-Dec-02 23:27 
GeneralC++: playing with constructors Pin
14-Dec-02 5:43
suss14-Dec-02 5:43 

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.