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: *

  • Users: nq
  • Order by date
  1. nq

    Individual status in subform

    Thanks PH. Problem solved.
  2. nq

    Individual status in subform

    The query for the sub-form would have to be based on tblPlacement and tblReports. This will only return results when there is an entry in both tables. Initially, a student may have a placement but no report. Therefore when displaying the student, if the sub-form was based on the query and not...
  3. nq

    Individual status in subform

    I have a db with 3 tables: tblStudent, tblPlacement and tbl Reports. There is a main form displaying each student record, within the main form is a sub-form displaying every placement the student has had. Within each placement record in the sub-form there is a button. When the button is clicked...
  4. nq

    Required data event

    Remou Thank you, exactly what I was looking for.
  5. nq

    Required data event

    I have a form based on a table. The table contains several fields that have "required" data. The controls on the form allow users to enter the data. The form also allows the user to change to another record. If the user enters some data and then moves to another record before filling in all...
  6. nq

    Autosizing rectangle

    BarneyOwl. No, the rectangle is used to surround several boxes - hence the problem. Thanks for the clue MichaelRed. I did search before asking - obviously the wrong key words. I used something similar to the code below. I had to change the layout so it's not an ideal solution but it works. I'll...
  7. nq

    Autosizing rectangle

    I have a report that prints a major topic heading followed by a group of data spread over several lines. There may be several groups of data pertaining to the major heading. To differentiate between individual groups, I have enclosed each group by a rectangle. One of the fields in the group of...
  8. nq

    rename combo box field value

    Thanks guys. Problem solved. I set the format on the properties of "Witdrawn" in the select query.
  9. nq

    Force Combo Box query to refresh

    on a form, current event, perform a requery on the combo box: Private Sub Form_Current() Me!cboName.Requery End Sub or a generic: DoCmd.Requery
  10. nq

    Force Combo Box query to refresh

    Perform a requery
  11. nq

    rename combo box field value

    This is a convoluted question. Please be patient for those who are willing to accept the challenge. I have two databases. The first is the primary db. The second db is required to be seperate for security reasons but accesses some tables in the primary db via linking. In the first db, there is...
  12. nq

    Default value from unbound table

    Guys. Thanks for all the feedback. It has given me a lot to think about. I could not get the following (or similar) code to work on the default value: ="=" & chr(34) & [tblParameters]![campus] & chr(34) However, I will analyse it and see what I need to learn to make it work. The good news is...
  13. nq

    Default value from unbound table

    Remou - didn't seem to work. I tried: ="=" & [tblParameters]![campus] since "campus" is text, I also tried: ="=" & [tblParameters]!["campus"] Aceman - The form is open displaying a record. Click a button to add a new record - all the fields go blank except those that have default values. The...
  14. nq

    Default value from unbound table

    I have a combo box on a form which is bound to a table. The "row source type" is a value list and I have typed in the values for "row source". A "default value" is also set. I have a need to occasionally change the "default value". The new value can be selected from another table. ie not the...
  15. nq

    Combo refresh problem

    G'Day. And thanks for showing me the "NotInList" event. I don't remember seeing it before but I can see uses for it to make user operation more satisying. Thanks again.
  16. nq

    Button to send email ?!?

    Sounds like you have IT anarchy in your workplace. Firstly, I would suggest that everyone is encouraged (forced) to use the same email program. This makes maintenance, training and upgrading manageable. If there are no IT policies in place, may I suggest that someone takes the time to implement...
  17. nq

    Combo refresh problem

    Hmmm... Yes and No. The combo box has been updated with the information because I can select the new name from the displayed list. The problem is that when: Me.RecordsetClone.FindFirst "ID = " & Me!FindID tries to retrieve the record, it can't and the "534 Not Found" message is displayed. So...
  18. nq

    Combo refresh problem

    I have a main form with a unbound combo box (FindID). A user can select a person from the combo list and retieve the record. Limit to List is Yes. Row Source: SELECT tblTeacher.ID, tblTeacher.Surname, tblTeacher.Given, tblTeacher.Email FROM tblTeacher ORDER BY [Surname], [Given]; If the...
  19. nq

    Form refresh

    AceMan. Excellent, it works. Thank you. The best part is - I have learnt something. I understand now why my code is not conditional formatting. Now that you have mentioned it, I have a need to do a similar thing on the subform of the same mainform. On each record of the subform (continuous...
  20. nq

    Can I use Access for library-type system?

    Use barcodes or RFID. Stick labels on and use a reader to enter items into the database.

Part and Inventory Search

Back
Top