Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

NMSTR Multiple Transfer

Status
Not open for further replies.

MSXBR

Programmer
Jul 26, 2002
4
BR
As on Builder 5 fastnet/stream example, is it possible receive 1 picture from N computers to one at once or the only way is to receive one by one?
 
are you familiar with multithreading? either that, or more simpler, add a few different components each with a different port and you can get multiple pictures at once like that. just make sure you use different ports. and then you'll have to add as many clients as servers and set those ports each to match one of the servers. Cyprus
 
Is there some way to create and destroy components on runt time?
Tanks.

MSX-BR
 
TComponent * mycomponent = new TComponent(parent);
mycomponent->Parent = parent;

Replace TComponent with the class name of the component you wish to create and replace "parent" with the form or the panel, etc that you want the component in.
Make sure you put that "mycomponent->Parent = " in otherwise your component could have problems. Cyprus
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top