Search results

  1. L

    Embed image on record issue

    Hey harmankardon thanks for respoding. I started to play around with the codes and was able to figure it out. thanks anyways
  2. L

    Embed image on record issue

    I'm not entirely sure on how to explain this but I'll try my best. I have an embedded image on a form that hast code behind it. The image is suppose to display only when the value of one of the combo boxes changes. The problem I'm having is that after i update one record it continues to be...
  3. L

    Hey I don't know if you got my last message. I really need you help, I'm starting to freak out...

    Hey I don't know if you got my last message. I really need you help, I'm starting to freak out. http://www.access-programmers.co.uk/forums/showthread.php?p=1119152#post1119152
  4. L

    Need help with textboxes & check box~!~

    I need your help in doing this. I tried and I'm lost.
  5. L

    Need help with textboxes & check box~!~

    Please dont forget about the checkbox
  6. L

    Need help with textboxes & check box~!~

    Correct. I would prefer that the writing code went 1st since this would be first in the tab order. i tried what you gave me and is giving me an error "You can't assign a value to this object".
  7. L

    Need help with textboxes & check box~!~

    Ok I changed the the primary key to autonumber. I will do what you ask but I'm confused. You want me to change all 3 into combo boxes or do you have textboxes as well
  8. L

    Need help with textboxes & check box~!~

    Hey I know you are working. I just wanted to let you know I understood the instructions you gave me and it works!!! The problem I'm having know is that I also want the user to have the option of inputing the Rep Name if they don't know the writing code, then after it should populate the...
  9. L

    Need help with textboxes & check box~!~

    I forgot to mention the RepName is divided into two fields (FirstName & LastName), I already did a query to unite both.
  10. L

    Need help with textboxes & check box~!~

    thanks Privateer for responding. The writing code, rep name, and the agency code are on the same same table (RepList). I designated the writing code as the primary key due to it being unique. I def need your help in implementings this. thanks
  11. L

    Need help with textboxes & check box~!~

    I have a database that I've added a form to and contains various tables. I have to add 2 textboxes (and modified a 3rd one),and also add a check box. I would like for the first textbox [WritingCode] to basically populate info on the other two, when I enter data into it. Name of the other two...
  12. L

    Data Range on a Form~!~

    I have no clue where the person who created the database got this form. It was made before I got here. I was overwhelmed by the lack of organization in the code, especially because I only understand like half of it. Therefore, I didn't feel like changing anything that might affect the...
  13. L

    Data Range on a Form~!~

    Hey remember I told you I'm not the only that works on this database. I had no clue what that code does. I commented it out and plan to remove it later. Now it works but it still doesn't capture the end date. for example if I want to search for records from 11/01 to 11/04, it would only...
  14. L

    Data Range on a Form~!~

    There you go
  15. L

    Data Range on a Form~!~

    OK from 11/1/2011 to 11/6/2011.
  16. L

    Data Range on a Form~!~

    Are you reffering to the date?
  17. L

    Data Range on a Form~!~

    yes is giving me all the records when I entered a date for both. Both are unbound textboxes
  18. L

    Data Range on a Form~!~

    haha yey for me!!! No the criteria is not required but I somehow thought it was needed in order to work because the BETWEN function does not work,it just gives me all the records.
  19. L

    Data Range on a Form~!~

    this is what I got until now: Dim dteBeg As Date, dteEnd As Date If IsDate(Me.txtBegDate__txtStartDate) Then dteBeg = Me.txtBegDate__txtStartDate Else dteBeg = DMin("CreatedDate", "qrySearchCalDat", []) End If If IsDate(Me.txtEndDate) Then dteEnd = Me.txtEndDate Else dteEnd...
  20. L

    Data Range on a Form~!~

    You must really have this high opinion of me if you think I can write code lol I'm assuming it involves some sort of if else statement with the min & max functions? This is the best I can do, sorry : If (Me.txtBegDate__txtStartDate) <> DATE Then Function Min() Else...
Top Bottom