Click here to Skip to main content
15,893,594 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Client Area not repainted after restore from minimization Pin
Waldermort8-Apr-06 8:14
Waldermort8-Apr-06 8:14 
GeneralRe: Client Area not repainted after restore from minimization Pin
naal118-Apr-06 9:16
naal118-Apr-06 9:16 
AnswerRe: Client Area not repainted after restore from minimization (still not solved) Pin
Iain Clarke, Warrior Programmer8-Apr-06 13:03
Iain Clarke, Warrior Programmer8-Apr-06 13:03 
GeneralRe: Client Area not repainted after restore from minimization (still not solved) Pin
naal118-Apr-06 21:45
naal118-Apr-06 21:45 
AnswerRe: Client Area not repainted after restore from minimization (still not solved) Pin
naal1113-Apr-06 6:13
naal1113-Apr-06 6:13 
QuestionBitmap transfer over socket Pin
Identity Undisclosed8-Apr-06 6:20
Identity Undisclosed8-Apr-06 6:20 
AnswerRe: Bitmap transfer over socket Pin
includeh108-Apr-06 6:55
includeh108-Apr-06 6:55 
AnswerRe: Bitmap transfer over socket Pin
El Corazon8-Apr-06 8:37
El Corazon8-Apr-06 8:37 
Identity Undisclosed wrote:
Also can someone please tel me is it the correct method for transfering a bitmap
over socket. or theres a better/correct method.


depends on the size of the image. You can send a single image as a raw packet, but you have to remember not to exceed the maximum packet size for your socket library. Any socket based packet is divided into MTU (usually 1500) byte sized packets and delivered one at a time. In UDP if all packets are received then the receiver gets the full sized packet, if any one is missing the packet is ignored (UDP is non-guarenteed delivery), TCP will exchange and verify every piece one at a time, when all are verified the packet is delivered (or connection times out if it takes too long).

There is no "correct way" there is only each programmer's preferred way, which is often application based. If you are sending video frames, you may not care about reliable transmission, just wait for the next frame.

_________________________
Asu no koto o ieba, tenjo de nezumi ga warau.
Talk about things of tomorrow and the mice in the ceiling laugh. (Japanese Proverb)
QuestionWindows Hook for global monitoring Pin
Virtek8-Apr-06 5:34
Virtek8-Apr-06 5:34 
QuestionLink Error in VS6 Pin
Waldermort8-Apr-06 4:30
Waldermort8-Apr-06 4:30 
AnswerRe: Link Error in VS6 Pin
Hamid_RT8-Apr-06 6:00
Hamid_RT8-Apr-06 6:00 
GeneralRe: Link Error in VS6 Pin
Waldermort8-Apr-06 7:03
Waldermort8-Apr-06 7:03 
GeneralRe: Link Error in VS6 Pin
Waldermort8-Apr-06 7:06
Waldermort8-Apr-06 7:06 
GeneralRe: Link Error in VS6 Pin
Hamid_RT8-Apr-06 7:37
Hamid_RT8-Apr-06 7:37 
GeneralRe: Link Error in VS6 Pin
Waldermort8-Apr-06 8:27
Waldermort8-Apr-06 8:27 
GeneralRe: Link Error in VS6 Pin
Hamid_RT8-Apr-06 9:23
Hamid_RT8-Apr-06 9:23 
AnswerRe: Link Error in VS6 Pin
Gary R. Wheeler8-Apr-06 8:36
Gary R. Wheeler8-Apr-06 8:36 
GeneralRe: Link Error in VS6 Pin
Waldermort8-Apr-06 20:20
Waldermort8-Apr-06 20:20 
AnswerRe: Link Error in VS6 Pin
Roland Pibinger8-Apr-06 8:43
Roland Pibinger8-Apr-06 8:43 
Questiontile view in listview Pin
fajaronly8-Apr-06 3:59
fajaronly8-Apr-06 3:59 
AnswerRe: tile view in listview Pin
includeh108-Apr-06 7:55
includeh108-Apr-06 7:55 
GeneralRe: tile view in listview Pin
fajaronly8-Apr-06 8:13
fajaronly8-Apr-06 8:13 
Questionabout VSS Pin
FlyWithYou8-Apr-06 3:07
FlyWithYou8-Apr-06 3:07 
AnswerRe: about VSS Pin
Waldermort8-Apr-06 4:11
Waldermort8-Apr-06 4:11 
GeneralRe: about VSS Pin
FlyWithYou8-Apr-06 5:52
FlyWithYou8-Apr-06 5:52 

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.