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

Search results for query: *

  1. indesisiv

    List Box Selection

    you will need to use the after update property of the combobox and check if there is something in it. then if there is use something like this Dim intX As Long 'Deselect all listbox values For intX = 0 To me.Nameoflistbox.ListCount - 1 Me.Nameoflistbox.Selected(intX) = False Next intX...
  2. indesisiv

    Multi select list box to formatted text box

    I am using access 97 and am having a minor problem with a list box. I have a multi select list box that as each item is selected places that into a text box. This is only there to allow the user to input the data without typing. I am using the following code: Private Sub lst1_AfterUpdate()...
  3. indesisiv

    Apache & .asp

    I am a real newbie at this so any help would be appreciated. I have installed Apache 2 , php and perl. Apache 2 works fine for all html and php stuff. What i want to do is set it up so that it can serve .asp files. This is all on my loacal machine running win 98. I have read as many of the...
  4. indesisiv

    Combo box question

    I use something like Private Sub ComboName_NotInList(NewData As String, Response As Integer) Dim db As DAO.Database Dim rs As DAO.Recordset Dim strMsg As String strMsg = "'" & NewData & "' is not an available " & vbCrLf & vbCrLf strMsg = strMsg & "Do you want...
  5. indesisiv

    Limit To Chars In Text Box?

    Can you not just put the ???? in the input mask .. that way you will get no error messages and can only type in exactly that number of chars.
  6. indesisiv

    List box highilight bold

    I have a list box that is set so that i can select more that one result. What i need is that when i click on an item just that item goes bold. When i select another item that goes bold aswell. But when they are unselected they return to there original state. I can get it only so that when...
  7. indesisiv

    List box highilight bold

    I have a list box that is set so that i can select more that one result. What i need is that when i click on an item just that item goes bold. When i select another item that goes bold aswell. But when they are unselected they return to there original state. I can get it only so that when...
  8. indesisiv

    Subform sorting

    Yes they are linked.
  9. indesisiv

    Subform sorting

    Help. I have a main form with several sub forms. Records are found by using a combo box. This works fine for the information on the main form, but i can't seem to get it to sort out the information on the subforms. It either filters out all of the records or doesn't filter out any. Can anyone...

Part and Inventory Search

Back
Top