Recent content by Lourry

  1. L

    Logon Prompt

    WOW! Thanks....that is an excellent sample. Thanks a lot!
  2. L

    Logon Prompt

    Thanks WayneRyan! It worked perfectly :) I think the encryption might be very complex and complicated to do. I'm trying to see if there's other solutions available.
  3. L

    Logon Prompt

    Hello All, I have a logon prompt for working where it will check the passwors against the username that is entered. my questions are: 1) How can I set the text box where the user enters the password to only show stars (the * character). So that when a user types in their password, only stars...
  4. L

    Show msgbox when no records found

    Thank you Lou! I received the sample DB, although I was missing some object or libraries for it to compile properly, but I was able to look at the code. So, it all worked out and my DB is working perfectly now! Thank you so much :D
  5. L

    Show msgbox when no records found

    Thanks Lou, Sorry for the late reply, I have sent you an email!
  6. L

    Show msgbox when no records found

    Hello, I saw that thread but it doesn't work, I get an error saying I'm making an invalid reference to the recordsetclone property. My search form have controls that are unbound, my search results form has controls that are unbound. It shows record becuase I have set...
  7. L

    Show msgbox when no records found

    Hello all, I have a "main" form with a search button on it and when a user click on the search button, it will perform a search and open up a "search results" form and display all the records matching the criteria entered in the "main" form. THe "search results" form is a continuous form. When...
  8. L

    Dates

    Hello all, I tried to set a date to a variable by: Const date1 As Date = "1/1/1950 12:00:00AM" but it only stores 1/1/1950 in the variable, it doesn't store the time! How can I declare it so that it includes the time? Thanks! :)
  9. L

    Search List

    Hello All, Does anyone have a good example of a search result list and when the user click on a row it will open up that record? I tried searching but can't find a good example that will illustrate how to do it. Example: On the main form there's two text fields "A" and "B". The user type in...
  10. L

    Maximize and makind default form for .mde

    Hello All, Is there a code that will open a default form when a user opens a .mde file? and that form's size is maximized? example: I have three forms: main, search, search results. When a user opens the .mde file, I would like form "main" to be opened automatically and the size is maximized...
  11. L

    Font Color for Disabled Controls

    Stupid me! I should use the lock property instead! Thanks anyway :)
  12. L

    Font Color for Disabled Controls

    Hello All, When a control is disabled, (assuming I didn't change any default font properties), the font color becomes grey. Is there a way that when the control is disabled, the color of the font can still be black? Reason: I do not want my users to click on some of the textboxes on my form...
  13. L

    Finding a Record

    Hi stargate, The two zip files are very useful! Thank you! In the SearchingOptions.zip.... I'm having trouble with the line: stLinkCriteria = "[Name ID]=" & Me![lstNames] this is located under Private Sub lstNames_Click() in frm Wild Search. This is actually my first time using Access, and I...
  14. L

    Listbox Value

    Thanks!! It's working perfectly!! :D
  15. L

    Finding a Record

    Thanks! I'll try them out now. Thanks again.
Back
Top Bottom