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 wOOdy-Soft 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 Wrecker

  1. Wrecker

    Problem with Tab Control Pages on a form

    I have an Existing form with many Texboxes on it. I would like to put some Tab control Pages behind the existing Text Boxes. Then I can Tab to another Page and add some more Textboxes. The Problem is if I Put the Tab Pages on the form around the current textboxes, I can see the current textboxes...
  2. Wrecker

    Password on a Button

    I would like to put a request for a Password on a Button. Where might I find the code needed? I'm assumming the code would go in the "on Click" event for the Button. I am using the button to open another form, and I need the form password protected. Thanks Wrecker
  3. Wrecker

    Read Only Problem

    I Copied an Access 2000 Database to A CD. I then went to another PC with Access 2000, and copied the database to the hard drive. When I open the database, it opens in "read only". How do I open it so I can work on it. I made another copy on the hard drive and tried renaming it, but it...
  4. Wrecker

    Invalid Argument problem

    Somehow a user changed somthing, so now I have one record that shows errors in all the fields, and an "Invalid Argument" error message appears. The records entered after that one are fine. My question is... How can I delete the record with the errors? Everytime I open the table I get...
  5. Wrecker

    Duplicate record not showing on the Form

    OK..... This is really weird. I sent the file home (Windows XP.... Access 2000). The Duplicate record works fine. I sent the file back to work ( Windows NT Access 2000) and the duplicate record will not work (as discribed above) Could there be a setting in the software at work that needs...
  6. Wrecker

    Duplicate record not showing on the Form

    When I create a duplicate record using a button on the form, A blank record is created in the table (looks like the data is not being pasted from the clipboard), and the form does not advance to the Duplicate. It stays on the original record. Any Suggestions on what to check would be...
  7. Wrecker

    Last Record Problem

    Still confused. I am using a Form to input data into the table. I have several databases designed the same way and they work fine. When the form opens I have the code set to go to the last record entered by the user. The user also has a record navigation button used to go to last record if they...
  8. Wrecker

    Last Record Problem

    The Last record entered in the database. Private Sub Last_Record_Click() On Error GoTo Err_Last_Record_Click DoCmd.GoToRecord , , acLast Exit_Last_Record_Click: Exit Sub Err_Last_Record_Click: MsgBox Err.Description Resume Exit_Last_Record_Click End Sub
  9. Wrecker

    Last Record Problem

    I have a form that the "Last record" button stopped working properly. It is not going to the last record when the buton is pushed. It stops about 20 records up in the table. I think it is sorting on another field. How do I tell it to use the "ID" field (Primary Key) for the...
  10. Wrecker

    Not clear some fields for New record?

    Is there a way to keep the data that is in a selected few textboxes after pushing New record Button? Currently all the textboxes are cleared. I would like a few of them to keep the data from the previous record. Thanks Wrecker
  11. Wrecker

    Wildcard Question

    I need to return data from a field called "cerp" in a query. I entered 888 in the field. In the Critria of the "Cerp" Field I entered: Like "*" & [Cerp?] & "*" The data will only return properly if I type exactly 888 .I need it to return Data if it finds...
  12. Wrecker

    What did I do?

    Anyone know why my form will no longer let me navigate to the previous record? I get a message that says " You can't go to the previous record". It also won't open on the last record, even though the code for the last record is in the open event for the form. It opens to a...
  13. Wrecker

    Duplicate Records

    I'm simply trying to create a duplicate record. I have a form with about 25 textboxes. because only 3 of the textboxes data changes for the next record (the rest remain the same Data), I wanted to create a duplicate , then use code to clear the data in the 3 textboxes. Then the operator can...
  14. Wrecker

    Duplicate Records

    For some reason I can't create a duplicate record. I created the button on the form. When the button is pressed, it copys to the clipboard, but does not paste to the form. Also, when I use the wizard to create the button, the Paste append in the code is jumpperd out(Like a commennt). Example...
  15. Wrecker

    Windows Media Player

    How do I make Windows media player my default? Now everytime I put in a music CD it launches MusicMatch Jukebox. Thanks Wrecker

Part and Inventory Search

Back
Top