Click here to Skip to main content
15,897,371 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Where can I get 'dxerr8.h'? Pin
Mike Dimmick6-Nov-03 2:36
Mike Dimmick6-Nov-03 2:36 
AnswerRe: Where can I get 'dxerr8.h'? Pin
ZoogieZork6-Nov-03 3:30
ZoogieZork6-Nov-03 3:30 
GeneralRe: Where can I get 'dxerr8.h'? Pin
knokke6-Nov-03 23:07
knokke6-Nov-03 23:07 
Questionhow to write a com which will be called in asp using vc++? Pin
zhangxinghai6-Nov-03 2:05
zhangxinghai6-Nov-03 2:05 
AnswerRe: how to write a com which will be called in asp using vc++? Pin
valikac6-Nov-03 5:41
valikac6-Nov-03 5:41 
GeneralMulticast in c++ Pin
styve6-Nov-03 0:03
styve6-Nov-03 0:03 
GeneralRe: Multicast in c++ Pin
Giles6-Nov-03 0:39
Giles6-Nov-03 0:39 
GeneralRe: Multicast in c++ Pin
Igor Proskuriakov6-Nov-03 1:11
Igor Proskuriakov6-Nov-03 1:11 
Code to Join:
<br />
struct ip_mreq mreq;<br />
// mreq is the ip_mreqstructure<br />
{<br />
  struct in_addr imr_multiaddr;  //The multicast group to join <br />
  struct in_addr imr_interface;  //The interface to join on<br />
}<br />
<br />
#define RECV_IP_ADDR  "225.6.7.8" // An arbitrary multicast address<br />
<br />
mreq.imr_multiaddr.s_addr = inet_addr(RECV_IP_ADDR);<br />
mreq.imr_interface.s_addr = INADDR_ANY;<br />
err = setsockopt(<br />
     sock, <br />
     IPPROTO_IP,<br />
     IP_ADD_MEMBERSHIP,<br />
     (char*)&mreq, <br />
     sizeof(mreq));<br />
<br />



Igor Proskuriakov
Generalimplementation Pin
Anonymous5-Nov-03 23:38
Anonymous5-Nov-03 23:38 
GeneralRe: implementation Pin
Mike Beckerleg6-Nov-03 4:56
Mike Beckerleg6-Nov-03 4:56 
QuestionHow do I use a COM component in Java? Pin
melwyn5-Nov-03 23:34
melwyn5-Nov-03 23:34 
AnswerRe: How do I use a COM component in Java? Pin
antlers6-Nov-03 10:33
antlers6-Nov-03 10:33 
GeneralRe: How do I use a COM component in Java? Pin
melwyn6-Nov-03 20:29
melwyn6-Nov-03 20:29 
GeneralRe: How do I use a COM component in Java? Pin
antlers7-Nov-03 12:06
antlers7-Nov-03 12:06 
QuestionWait for program to terminate? Pin
Dominik Reichl5-Nov-03 23:19
Dominik Reichl5-Nov-03 23:19 
AnswerRe: Wait for program to terminate? Pin
Joaquín M López Muñoz6-Nov-03 0:07
Joaquín M López Muñoz6-Nov-03 0:07 
GeneralRe: Wait for program to terminate? Pin
Dominik Reichl6-Nov-03 0:49
Dominik Reichl6-Nov-03 0:49 
GeneralRe: Wait for program to terminate? Pin
Joaquín M López Muñoz6-Nov-03 0:56
Joaquín M López Muñoz6-Nov-03 0:56 
AnswerRe: Wait for program to terminate? Pin
Brian Shifrin6-Nov-03 3:51
Brian Shifrin6-Nov-03 3:51 
Generalimplementation and interface Pin
Anonymous5-Nov-03 22:47
Anonymous5-Nov-03 22:47 
GeneralRe: implementation and interface Pin
Joaquín M López Muñoz6-Nov-03 0:14
Joaquín M López Muñoz6-Nov-03 0:14 
GeneralRe: implementation and interface Pin
valikac6-Nov-03 5:44
valikac6-Nov-03 5:44 
GeneralCustomDraw in Listctrl Pin
super5-Nov-03 22:25
professionalsuper5-Nov-03 22:25 
GeneralRe: CustomDraw in Listctrl Pin
Dominik Reichl5-Nov-03 23:23
Dominik Reichl5-Nov-03 23:23 
GeneralCreating forms for outlook with C++ Pin
Anonymous5-Nov-03 22:04
Anonymous5-Nov-03 22:04 

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.