Search results

  1. A

    Auto populate form fields by clicking listbox row of lookup form

    Can elaborate or share sone sample please. That will be a great help. Thanks in advance
  2. A

    Auto populate form fields by clicking listbox row of lookup form

    Private Sub lstSearch_DblClick(Cancel As Integer) Me.txtName = Me.lstSearch.Column(1) End Sub i am writing this code but it is giving error method not found. actually it is not recognizing text field on main form. rather it is not prompting for any field on form frmRequestMain. i even tried...
  3. A

    Auto populate form fields by clicking listbox row of lookup form

    That all has been taken care of (as you suggested), and i am filtering listbox for Designation or ranks to narrow search. But still my original question is unanswered how to populate form fields with so that operator know whose data he is editing. Please any answers towards that direction :)
  4. A

    Auto populate form fields by clicking listbox row of lookup form

    Hi Minty Firstly the application opens with Request form which displays data as datasheet it has button for new entry which receives entry for new request i.e. frmRequestMain, that is where i need to lookup details of employee to enter further details. this datasheet has NameID, RankID and...
  5. A

    Auto populate form fields by clicking listbox row of lookup form

    yes only ID of Name and ID of Designation will be saved in tblRequestMain but i need name and designation on Form frmRequestMain so that operator know whose request is being added.
  6. A

    Auto populate form fields by clicking listbox row of lookup form

    Hello All I have a request application made in Access 2016, it has following tables tblRequestMain -ID -FirstName -LastName -Designation -RequestDate -Request -Remarks tblPersDetails (this holds data for personnels and serves lookup for above table) -ID -FirstName -LastName -Designation Two...
  7. A

    Popup image

    Thanks JDraw n Privateer Better i figured out by placing a button and image, - in properties of image i made is invisible - on mousedown of button i coded image.visible = true - on mouseup - image.visible = false so it sort of gave the desired effect thought it may be of some use to someone...
  8. A

    Popup image

    Hello all Hi there i was wondering if there is any way i can popup image on rollover on button or label. if yes please tell me how to do it. thanks in advance aJIT :confused:
Back
Top Bottom