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 Mike Lewis 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. mwr412

    How do I launch a doc/view class from another doc/view class?

    I have a database app using MDI. I have registered a MDI template in the initinstance of the app class. I can place an opiton to activate the doc/view class on the mainframe men bar and run the new doc/view, however, what I need to do is run it from a dialog (this dialog actually contains a...
  2. mwr412

    How do I change Views in a Splitter Window/Frame

    I have a Splitter Frame defined with 1 row and 2 columns. How do I change views within one of the panes? Where do I process messages within the frame class or the view class??
  3. mwr412

    ADO & VC++ 5.0 - Is there a problem???

    I have been trying to use ADO with Visual C++ verison 5.0 It get all kinds of erros when I comple example programs from various soruces... Does ADO not work with VC++ 5.0. Can anyone offer any insight into what my be going on...
  4. mwr412

    Is there a problem with ADO using VC++ 5.0???

    I have been trying to interface to a database using ADO for the past week or so...I get a variety of erros..and I followed speciic examples in several different tests. Can anyone answer conclusivly the following question... "Does ADO not work with Visual C++ version 5.0 (Learning...
  5. mwr412

    Problem with my first ADO project - HELP!!!

    I followed the instructions for creating an ADO based program from the book Teaching Yourself Visual C++ in 21 days... Here's the code I have a problem with: // MyRecordset.h: interface for the CMyRecordset class. // ////////////////////////////////////////////////////////////////////// #if...
  6. mwr412

    What DB manager should I use to desing a DB applicaiton???

    Forgive my lack of knowledge with RDBMS's. I have used a proprietary database/file system for 15 years...all written in assembly for my DOS based app. I should have converted my software to windows 5 years ago so now I am playing catchup trying to learn VC++ and about RDBMS's at the same time...
  7. mwr412

    Copy classes from one project to another ???

    That did the trick - thanks!
  8. mwr412

    Multiple SDII apps - How do I brigh them together into one app

    Thanks, This was exactly were I was headed. I had figured out part of this but you just filled in the blanks.
  9. mwr412

    output doesn't display #

    Ok, I'am not going to writE the code for you but here's the basic procedure to output any numeric value as a numeral(s). 1. save your value in a register, EAX for example. 2. Define a array to hold characters which will be your value. Each char of the array is 1 digit of the value you want...
  10. mwr412

    What DB manager should I use to desing a DB applicaiton???

    Here's the short overview. I am writting a rather complex accounting application which will consist of at least 20 or so different databases, (customers, products, employees, etc). Some of these 'files' will ultimalty be required to hold up to 100,000+ records. I am using VC++ to write the...
  11. mwr412

    Copy classes from one project to another ???

    I copied 3 classes from one project to another. And my classes do not show up in Class Wizard. Here's what I did specifically... 1. I copied the .ccp & .h files for the 3 classes from one project directory to another. 2. I then when to Project, Add to Proeject, Files... and inserted the 6...
  12. mwr412

    How to use the serial ports?

    Ditto...I'd like to answer to this one myself??
  13. mwr412

    Employment

    Rob, I am 42, I have been programming for 20+ years and own my own (very small) software company. I have 2 year sof formal education in computer science. Contact me at mwrobbins@charter.net as I would prefer not to have this conversation over an open forum. Mike R.
  14. mwr412

    Copy classes from one project to another ???

    I copied several classes from one project to another and incorporated them into the new project. Everything works fine exceopt the new classes I added to the 2nd project DO NOT show up in class wizard! What did I do wrong, or what do I need to do???
  15. mwr412

    Multiple SDII apps - How do I brigh them together into one app

    I was beginning to suspect that MDI was the solution as welll, but, in this case 'what you don't know' will hurt you!!! I started from scratch with a new framework based on MDI. I added a second View, Document, and Recordset class. Everything looks good and is basically working as I expect...
  16. mwr412

    Multiple SDII apps - How do I brigh them together into one app

    I have programmed several SDI apps each with a document/view and CRecordset class. These apps all interface to an Access database using ODBC. My question, how can I integrate all thses funcitons into one app which can call the specific doc/view/recordset from a menu option for each. I have...
  17. mwr412

    Activating a second view in a SDI app

    Here's what I've done. I added a 2nd CDocument class, a CFormView class and a CRecordset class in addtion to the Document and View classes created initially by Class Wiz. I created a dialog to be used by the CFormView. Here's what I want to do. When the user selected an option from the menu...
  18. mwr412

    CRecordset added into a project - I get erros

    Yes, afxdb.h was the solution...now this brings up a question...since I used Class Wizard to insert the CRecordset class way did it [Class Wizzard] not add this header file for itself...Is the answer to this burried deep inside the bowels of Microsoft???? I have run into several similar...
  19. mwr412

    CRecordset added into a project - I get erros

    I inserted the follwing code into my project using class wizard, I get 97 erros when it compiles, starting with: F:\Mike\Ams7\MainMenu\RecordSetAR.h(14) : error C2504: 'CRecordset' : base class undefined The CCP file: // RecordSetAR.cpp : implementation file // #include "stdafx.h&quot...
  20. mwr412

    Linking multiple SDI apps from one common app

    Yes, you are correct...I do want to control when and where the using can navigate to...in fact I have considered the use of a tab structure as you outlined. I have the entire application designed, (down to the look of each maintenance form) on paper. I have began codeing some of the...

Part and Inventory Search

Back
Top