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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Compuboy

  1. Compuboy

    Outputting from a form to a file or report

    It has a problem with DAO.database. It says "User-defined type not defined
  2. Compuboy

    Outputting from a form to a file or report

    I'm using ACcess 2002. I have a big list box in my form. When a button is clicked, I want to somehow scroll through the whole list box index while outputting all the information to a report or a file. Anyone?? Some code would be nice since I'm pretty lost in VB. THANKS.
  3. Compuboy

    Creating Query from inside the FORM

    I have the SQL statement I Want to use to generate a query when in the form. Is there any way I can add a button to use this SQL statement to make a printable query??
  4. Compuboy

    Autoselection in ListBOX

    What's a PK?
  5. Compuboy

    Autoselection in ListBOX

    I tried that. And what that does is select the last item in the list. Since my listbox is ordered alphabetically...it would select the item that begins with Z even if the one I just entered begins with G or something like that. I want to know how to select the one that was just entered.
  6. Compuboy

    Autoselection in ListBOX

    My DB is in Access 2002. HOW would I automatically select the lastest item in the listbox. For example, in my DB when a record is added it automatically goes into the list box, what code do I need to automatically highlight this record. (Replacing the code below) I've been using the following...
  7. Compuboy

    How to Update a FORM

    thanks. me.requery worked
  8. Compuboy

    How to Update a FORM

    My DB is in Access 2002. Right now my form displays information based on a Cord Blood Table. However, when a new sample is added into the table, it's information is not displayed in the form until the form is closed then opened again. When I look at the bottom of the form, the recordset size...
  9. Compuboy

    Radio Button AUTO selected when opened

    I have 2 radio buttons in my form. When the form is opened I want one of the radio buttons to be automatically selected. What code do I need to put under the Form_Open function.
  10. Compuboy

    selecting records that INCLUDE a string

    My DB is in Access 2002. If I want to select records to a listbox that match a string EXACTLY it works when I use: SELECT [CORD Data Table2].[Cord Number] WHERE [CORD Data Table2].[CE Number] = Forms![cord data form]!CEsearchtext All items with that CE number will appear in the list box...
  11. Compuboy

    Problems with NULL

    Thanks that helps a lot. but is there a function that is the opposite of IsNull...like Is not null or somethin??
  12. Compuboy

    Problems with NULL

    My DB is in Access 2002. The problem now is I have a field called "CE number" that I want to either have a value in the form of (Input Mask: "CE"######? or null) First of all what exactly do I put into input mask? However, I've fiddled around with it a lot. My main problem is this... When "CE...
  13. Compuboy

    Adding Items to LISTBOX

    I want the listbox in my form to display 3 strings. How can I add these 3 strings to the listbox?? P.S. Don't thinkg Additem works for me...
  14. Compuboy

    AfterUpdate() vs. Click()

    MICROSOFT ACCESS The situation is: I have a listbox that lists cord blood ID #'s. When an item is selected from this list, information (such as Date, Type, etc.) are displayed in text boxes; this is taken directly from the table, I made it with a wizard. You can also select a date from the combo...
  15. Compuboy

    AUTOselect in LISTBOX

    When I put this code in Form_Open: Me("ListBox").Selected(0) = True It does select the first item..however, after I cannot switch the selected item...everything just gets locked.

Part and Inventory Search

Back
Top