Pop up List Box

  • Thread starter Thread starter Kiran
  • Start date Start date
K

Kiran

I want the below output in the Text Box, the instrument type is Mortgage in
this section which can be a Deed of Trust, Security Deed e.t.c. When the user
clicks on a command button I need a Pop up list box with the instrument
types. Can this be done in Access.

That Mortgage in favor of Grace Maxwell Smith, Trustee of the Kingsley
and SMITH LIVING TRUST, dated 10/20/2005, and recorded on 12/06/2005, in
Book 23012 at Page 30, (given to secure the original principal amount of
$55,000.00).
 
Yes. If the list box is hidden on the same form, just make it visible:

Me.ListboxName.Visible = True

Use the form's current event to hide it again.
 
Thanks for the help. I want that to be used a way the Inputbox functions.By
using Inputbox we get a textbox, in the same way I need a Listbox.Is that
possible.

Kiran
 
Hi,
In order to get the below text I have made seperate InputBox for
entering the Instrument Type(Mortgage),Borrower(Grace Maxwell Smith, Trustee
of the Kingsley
and SMITH LIVING TRUST), Dated date(10/10/2005), recorded date
(12/06/2005),Book(23012),Page(30) and amount ($55,000.00).Now I want to
replace the Instrument Type by a List Box or Combo Box which pops up,and if
possible calendar option for the dates.I am unable to use Input Box with
Combo Box or List Box. The output Text would be just the Text input after the
Combo Box

That Mortgage in favor of Grace Maxwell Smith, Trustee of the Kingsley
and SMITH LIVING TRUST, dated 10/20/2005, and recorded on 12/06/2005, in
Book 23012 at Page 30, (given to secure the original principal amount of
$55,000.00).
 
Back
Top