Search results

  1. Luddite Lad

    Go to last record

    What you need to do is create one generic form, and on the OnLoad event use a logical argument to check the OpenArgs and from there determine which controls are visible, editable etc. Each button will send a different OpenArgs to the form. For example your add new record button might have...
  2. Luddite Lad

    Maintain Selection at top of ListBox after Sort

    I have combined the list box sort function discussed here with the Search tool discussed here. No problems thus far :) I'm using the following piece of code that activates on the OnChange Event of the text box that is feeding the search query. The code ensures that the first row in the list...
  3. Luddite Lad

    List Box to Open New Form

    Sorry guys try this; Dim stDocName As String Dim stLinkCriteria As String stDocName = "Personal Details" 'Name of your form that is to be opened stLinkCriteria = "[Uniqueid]=" & Me![Uniqueid] 'The common key that links the current record and the record that is to be opened...
  4. Luddite Lad

    List Box to Open New Form

    Put the following code behind your Double Click Event Dim stDocName As String Dim stLinkCriteria As String stDocName = "FRM_Name" 'Name of your for that is to be opend stLinkCriteria = "[PersonalDtlID]=" & Me![PersonalDtlID] 'The common key that links the current record and...
  5. Luddite Lad

    Search Option

    Is the search form in this thread the sort of thing you are looking for?
  6. Luddite Lad

    Listbox OrderBy

    Thanks Mark Just what I was looking for :)
  7. Luddite Lad

    Select all in combo box

    Have you considered a multi-select ListBox?
  8. Luddite Lad

    search function

    Stevo From looking at your DB, it seems to be a catalogue of various media resources. There seems to be many common elements to each table. Why not store all your records in one table and then have a field to differentiate each type of media? This will then greatly simplify the search process.
  9. Luddite Lad

    click on listbox column and change order of records

    This thread has a solution to your problem
  10. Luddite Lad

    Jump to record

    Combo# Represents the name of your Combo Box. Replace the whole of the highlighted phrase with your ComboBox name. I simply used # to represent any number.
  11. Luddite Lad

    Jump to record

    My method will do exactly as you wish. The comboBox must be unbound and it must return a numeric value that corresponds to a recordID or similar on the record you wish to jump to.
  12. Luddite Lad

    Jump to record

    You certainly can, put a command button on your form with the following code behind it. DoCmd.GoToRecord , , acGoTo, Combo# Insert your combo box name at Combo#
  13. Luddite Lad

    Use Last Record Value as Default

    Use an append query activated by a command button to add your new record. Use [forms]![frmName]![ItemID] in the criteria of your query (under the ItemID or what ever you choose as the unique recordID) and choose the data you wish to copy into the new record.
  14. Luddite Lad

    Listbox OrderBy

    Mark I have just discovered this thread and am just a little unsure of the coding to report the X and Y value in the message box, you describe above. I'm presuming that with this missing piece of code in place you would click at the left and right margins of each column header and the message...
  15. Luddite Lad

    Dynamic Text Boxes in form

    You need to force the query populating the sub form to requery when ever the selected dimensions are changed.
  16. Luddite Lad

    Creating a search form

    Perhaps the search tool in this thread is what you are looking for?
  17. Luddite Lad

    picture display based on combo entry

    The way I would approach the lending history; Is firstly I have a form that shows all the files that are available for lending (ie. they have an "IN" status) this you would populate with a select query. The form would have provision to select the file/s that are to be put on loan. This...
  18. Luddite Lad

    picture display based on combo entry

    This thread might give you some pointers. Check out John's changes to the DB.
  19. Luddite Lad

    How to Email current record only

    In the query Criteria (for RecordID) put [forms]![frm_name]![RecordID] that will select only the data relevant to the RecordID for the record currently displayed in the form.
  20. Luddite Lad

    New to Access and need some help

    Hi Dups The major problem with your form was that almost all of your controls where unbound. You also seemed to be storing the consignee name in the relationship table rather than the ConsigneeID. Please check how I have set up my comboboxes. I've made some changes to your form and linked it...
Back
Top Bottom