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

    Microsoft Works

    I think the problem is that support to Works database format has been discontinued in either ODBC drivers and even in Ms-Office standard file operations. It seems that all existing Works databases have now to be converted to Access format.
  2. cisotta

    Microsoft Works

    I'm not so expert about these data access tecniques, just tried DAO (Data Access Object) that allowed me to open a MS-Access database directly from application without setting up a driver interface inside Windows. Now I'm going to build an application that should read a MS-Works wdb database...
  3. cisotta

    Microsoft Works

    Actually I would like to access the wdb file directly (as with DAO), without setting up a Windows engine that controls the database and make data available through ODBC connection (this is what I have understood about ODBC). Isn't ADO like this?
  4. cisotta

    Microsoft Works

    Does anyone know how to access directly Microsoft Works database files (*.wdb)? I don't think DAO will help, and would like to avoid using a ODBC server... thanks francesco
  5. cisotta

    creating CBitmap from byte values

    I'm trying to create a 256 graylevel CBitmap object, having the pixel values retrieved from a BYTE array. I think I have to setup a BITMAPINFO structure, define the palette and then allocate the CBitmap object and set the bit values, but I can't manage with the palette definition stuff. This is...
  6. cisotta

    controls not displayed in dialog

    I think I'm already doing the processing in a separate process. Please look at this case: I show a splash screen with an AVI animation, and then create the process that will run an executable. The splash will be destroyed when the separate process is done. -->Anyway the splash dialog is never...
  7. cisotta

    class memory allocation error

    I'm very sorry to have bothered you, the error was caused by a silly variable address storing. The dialog app design had set these two lines aligned to left: CScenaDlg dlg; extern CScenaDlg *pScenaWnd; pScenaWnd = &dlg; m_pMainWnd = &dlg; I have added the two indented lines in...
  8. cisotta

    class memory allocation error

    I'm struggling with this problem: A class that I've built has 3 member variables, 13 variables that are associated with dialog controls and 13 member functions. Starting from this point, if I try to add another member variable, of whatever type, with whatever name, it cause an error message when...
  9. cisotta

    controls not displayed in dialog

    I have included in my application a dialog class that displays a window with a CProgressCtrl control and a Cancel button during a heavy process. The problem is that the button and any CStatic objects (text...) put on the dialog are not displayed during the data processing, but are displayed...

Part and Inventory Search

Back
Top