Has anybody here worked/managed in a development model with 2 (or more) teams in wide geographically disjoint places.. like (US) + (China or India)?
In particular,
1. what source control model was used?
2. What kind of development was being done?
3. How tightly integreted was the work? (were...
Centrino,
See if this helps:
FIrst of all, try to look at it as static models and dynamic models.
1. Use Class diagrams etc, to model just the classes and hierarchies in your problem domain, maybe just modelling the nouns of the problem statement. At a later stage in the design, you can...
Dear Elena,
Turbo C++ version 1.01 (ship date 1991) is available for free download from Borland.
http://community.borland.com/article/0,1410,21751,00.html
You might consider downloading it from the link above. It has tips on how to use it too.
goodluck!
/Srikanth
Asked clerk for self-help...
Keyboard hook in simple terms is like a hot-key that has been programmed to restart your computer. This will potentially work globally.
To verify if this is true, see if ur computer restarts even when u compile through the MENU option.
That is, dont hit Ctrl+f5. Instead, click on "Build...
Just curious, do you get a file system on your PCMCIA Flash Card?
I mean, is it like a secondary storage device (like a CD ROM drive, optical drive etc)?
/Srikanth
What happens if you’re scared half to death twice?
Hi timmay,
Project -> Settings -> General -> "Microsoft Foundation Classes" (drop-down box) with 2 options (static or shared/dynamic)
Alternatively, you can even set this option when u create a new application with AppWizard
goodluck
/Srikanth
What happens if you’re scared half...
1. Have initialized your application to work with Sockets? Eg:
BOOL CXyzApp::InitInstance()
{
if (!AfxSocketInit())
{
AfxMessageBox(IDP_SOCKETS_INIT_FAILED);
return FALSE;
}
...
...
}
2. If you are using win 95/98 or suchlike, check if TCP/IP is properly installed on OS...
Of course, we used to write elaborate "*.bat" (MSDOS batch files) when building apps using command line compiler.
U should very well be able to do ur stuff this way.
Thats ur solution!
/Srikanth
What happens if you’re scared half to death twice?
Ramonsky,
I understood your problem. Sadly, thats all I can say atm.
I've myself not used such a feature, nor seen anybody else use this. But would definitely be very handy.
will come back again if i find something
/Srikanth
What happens if you’re scared half to death twice?
how would you get it to compile the first time?
(I mean the exe you will loading would be itself and hence not present).
One probable solution would be to keep the reloading function in a dll(?)
/Srikanth
What happens if you’re scared half to death twice?
Use:
exit() or _exit().
Terminate the calling process after cleanup (exit) or immediately (_exit).
void exit( int status );
void _exit( int status );
include <process.h> or <stdlib.h>
eg:
exit(0);
/Srikanth
What happens if you’re scared half to death twice?
Hi Luke99,
It will definitely be worthwhile to spend 1 hour with this document:
http://www.ecst.csuchico.edu/~beej/guide/net/bgnet.pdf
If you're planning to do any socket pgmming, this is a must!
/Srikanth
What happens if you’re scared half to death twice?
Hi all,
Was searching around for a class for generating realtime updatable graphs.
(saw a zillion of them on google and picked a dozen).
Any recommendations from having actually used any?
TIA!
/Srikanth
What happens if you’re scared half to death twice?
Problem is:
U sound new to socket/thread/MDI :)
First get a sound understanding of socket programming.
http://www.ecst.csuchico.edu/~beej/guide/net/
the link gives u an article on socket programming. short & definitely enuff to get u started.
Have you attempted some simple TCP stuff earlier...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.