Search results

  1. MsLady

    Is it possible to place an animated gif image on my form?

    Hi ghudson, Thanks for the links. they are quite informative. I was thinking simply putting an animated gif in an object holder will keep the animation, i guess not :o well...I'll go try the links. Thanks :)
  2. MsLady

    Is it possible to place an animated gif image on my form?

    No? Yes? If, so how?
  3. MsLady

    Parameter Query - Weekending date

    anybody? Please help
  4. MsLady

    Parameter Query - Weekending date

    I am trying to tell this query to get the wkending of the date (timeInDate). My query run but returns no data. Can anyone be kind enough to look at the red part?
  5. MsLady

    Calculating Employee Holidays Due - Very Complicated!!

    ~Nice thread :) Bumping this up, as i'll need it soon.
  6. MsLady

    Access Employee DB

    Hi softboss, can you give me up this link again? I am working on something similar and need ideas. Also, how do i get the sample that ships with access?
  7. MsLady

    I love this site

    I don't know what i'd be without you all You are all appreciated. the absolute best!
  8. MsLady

    Traumatized by killer NESTED IIFs

    Not at all. the switch wasn't hard to put together ([logic],[value],[logic2],[value2]....). Took me about 8minutes in this example. But the nested IIF is a far cry away from that. You had to worry about nesting it properly and driving urself crazy. I had spent 2 fustrating working days on it, so...
  9. MsLady

    Traumatized by killer NESTED IIFs

    :eek: wow! this is amazing! Here's all i have now :eek: =[R1] & ("-" + [requestDetails]) & ( " / " + [R2]) & ("-" + [requestDetails2]) This is great cos i had to use that code in 3 summary forms, i have gone around changing them already! Thank you so much!!! :cool: lovely!
  10. MsLady

    Traumatized by killer NESTED IIFs

    Thanks ejstefl, I have practised it :D =Switch((IsNull([R2]) And IsNull([requestDetails2]) And IsNull([requestDetails])),[R1], (IsNull([R2]) And IsNull([requestDetails2]) And Not IsNull([requestDetails])),([R1] & ("-"+[requestDetails])), (Not IsNull([R2]) And IsNull([requestDetails2]) And Not...
  11. MsLady

    Women Can't be Pedophiles

    lol..u welcome
  12. MsLady

    Traumatized by killer NESTED IIFs

    Hmn..interesting! Didn't know that. I'll incorporate that into my code. Thank you ejstefl :D I have learned alot today! thanks dear
  13. MsLady

    Traumatized by killer NESTED IIFs

    Ladies and gentlemen: Allow me to honor the Switch function My code below wasn't hard to put together at all...and it works perfectly. Nested IIf can perish!!, I found a new friend :D Banana, i can never thank you enough!! and John. Brian, thanks alot. =Switch((IsNull([R2]) And...
  14. MsLady

    Traumatized by killer NESTED IIFs

    Ahh *sighs thanks banana :) that switch looks good, i'll go try it. My head is really spinning for real, i just went ballistic with curses #$%%$%# while pointing at my monitor 5minutes ago and my coworkers had to come check if i was okay...i hope i get this to work soonest or access will...
  15. MsLady

    Traumatized by killer NESTED IIFs

    Now i get error: wrong number of argument with this. can anyone help? :( =IIf(IsNull([requestDetails]) And IsNull([requestDetails2])),(IIf(IsNull([R2]),[R1],([R1] & " / " & [R2])),(IIf(IsNull([requestDetails2]),([R1] & "-" & [requestDetails] & " / " & [R2]),([R1] & "-" & [requestDetails] & " /...
  16. MsLady

    Traumatized by killer NESTED IIFs

    Thanks John and Brian. Yes i can have R2 without a requestDetails2, and in that case, i'd like to exclude the leading "-". I will go try what you have suggested above...
  17. MsLady

    Women Can't be Pedophiles

    Women CAN be Pedophiles!!!
  18. MsLady

    Traumatized by killer NESTED IIFs

    Hello friends, I have a form that displays a summary of my records (from my lovely work request database). A textbox named txtRequest should display a concantenation of the workrequestType based on an IIF statement in this matter. The fields in my table are: [R1] meaning primary request ...
  19. MsLady

    OnLoad -versus- OnOpen

    okay .......:)
  20. MsLady

    A date range form-Populate my table with each date in the range (exclude sat/sun)!

    mean! see how u painted the code red! lol :p okay, i checked my date field, and i made ur edits as suggested here's what i have now, works like charm :D Dim dateIDX As Date Dim rs As Recordset Set recDates = CurrentDb.OpenRecordset("tblAbsence", dbOpenDynaset) For dateIDX =...
Back
Top Bottom