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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by stotzc001

  1. stotzc001

    Clearing form with a Cancel button

    Private Sub Closeform_Click() Hamzagm, Place a button control on your form then right click on it and select build event. Cut and paste the following code: ______ On Error GoTo Err_closeform_Click DoCmd.DoMenuItem acFormBar, acEditMenu,acUndo, ,; acMenuVer70 DoCmd.Close...
  2. stotzc001

    Can't Delete Corrupt Database

    Swaggel1, I could be that you do not have the property security permissions to delete the file. That is why you are getting the access is denied error. Talk to your IT folks about deleting the file. They should have full admin rights to delete it. Chuck
  3. stotzc001

    Form with a subform

    Datathumper, Make isonumber either a primary key in both tables or set the index for no duplicates then make sure you have a 1 for 1 relationship. That should solve it for you. Chuck
  4. stotzc001

    closing database question

    Sid, I'm a little confused on the locking issue. I thought you just wanted to restrict user input for a given period of time. What it sounds like you want to do is take the database at a given point in time and save it to a location, then allow users to start inputing data in a fresh database...
  5. stotzc001

    closing database question

    Sid, The way I see it, you have 2 issues. The fisrt being user access. The only trouble with copying the database to another location is that someone could log on to the database in the original location and enter data. A better option would be to open the database in exclusive mode. The...
  6. stotzc001

    Legal Issues?

    There is nothing wrong with selling an workbook that uses VBA. What you are really doing is charging for your time that was used in creating and coding the workbook. The only legal issues is that you used a licensed copy of excel when you created the workbook. Also, like VBAjedi stated above...
  7. stotzc001

    Row Level Tracking

    Does anyone know what "Row Level Tracking" is under table properties? When would you want to turn this feature on?
  8. stotzc001

    Copy a Database Structure Only

    Thats what I was looking for. Thanks and enjoy the star. Chuck
  9. stotzc001

    Fill an empty table with values

    Works like a champ. Enjoy the star & thanks.
  10. stotzc001

    Copy a Database Structure Only

    I won't be around to do the carryover so I want it to be as transparent as possible to the end user.
  11. stotzc001

    Copy a Database Structure Only

    I guess I needed to be a little more clear on what I wanted to do. I need to copy all the tables in my database (structure only), queries, reports, and macro's. Any ideas?
  12. stotzc001

    Fill an empty table with values

    I have a database that works on a fiscal year basis. At the end of each fiscal year I close out the database and transfer any carryover data to a new database for the next fiscal year. One table I have in the database tracks data within the FY on a daily basis. It has 365 records starting...
  13. stotzc001

    Copy a Database Structure Only

    I have a database that needs to be closed out on a fiscal year basis (FY2004.mdb). What I want to do is create a function that will copy my database (structure only) to a new file called FY2005.mdb Once that is complete I can fill the new database with the information that is carried over...
  14. stotzc001

    Compress and Repair Function

    Had to make one adjustment, but it works. Thanks for your help and enjoy the star. Function DoCompression() SendKeys ("%{T}DC") End Function
  15. stotzc001

    Compress and Repair Function

    Is it possible to put a button on a form that would force my access 2000 database to complete a compress and repair? I know I can set access to perform this option when the database closes, but I dont want it to run everytime, and I really dont want to have to explain to people at work how to...

Part and Inventory Search

Back
Top