Click here to Skip to main content
15,915,603 members
Home / Discussions / Article Writing
   

Article Writing

 
GeneralRe: Programming Problem Pin
mvworld14-May-01 5:34
mvworld14-May-01 5:34 
GeneralRe: Programming Problem Pin
Thomas Freudenberg14-May-01 5:40
Thomas Freudenberg14-May-01 5:40 
GeneralRe: Programming Problem Pin
mvworld14-May-01 5:47
mvworld14-May-01 5:47 
GeneralRe: Programming Problem Pin
Thomas Freudenberg14-May-01 6:07
Thomas Freudenberg14-May-01 6:07 
GeneralNot difficult. Pin
16-May-01 10:47
suss16-May-01 10:47 
GeneralRe: Programming Problem Pin
David Fleming17-May-01 23:02
David Fleming17-May-01 23:02 
GeneralRe: Programming Problem Pin
mvworld17-May-01 23:15
mvworld17-May-01 23:15 
GeneralRe: Programming Problem Pin
19-Jun-01 16:15
suss19-Jun-01 16:15 
GeneralRe: Programming Problem Pin
mvworld26-Jun-01 4:20
mvworld26-Jun-01 4:20 
GeneralRe: Programming Problem Pin
Malcolm McMahon26-Jun-01 3:09
Malcolm McMahon26-Jun-01 3:09 
Generalvector, deque class template Pin
Heidyen13-May-01 16:31
Heidyen13-May-01 16:31 
GeneralRe: vector, deque class template Pin
Christian Graus13-May-01 17:59
protectorChristian Graus13-May-01 17:59 
GeneralRe: vector, deque class template Pin
Clinton James16-May-01 9:01
Clinton James16-May-01 9:01 
GeneralCreate a file name with date&time Pin
12-May-01 14:30
suss12-May-01 14:30 
GeneralRe: Create a file name with date&time Pin
Rick York12-May-01 16:42
mveRick York12-May-01 16:42 
GeneralRe: Create a file name with date&time Pin
14-May-01 14:15
suss14-May-01 14:15 
QuestionXML on Client Side??? Pin
12-May-01 4:37
suss12-May-01 4:37 
GeneralLooking for Capable Programmers... Pin
10-May-01 16:19
suss10-May-01 16:19 
QuestionTabbed Toolbar - How? Pin
10-May-01 8:46
suss10-May-01 8:46 
QuestionHow to access ActiveX control in another thread Pin
9-May-01 23:17
suss9-May-01 23:17 
QuestionHow to access ActiveX control in another thread Pin
9-May-01 23:16
suss9-May-01 23:16 
GeneralScrolling the window content Pin
Mangesh Sardesai8-May-01 21:34
Mangesh Sardesai8-May-01 21:34 
Generalaudio codecs using vc++ Pin
8-May-01 21:01
suss8-May-01 21:01 
GeneralCallBack function Pin
chandu8-May-01 3:57
chandu8-May-01 3:57 
GeneralRe: CallBack function Pin
Michael S. Scherotter12-May-01 13:01
Michael S. Scherotter12-May-01 13:01 
// The callback function type
typedef void StepProc();

// the callback function
void Step()
{
cout << ".";
}

void DoSteps(StepProc* pProc)
{
for (int i = 0; i < 10; i++)
{
(*pProc)();
}
}

void TestCallback()
{
//Call DoSteps() with ::Step as the argument
::DoSteps(::Step);
}



Michael S. Scherotter
Lead Software Architect
Tartus Development, Inc.

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.