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 SkipVought 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. mjake13

    Partially mask a text box

    Thanks Duane. Modified it just a bit to suit, but it worked perfectly. =IIf(IsNull([SSN]),"","XXX-XX-" & Right([SSN],4))
  2. mjake13

    Partially mask a text box

    I have a text box on a report that contains a social security number. I want to only display the last four digits and have the remainder show as some type of symbol. I can't get the formatting to work right. Any suggestions?
  3. mjake13

    Looping through records on continuous form

    No, the report is not the issue. I don't know how to code the exit button to set (loop) all of the DestReport check boxes to true if the OutofInventory check box is true for all the records currently displayed by the query. This is done to prevent these items from showing up on future reports.
  4. mjake13

    Looping through records on continuous form

    I have tried searching the forums, but either can't find what I need or I just don't understand the responses, so I'm asking for help. I just can't seem to get the right coding and I'm not real familiar with the whole recordset references I saw before. I have a continuous form based on a query...
  5. mjake13

    Check if form and/or query is used

    Thanks Remou. This helped identify the record sources of all my forms and reports. Now I just need to figure out when and where some of these other queries are being called or used.
  6. mjake13

    Check if form and/or query is used

    I inherited a database with 128 forms and 200 queries in the front end. Is there a way, besides going through each one manually, to check and see what queries are and are not used? I'd like to remove the excess junk if they're not needed.
  7. mjake13

    Check if form or query is used

    I forgot to mention this is an Access DB. Thanks for the input though.
  8. mjake13

    Check if form or query is used

    I inherited a database with 128 forms and 200 queries in the front end. Is there a way, besides going through each one manually, to check and see what queries are and are not used? I'd like to remove the excess junk if they're not needed.
  9. mjake13

    Reference page with focus from popup form

    The problem is that each of these textboxes could contain the information I want. I would like to set it up so that when I click the command button, it pulls the info from the page that has the focus into my popup. I can't seem to get the coding right.
  10. mjake13

    Reference page with focus from popup form

    Can't seem to get this right...so I turn to you guys and gals for help. I have a form with several tabbed pages on it. On each of the pages is a textbox that stores the location of a file. I have a command button on a popup form which I use to copy the location from the main form. I can copy...
  11. mjake13

    Sequential number problem

    I actually couldn't agree more with you Ace! But it was done at the customer request. He wanted his invoices to have a higher starting number. I guess he wanted to look a bit more professional. Thanks for the input.
  12. mjake13

    Sequential number problem

    Unfortunately, I'm aware of that issue with a multi-user environment. Fortunately, this is a single user database someone needs. Thanks for the headsup though.
  13. mjake13

    Sequential number problem

    Spoke to soon. Ran into a problem with possible duplicate numbers. I found a bit of help and now use this code. Private Sub btnInvoiceNo_Click() Dim vartemp As String Dim vartempa As String Me.InvoiceNo = NextNumber vartemp = Nz(DLookup("[InvoiceNo]", "Customers"...
  14. mjake13

    Sequential number problem

    I finally got it figured out. I put this code on the button to generate the new invoice number: Private Sub btnInvoiceNo_Click() Dim vartemp As String Me.InvoiceNo = NextNumber vartemp = Nz(DLookup("[InvoiceNo]", "Customers", "[InvoiceNo] =...
  15. mjake13

    Sequential number problem

    I am trying to generate an invoice number using the following code. It gets the number just fine, but I want to check the number generated against the table to make sure there are no duplicates, and if there is I want the number to increase by 1. Private Function NextNumber() As String Dim...
  16. mjake13

    Problems with Memo field on unbound form

    OK, after reading through as many threads as I could, here's my problem: In my current report writing system, I use a bound form with a memo field. Problems arose if more than one person had accessed that form while it was still open by the original user, thus leading to write conflicts or...
  17. mjake13

    Problem trying to reinstall XP

    Which cd drive are you trying to install from? Sounds like a conflict somewhere that is not allowing the file transfer to complete. Try switching or removing all but one drive to complete the install. Had this problem once before and it turned out to be a bad cd drive.
  18. mjake13

    office 2000 problem in win2000 pro

    Unfortunately yes and still no help.
  19. mjake13

    office 2000 problem in win2000 pro

    I have several old Access 97 mdb's and looking to update to Office 2000. The conversion is no problem. The problem I am having I think is with Windows 2000 Professional. On my older WinNT/Win95 setup with Access 97, I was able to open up a form that had a picture(jpg) embedded and be able...
  20. mjake13

    Closing Access

    Rick, Would I reset the forms timer interval or would I need to reset the actual timer built into the form through the code? Just pondering....

Part and Inventory Search

Back
Top