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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. KernelObject

    Devp with geo-distributed teams

    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...
  2. KernelObject

    Intelligent Software Agent

    u wanna discuss windows programming/IE/software agents/ ??? /Srikanth Asked clerk for self-help section. “That will defeat purpose.”
  3. KernelObject

    Class diagram

    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...
  4. KernelObject

    Using Microsoft C++ 6.0 for DOS based program??

    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...
  5. KernelObject

    Computer restarts upon execution... but only sometimes.

    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...
  6. KernelObject

    PCMCIA card on laptop

    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?
  7. KernelObject

    Modality for Windows in Another Process (Win2K)

    Sounds logical. Can u elaborate a bit more, Ion/Milby /Srikanth What happens if you’re scared half to death twice?
  8. KernelObject

    Writing, ediiting from and to a file

    whats the problem? /Srikanth What happens if you’re scared half to death twice?
  9. KernelObject

    Redistributing MFC apps

    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...
  10. KernelObject

    CSocket

    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...
  11. KernelObject

    Hungarian Notation

    Skute, Please make FAQs out of these instead of posting in the question forum. /Srikanth What happens if you’re scared half to death twice?
  12. KernelObject

    Building a .h file?

    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?
  13. KernelObject

    Building a .h file?

    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?
  14. KernelObject

    Is it possible to restart my application from within my application?

    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?
  15. KernelObject

    Which is the simplest way to close an application?

    I guess you can't unless you own the app to be terminated. do you? /Srikanth What happens if you’re scared half to death twice?
  16. KernelObject

    Which is the simplest way to close an application?

    hmm i replied before u put the second post ;) /Srikanth What happens if you’re scared half to death twice?
  17. KernelObject

    Which is the simplest way to close an application?

    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?
  18. KernelObject

    C++ EXPLAINED - NEW PROGRAMMER

    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?
  19. KernelObject

    Hi all, Was searching around for

    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?
  20. KernelObject

    P2P file sharing - mfc

    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...

Part and Inventory Search

Back
Top