Click here to Skip to main content
15,908,112 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Generalhi to everyone! newbie Pin
Guhji6-Nov-03 6:43
Guhji6-Nov-03 6:43 
GeneralRe: hi to everyone! newbie Pin
Dominik Reichl6-Nov-03 7:58
Dominik Reichl6-Nov-03 7:58 
GeneralRe: hi to everyone! newbie Pin
vhunghl6-Nov-03 17:05
vhunghl6-Nov-03 17:05 
GeneralRe: hi to everyone! newbie Pin
Dominik Reichl6-Nov-03 20:55
Dominik Reichl6-Nov-03 20:55 
GeneralRe: hi to everyone! newbie Pin
Jean Bédard6-Nov-03 10:43
Jean Bédard6-Nov-03 10:43 
GeneralRe: hi to everyone! newbie Pin
parths6-Nov-03 16:15
parths6-Nov-03 16:15 
Questionfile version manipulation? Pin
badsmonkey6-Nov-03 4:26
badsmonkey6-Nov-03 4:26 
AnswerRe: file version manipulation? Pin
valikac6-Nov-03 5:39
valikac6-Nov-03 5:39 
GeneralRe: file version manipulation? Pin
badsmonkey6-Nov-03 7:27
badsmonkey6-Nov-03 7:27 
GeneralClass/Library for connecting FTP through Proxy servers (SOCKS4, 5, HTTP) Pin
Uwe Keim6-Nov-03 3:38
sitebuilderUwe Keim6-Nov-03 3:38 
GeneralRe: Class/Library for connecting FTP through Proxy servers (SOCKS4, 5, HTTP) Pin
Niall Barr6-Nov-03 4:02
professionalNiall Barr6-Nov-03 4:02 
GeneralRe: Class/Library for connecting FTP through Proxy servers (SOCKS4, 5, HTTP) Pin
Uwe Keim6-Nov-03 4:18
sitebuilderUwe Keim6-Nov-03 4:18 
GeneralRe: Class/Library for connecting FTP through Proxy servers (SOCKS4, 5, HTTP) Pin
Uwe Keim11-Nov-03 0:31
sitebuilderUwe Keim11-Nov-03 0:31 
GeneralShutdown n/w "WIN98" computer Pin
Jackson Antony6-Nov-03 2:53
Jackson Antony6-Nov-03 2:53 
GeneralRe: Shutdown n/w "WIN98" computer Pin
Brian Shifrin6-Nov-03 3:42
Brian Shifrin6-Nov-03 3:42 
QuestionWhere can I get 'dxerr8.h'? Pin
knokke6-Nov-03 2:10
knokke6-Nov-03 2:10 
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 

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.