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 Chris Miller 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. theUN4GVEN

    Convert Numbers in Table to Words in ListBox

    I have a listbox on a form that is used for my own search. The user types in information they are looking for and a list of Invoices shows up in the list box. The listbox is bound to a query that pulls multiple fields from a table (ie. Firstname, Lastname, Invoice Number, etc). One of these...
  2. theUN4GVEN

    Need to show "Continued" on certain pages

    Access allows a quick and easy way of counting the number of pages on a report. You can place this code in the control source of a text box that is in either the "Page Header" or "Page Footer" = [cableNumber] & " (contd. SH " & [Page] & " of " & [Pages] & ")" Where [cableNumber] is the...
  3. theUN4GVEN

    Determining if a control is locked

    Thanks, I didn't realize I could check the status of control properties so easily. Worked like a charm. Tom
  4. theUN4GVEN

    a2k - filtering a form

    Richard, I do this a lot in the program I am working on now. I use openArgs to pass a value from my txtID field to the popup form. DoCmd.OpenForm "frmPopup", OpenArgs:=Me.txtID.Value Then in the popup forms onOpen I use Me.txtID.Value = Me.OpenArgs and then I set the Me.RecordSource =...
  5. theUN4GVEN

    Determining if a control is locked

    I have code on a few of my forms that adds the date to the text in the textBox control that has the focus when a specific key combination is pressed. The problem I have is when a textBox that is locked has the focus. When the key combination is pressed a run-time error occurs saying the property...
  6. theUN4GVEN

    Form Controls Not Have Focus

    A possibility that I have used before is to make a command button on the form. Give it no graphic and no action. Set its "Transparent" option to "Yes" and then give it the focus in formOpen using Me.cmdHidden.SetFocus where cmdHidden is the transparent command button you made Tom
  7. theUN4GVEN

    Complex Report With Multiple One-to-Many Relationships

    I have a set of three tables that I am using to print out a report, they are: tblContact ---------- ContactID . . tblInvoice ---------- Invoice ID ContactID . . tblParts -------- PartID InvoiceID PartName . . There is a one-to-many relationship between tblContact and tblInvoice with there...
  8. theUN4GVEN

    AuotComplete in a memo

    I am writing a program for a repair company and there is a memo field on one of the forms where the diagnosis for the repair is listed. These are often very long and involved which is why a memo is needeed, but they consistently have generic short messages such as "Check and Adjust." I would...
  9. theUN4GVEN

    text box value based on query

    mndrlion, that worked perfectly! Thank you.
  10. theUN4GVEN

    text box value based on query

    I have a textbox on a form that I would like to contain the total sum of the price of parts for an individual client. The textbox should only contain the values for the prices of the parts for the current individual only. I have no problems obtaining this information through the following query...

Part and Inventory Search

Back
Top