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 Chris Miller 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. agrafov

    Custom toolbar control in .Net framework

    I need a "toolbar"-like control (for my "Windows.Form"-based Document Viewer application) with functionality similar to modern ("Microsoft Office", etc.) products: I want to have an ability to represent it floating over, or docked to the top of the main window; to have entry fields on it (like...
  2. agrafov

    "File I/O notifications" question

    My application (Windows service) should wait for new XML files arriving in a specified directory and process them. To do this I use notification mechanism based on "ReadDirectoryChangesW" API with "FILE_NOTIFY_CHANGE_FILE_NAME" flag. After receiving a new notification and...
  3. agrafov

    Problem using "Microsoft.Jet.OLEDB.4.0" to acces .mdb-files from C++

    >>What exactly are you trying to achieve? Well, I'm trying to do some processing of records based on one criteria and remove them based on another criteria (different, but related in some way to the first one - kind of processing/archiving). And I do not want to break it into 2 separate pieces -...
  4. agrafov

    Problem using "Microsoft.Jet.OLEDB.4.0" to acces .mdb-files from C++

    It is not relevant to call MoveFirst() before the loop because newly retrieved recordset "is automatically positioned to the beginning", so the very first MoveNext() is equivalent to MoveFirst() in this case - it's clearly said in documentation and actually is a result of real test...
  5. agrafov

    Problem using "Microsoft.Jet.OLEDB.4.0" to acces .mdb-files from C++

    When I try to access "MS Access" .mdb database using "native" Microsoft.Jet.OLEDB.4.0 provider I'm experiencing a problem with deleting of multiple records from previously retrieved recordset. Here is an example: // first, I open database in very usual way using ATL-based...
  6. agrafov

    "Microsoft.Jet.OLEDB.4.0" problem

    When I try to access "MS Access" .mdb database using "native" Microsoft.Jet.OLEDB.4.0 provider I'm experiencing a problem with deleting of multiple records from previously retrieved recordset. Here is an example: // first, I open database in very usual way using ATL-based...

Part and Inventory Search

Back
Top