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 derfloh 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!!!

    ...F:\Mike\AMS_XP\DbAdo\Debug/msado15.tli(293) : error C2664: '_com_issue_errorex' : cannot convert parameter 2 from 'struct ADODB::_Connection *const ' to 'struct IUnknown *' F:\Mike\AMS_XP\DbAdo\Debug/msado15.tli(481) : error C2664: '_com_issue_errorex' : cannot convert parameter 2 from...
  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

    ...application's document templates. Document templates // serve as the connection between documents, frame windows and views. CMultiDocTemplate* pDocTemplate; pDocTemplate = new CMultiDocTemplate( IDR_SYSTEMTYPE, RUNTIME_CLASS(CSystemManagerDoc), RUNTIME_CLASS(CChildFrame)...
  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

    ...And, yes, I included the header file in the compile or else I would have received errors. void CMainFrame::SelectView(UINT ViewID) { CView* pOldActiveView = NULL; pOldActiveView = (CView*)GetActiveView(); // get the current view // get pointer to new view if it exists // if it does...
  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

    ...// CRecordSetAR IMPLEMENT_DYNAMIC(CRecordSetAR, CRecordset) CRecordSetAR::CRecordSetAR(CDatabase* pdb) : CRecordset(pdb) { //{{AFX_FIELD_INIT(CRecordSetAR) m_RECORD_NUMB = 0; m_TYPE = _T(""); m_RECORD_STATUS = _T(""); m_PRINT_STATUS = _T("")...
  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