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 bkrike 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 RoseV

  1. RoseV

    Export/Import in Access XP

    I run an exporting procedure that scrolls thru and sends different queries to the same file location, creating multiple worksheets within the workbook. I can also use this method to format the spreadsheets after they are created. Why can I not do this in reverse when I import the same...
  2. RoseV

    Exporting/Formatting from Access to Excel

    As always, I figured it out as soon as I wrote the post. In case this helps anyone: Dim objASht As Worksheet Dim wks As Workbook Dim Path As String Dim WksCt As Integer 'This is in a loop until all worksheets have been formatted Path = "..." WksCt = 1 Set wks = GetObject(Path) Set...
  3. RoseV

    Exporting/Formatting from Access to Excel

    If you scroll thru a recordset in a procedure, sending the same query with different criteria to the same path, Microsoft automatically creates mulitple worksheets within a single workbook. In order to format these individually, I need to run thru the format routine, and then move to the next...
  4. RoseV

    Access Database Automatically Has Password??

    No - every morning, even when you manually open the database, the password protection has been setup. I use a copy from the day before (with no password) and overwrite the offending copy. We use a software package to back up the databases every night...maybe this is causing it? {Altho, it...
  5. RoseV

    Access Database Automatically Has Password??

    I have a database that had no password protection on it. All of a sudden, every morning, there is a Microsoft password applied to it. Every time we try to open the database, it prompts us for a password (not a form with code, but the security password access has built in). I don't set this up...
  6. RoseV

    Database Security?

    Thank you guys for all your suggestions.
  7. RoseV

    Database Security?

    Interesting! I'll look into that - it sounds feasible. Thanks for the idea! I'll post back here with what I find works.
  8. RoseV

    Database Security?

    Is there anyway to put a password on the database view of a program? I know you can set a password within Access when the database opens (user's view AND programmer's). But is there anyway to put a password JUST on the (Enter+Shift)? I am creating a database for users that A) do not have a...
  9. RoseV

    Simple question

    Those properties are set as you indicated and it still does not work.
  10. RoseV

    Simple question

    Yes, those are set. Thanks.
  11. RoseV

    STUPID BACKEND!

    I have a frontend/backend setup for a database here. We have 6 users with local copies, linked to 2 shared databases. The database used to be just one database on a shared server, but in order to eliminate continuous repair errors, I split it up this way. We STILL get the repair error on the...
  12. RoseV

    Simple question

    No, the boxes are blackened in no matter what field the focus is on. It only happens on these list boxes.
  13. RoseV

    Simple question

    Yes, they are enabled already. All text boxes on the form are white with black writing, but the list boxes that are populated show up black with white writing. I never had this problem with list boxes when using them before - maybe I just got lucky.
  14. RoseV

    Simple question

    How can I get the list boxes on my form to NOT be blackened in?
  15. RoseV

    Update SubForm Field Values From a Function

    In case anyone can benefit from this: What I did was make the 1st combo box have 4 columns show. Only the first is bound. Then on the change event for the combo box, I update the 1st field to the 1st unbound column, the next to the 2nd unbound...etc. It's much easier than what I was trying to...

Part and Inventory Search

Back
Top