Click here to Skip to main content
15,921,467 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Compile a project in Unicode Pin
Christian Graus22-Mar-07 8:00
protectorChristian Graus22-Mar-07 8:00 
GeneralRe: Compile a project in Unicode Pin
DanYELL22-Mar-07 9:50
DanYELL22-Mar-07 9:50 
GeneralRe: Compile a project in Unicode Pin
John R. Shaw22-Mar-07 22:39
John R. Shaw22-Mar-07 22:39 
Questiondifference between CSocket class and window socket Pin
neha.agarwal2722-Mar-07 7:21
neha.agarwal2722-Mar-07 7:21 
AnswerRe: difference between CSocket class and window socket Pin
David Crow22-Mar-07 7:22
David Crow22-Mar-07 7:22 
QuestionAbstract Class, Socket Programming, JPEG in VC6 Pin
Andy Rama22-Mar-07 7:10
Andy Rama22-Mar-07 7:10 
AnswerRe: Abstract Class, Socket Programming, JPEG in VC6 Pin
Christian Graus22-Mar-07 7:14
protectorChristian Graus22-Mar-07 7:14 
AnswerRe: Abstract Class, Socket Programming, JPEG in VC6 Pin
Mark Salsbery22-Mar-07 7:23
Mark Salsbery22-Mar-07 7:23 
1) An abstract class has at least one pure virtual function. That means that an object can't be
created of that class' type. It can only be used as a base class. This defines virtual methods
for a class heirarchy while forcing derived class(es) to provide an implementation. I guess
one advantage is that using a pointer/reference to an abstract type, you are assured that any pure
virtual functions have a derived class implementation.

2) connect() when used on a UDP socket just sets the default destination address so if you
use send(), the datagram will be sent to the "connected" address. If you don't use connect then
you have to use sendto() to send a datagram. If you do use connect() then you can use send()
and/or sendto().

3) The JPEG compressed data needs to be uncompressed to get pixel data suitable for displaying.



"If you can dodge a wrench, you can dodge a ball."

AnswerRe: Abstract Class, Socket Programming, JPEG in VC6 Pin
led mike22-Mar-07 8:18
led mike22-Mar-07 8:18 
JokeRe: Abstract Class, Socket Programming, JPEG in VC6 Pin
Mark Salsbery22-Mar-07 9:19
Mark Salsbery22-Mar-07 9:19 
AnswerRe: Abstract Class, Socket Programming, JPEG in VC6 Pin
DLChambers23-Mar-07 16:27
DLChambers23-Mar-07 16:27 
QuestionIf Unix is on the server and client is windows Pin
prithaa22-Mar-07 6:52
prithaa22-Mar-07 6:52 
AnswerRe: If Unix is on the server and client is windows Pin
David Crow22-Mar-07 6:58
David Crow22-Mar-07 6:58 
JokeRe: If Unix is on the server and client is windows Pin
toxcct22-Mar-07 7:17
toxcct22-Mar-07 7:17 
GeneralRe: If Unix is on the server and client is windows Pin
prithaa22-Mar-07 8:19
prithaa22-Mar-07 8:19 
GeneralRe: If Unix is on the server and client is windows Pin
toxcct22-Mar-07 8:22
toxcct22-Mar-07 8:22 
GeneralRe: If Unix is on the server and client is windows Pin
prithaa22-Mar-07 8:44
prithaa22-Mar-07 8:44 
QuestionRe: If Unix is on the server and client is windows Pin
David Crow22-Mar-07 8:45
David Crow22-Mar-07 8:45 
GeneralRe: If Unix is on the server and client is windows Pin
David Crow22-Mar-07 8:44
David Crow22-Mar-07 8:44 
GeneralRe: If Unix is on the server and client is windows Pin
prithaa22-Mar-07 9:18
prithaa22-Mar-07 9:18 
GeneralRe: If Unix is on the server and client is windows Pin
David Crow22-Mar-07 9:29
David Crow22-Mar-07 9:29 
GeneralRe: If Unix is on the server and client is windows Pin
prithaa22-Mar-07 23:32
prithaa22-Mar-07 23:32 
QuestionMenu problem. Pin
david bagaturia22-Mar-07 6:21
david bagaturia22-Mar-07 6:21 
AnswerRe: Menu problem. Pin
toxcct22-Mar-07 6:42
toxcct22-Mar-07 6:42 
GeneralRe: Menu problem. Pin
david bagaturia22-Mar-07 19:26
david bagaturia22-Mar-07 19:26 

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.