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

    TDBGrid Title drawing, C++

    Hi I'm trying to get to work sort by clicking column title in dbgrid. As sorting itself shouldn't be a problem, I'm not sure how to get these arrow icons to appear next to column title, while sorting ASC or DESC. Thx.
  2. Nikosis

    Howto change x number of found records from database at the same time

    Yes it does. I'm not looking in 3 diff fields at the same time, it's a radiobutton choice. After I hit print it opens up another window with previews, for the last check, and from that point button "ok" prints the page, and updates database hopefully, but radiobuttons are not there so I can't...
  3. Nikosis

    How can I backup ADO mdb database

    I'll look it up. Can you tell me why sometimes it creates directory instead a file.Right now I'm getting a directory named dbbackup.mdb instead a file? Thx Andy
  4. Nikosis

    How can I backup ADO mdb database

    Please disregard last question, suddenly after reinstall, progress bar works as well. Thx Andy
  5. Nikosis

    How can I backup ADO mdb database

    You were right, something was holding it. It did work out at last. It was this admin permission thing to copy a file that resides in Program files. It was kind a strenge, because I didn't get any message. Well anyway it worked out. After I reinstalled W7 even without admin permission. One...
  6. Nikosis

    How can I backup ADO mdb database

    I'll try Thanks for advice, let you know how it went. Thx Andy
  7. Nikosis

    How can I backup ADO mdb database

    In that case, whats are my options?
  8. Nikosis

    How can I backup ADO mdb database

    No It doesn't work. It works with small files only up to 651 Kb Nothing pops up, no status bars etc... I'm using windows 7, so maybe that's the problem, I found some old docs http://bcbjournal.org/articles/vol2/9806/File_operations.htm which I tried also, same result 651 Kb. Thx Andy
  9. Nikosis

    SDI vs VCL

    I'm not quite sure what is going on but I just can't create any button with png image on it, which I can do on fresh vcl form without anu problems. Images are either not there or they have black background. Can someone tell me what is wrong, what am I missing. Thx Andy
  10. Nikosis

    How can I backup ADO mdb database

    Hey it worked perfect, now I'm gonna try it with .mdb file. Thanks a lot 2ffat
  11. Nikosis

    Howto change x number of found records from database at the same time

    These are my statements SELECT * FROM Event WHERE StatusComplete='F' AND LastNameID LIKE :param ORDER BY StartDate ASC SELECT * FROM Event WHERE StatusComplete='F' AND CityID LIKE :param ORDER BY StartDate ASC SELECT * FROM Event WHERE StatusComplete='F' AND StateID LIKE :param ORDER BY...
  12. Nikosis

    How can I backup ADO mdb database

    I tried, everything compiles without errors but nothing happend, no files were copied. Here is my code #include <vcl.h> #include<shlobj.h> #include<SHELLAPI.H> #include<cstdio> #include<fstream> using namespace std; #pragma hdrstop #include "Exercise.h"...
  13. Nikosis

    How can I backup ADO mdb database

    Hi I tried to find something on the internet, but there is no much about backing up .mdb database in c++ builder. How can I accomplish such a task ? Thx Andy
  14. Nikosis

    Howto change x number of found records from database at the same time

    So far I can't get it to work, problem is that I search in 3 different fields, so it is difficult to determine what is used as a parameter to search in the database, on top of it, my search button opens up another window with preview and all kinds of format verifications, zooms, etc..., so from...
  15. Nikosis

    Howto change x number of found records from database at the same time

    Yes, I'm using .mdb ADO SQL queries. I'm gonna try that right now. Thx Andy
  16. Nikosis

    Howto change x number of found records from database at the same time

    Hello Lets say I want to print a list of friends addresses filtered by a city. So out of 100 records I've found "n" records of people living in a given city. It prints out just fine, but after that I have to go and mark checkbox as "printed" for each one of these records manually, Is there a...

Part and Inventory Search

Back
Top