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

    real time programming.

    Generally, for real time applications, you want to avoid recursion in function calls, and make the most of memory. Direct Memory Access is your best bet! Hopefully your card comes with that (it should). Real Time programming is a bit different... The closest would be game programming (consider...
  2. CoolNameDenied

    real time programming.

    Quite simply, if you don't have a Win2K driver for your board... you're sunk - neither Matlab or VC++ will be able to use the board without a driver. This is a common problem... Trust me, I know. If they want it done in 8 weeks... well, there's fast, cheap, and good... Pick two :) Good...
  3. CoolNameDenied

    MESSAGE CRACKERS

    Are you using STRICT? ------------- #define STRICT #include WINDOWS.H ------------- That may be of use... CoolNameDenied http://cnd.150m.com
  4. CoolNameDenied

    Vendor Library DLL Leaks???

    The Dialogs themselves may be the problem; don't rule them out. Are you accessing the HGLOBAL* from the new dialogs? Maybe not relevant, but curious. Question: Have you tested this in the release version? Sometimes the debugger plays a part in memory leaks, in my experience. Windows isn't...
  5. CoolNameDenied

    Need Excellent Sound

    I'd avoid WAV and go MP3... if you can. Smaller, and it filters out sounds that aren't audible to the human ear. Consider just ripping... CoolNameDenied http://cnd.150m.com
  6. CoolNameDenied

    Visual Basic vs Visual C++ in object oriented programming

    VB.Net supports OOP to the point where it isn't backward compatible (Scary)... and VB 6 will not be supported after 2008... VB.Net supports multithreading and inheritance quite well. C++ is all that and a bag of chips. :D Fast, and... fast. And you don't have to worry too much about backward...
  7. CoolNameDenied

    Create global variable to be used accross dialog boxes

    Umm... consider making a Public in your App, and declaring it in each dialog: int CMyApp::nMyGlobalInt CoolNameDenied http://cnd.150m.com
  8. CoolNameDenied

    sockets

    Kind of need more information on what the system will be doing... CoolNameDenied http://cnd.150m.com
  9. CoolNameDenied

    Help on modem

    Probably simple sockets with Visual C++/Visual Basic. CoolNameDenied http://cnd.150m.com
  10. CoolNameDenied

    real time programming.

    What do you mean by real-time? And what hardware are you using to acquire the data? I used to write and maintain test software for Inertial Navigation Units at one point... Up to a bus rate of 1 MHz. It can be done with either Visual C++ or MatLab. However, if you're interfacing with drivers...
  11. CoolNameDenied

    How to change project type?

    Never tried it. Odds are that you will have to create your own project file using the files that have been supplied - make sure you don't have MFC stuff in the files. CoolNameDenied http://cnd.150m.com
  12. CoolNameDenied

    warning C4005: 'IDC_STATIC' : macro redefinition

    yup, woe to those who change MS generated code :) Tread with caution, and a lot of coffee. CoolNameDenied http://cnd.150m.com
  13. CoolNameDenied

    Neural Networks

    I have an ANSI C++ Backpropagation simulator somewhere on my HD... Drop me an email and I'll send it to you. cnd@trini.com CoolNameDenied http://cnd.150m.com
  14. CoolNameDenied

    Connect to a Microsoft Access database in VC++

    Umm... I assume that you want to use ODBC... Though OLE is an option. It's easy - have the database registered as on your DSN, and let the wizard build your app. Inserts and deletes are passed to the ODBC driver using strings - you can use CString. This is high level. Ask if you have probs :)...
  15. CoolNameDenied

    array of records

    I think... void print_details(GOLFER player[]) should be void print_details(GOLFER player) CoolNameDenied http://cnd.150m.com
  16. CoolNameDenied

    Using CListCtrl to display icons in a dialog.

    Make sure you've got the LVS_REPORT style bit turned on if you're in Report view... Only thing I can think of. You may add columns, but they won't appear without tickling that bit. I hope that helps. CoolNameDenied http://cnd.150m.com
  17. CoolNameDenied

    Is MDI internally multithreaded?

    The MDI can supports multithreading, but I don't believe it does any in the background - instead it activates the relevant objects in the primary thread as necessary. I've never used IPC (Inter Process Communication) in an MDI for use within the MDI. Inter process communication is for...
  18. CoolNameDenied

    Common Languages

    Yup, Quake is C++ (And you can even download the source code from a lot of places, if you so desire. I have links... somewhere...) Most gaming/3d stuff is done in OpenGL/DirectX, as EoF81 points out. The distinction between the two was created by Microsoft (to the chagrin of game devs...
  19. CoolNameDenied

    Debugging Help

    Hi RawDawg - are there any obscure error codes associated with it in your build window? Kind of like C0533 (just made it up)? I have some links under Software Development that you might find useful on my site, but the real way to become a power C++ dev is.... practice. Ugh. :) I'd say that...
  20. CoolNameDenied

    Why C++ ???

    Well, the real problem with procedural code lies in creating large projects. Using objects, software is easier to maintain and reuse. There are a great many things that object oriented software is distinguished for, but the bottom line is that if it is done well, it decreases development time...

Part and Inventory Search

Back
Top