Search results

  1. D

    Update Query and Listbox

    Im running an update query but in the criterial field i would like to include something that instructs the query to be executed only on the value selected in my listbox. i need some help with the syntax cause i dont know how to bound the query's execution to the selected/highlighted value in...
  2. D

    Listbox Item

    My query is executing on everything in the listbox. I only want it to be executed on the value that i select. What codes can i use? I really need some help on this one.
  3. D

    Executing a query on highlighted record in listbox

    How do i apply a query that i want to execute only on a highlighted record in a listbox. If there is a link, sample database or lines of code could you please assist. Currently everything is being executed on all of the records in the query. Also Does Access 2000 support codes for drag and...
  4. D

    Locking fields for one record on a continuous form

    How can i apply the following code to the immediate record in my subform. I would like when the assigned check box value = true, then the fields for that record become locked. Ive written the following code to an onclick event for a check box labeled "assigned" on my form, the problem is it...
  5. D

    Controlling data in unbound box on continuous form

    Back to square one. It seems as though it would be best if i made the first combo box unbound but how do i prevent all the others in the form from changing when i change the value in only one of them?
  6. D

    Autofilling value which is NOT autonumber

    I have a table that keeps putting a zero value in the new recordl. It was previously an autonumber field. I changed that and deleted the zero from the default value property. How do i get rid of this???
  7. D

    cONTINUOUS FORM ERROR

    I keep getting this messgae that says "tyhe current field must match the join key in the table that serves as the one side of the one-to-many relationship" Im working on a subform that im using a query on, Can someone advise as to what i should do, THANKS IN ADVANCE >> i found a waya around...
  8. D

    Listbox Question

    I seem to be having some listbox troubles. I would like to know how to use the highlighted record that i have selected in my listbox to update another field on my form. I had used a macro with the event on dblclick, the problem is the event seems to be carrying out the update on all the...
  9. D

    multiple subforms

    I have three subforms that i want to open optionally by using one open button after selecting the form that i want to open from a combo box. or open the subform when the value in the combo box changes. Please help
  10. D

    concatenating values from Unbound sources and Bound sources

    I know that it isnt advised to store the concatenated value but in this case, I have a memo field which is the description of a particular system component. i have Unbound Combo Boxes for descriptive elements such as COLOUR, SIZE, CONNECTIVITY, MAKE. ALL of these i would to store in a field...
  11. D

    Combo Box Showing Repetitous Data

    In one table i Have component group Id and the description as fields then another table has the sub groupings for each Component Group Id Example Component Group ID = 1 which is the primary key Description = Keyboards Component Sub datasheet has Group ID = 1 foreign key Descriptive Options...
  12. D

    Query Displaying Repetitious Information

    In one table i Have component group Id and the description as fields then another table has the sub groupings for each Component Group Id Example Component Group ID = 1 which is the primary key Description = Keyboards Component Sub datasheet has Group ID = 1 foreign key Descriptive Options...
  13. D

    Make a datasheet form from designview

    Okay this i definately need help with. I want my form to behave in the same manner as a datasheet in that it just displays rows of data. I want to create this how do i do that.
  14. D

    Designing form but table/query with fields not enabled

    im creating a form in design view but the icon to show the fields from the table that i want the fields to come from isnt being displayed; how do i get it to show?
  15. D

    PC Inventory and Allocation Database

    Im creating a db to keep records of computers that have been assigned to persons in their various departments and also unassigned computers and spare parts. problem: For the machine specifications table should i put in the following fields as columns Hard Drive 1 Hard Drive 2 Hard Drive 3...
  16. D

    Search Form; Not one that pops up another form.

    I want to put a search form (text box and listbox) on a form that has the records displayed.Can i please get some help with codes. Ive been searching your forums but the problem is that most of the search forms are linked to pop-ups. Can someone PLEASE help me.
  17. D

    Access is fun Errors arent. SEARCH probs.

    Private Sub quicksearch_AfterUpdate() Dim db As DAO.Database Dim rs As DAO.Recordset Set rs = Me.Recordset.Clone rs.FindFirst "[ID number] = " & Str(Me![quicksearch]) Me.Bookmark = rs.Bookmark End Sub this is the code that im using to help me with a...
  18. D

    Listbox to show contents of more than one fields in another table

    I have a field called "Bad Pc Part" which is a listbox. THe problem is I want it to display the contents of 3 other fields from another table. I created a query for the Bad Pc Part field but the problem is it only displays the information in the first field of the table. It doesnt show the...
  19. D

    Automatically Refreshing My Listbox

    Listbox My main form that displays the records also has on it a listbox for easier navigation to records. What i would like is when i delete the records, they automatically become removed from the listbox. Currently what happens is that i have to close the form and reopen it in order for the...
  20. D

    Disable Textbox on main form from button on subform

    My subform when i click the New record button on the subform i want it to disable a text box that is on the main form. Me.Pensioners.Form!quicksearch.Enabled = False where Pensioners is the name of the Parent Form. Thhis isnt working for one reason or another. Please advise.
Back
Top Bottom