Click here to Skip to main content
15,894,539 members
Home / Discussions / Article Writing
   

Article Writing

 
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.
QuestionHow to create raw socket with UDP?? Pin
7-May-01 7:47
suss7-May-01 7:47 
AnswerRe: How to create raw socket with UDP?? Pin
Ajit Jadhav7-May-01 9:37
Ajit Jadhav7-May-01 9:37 
GeneralC database Connectivity Pin
Prashant R Karajagi7-May-01 2:04
Prashant R Karajagi7-May-01 2:04 
GeneralRe: C database Connectivity Pin
chandu8-May-01 3:54
chandu8-May-01 3:54 
GeneralLeft and top scrollbars Pin
Michael S. Scherotter5-May-01 8:45
Michael S. Scherotter5-May-01 8:45 
GeneralDrag & Drop Functionality using ATL Pin
Tushar Bhatt2-May-01 23:56
Tushar Bhatt2-May-01 23:56 
GeneralRe: Drag & Drop Functionality using ATL Pin
Erik Thompson3-May-01 7:30
sitebuilderErik Thompson3-May-01 7:30 
GeneralRe: Drag & Drop Functionality using ATL Pin
Tushar Bhatt4-May-01 21:40
Tushar Bhatt4-May-01 21:40 
GeneralRe: Drag & Drop Functionality using ATL Pin
Gogaaa4-Oct-09 21:50
Gogaaa4-Oct-09 21:50 
GeneralTo all you socket veterans out there Pin
2-May-01 23:43
suss2-May-01 23:43 
GeneralRe: To all you socket veterans out there Pin
7-May-01 10:03
suss7-May-01 10:03 
GeneralRe: To all you socket veterans out there Pin
Dark Angel17-May-01 16:33
Dark Angel17-May-01 16:33 
GeneralGUI for "NET SEND" command for win NT Pin
2-May-01 21:23
suss2-May-01 21:23 
GeneralRe: GUI for Pin
yufu10-Jun-01 21:07
yufu10-Jun-01 21:07 
QuestionHow is OnRecieve called Pin
2-May-01 21:02
suss2-May-01 21:02 
AnswerRe: How is OnRecieve called Pin
6-May-01 7:28
suss6-May-01 7:28 
GeneralFile caching; cache manager; (cache interceptation) Pin
Lukacs Sandor2-May-01 10:27
Lukacs Sandor2-May-01 10:27 

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.