Search results

  1. Bodisathva

    Football and other games

    I thought he was referring to that o-so-subtle message from the sponsor so inconspicuously placed upon the player's jersey:eek: :D And do I have to re-state the actual number of times that the football is actually kicked in American football?
  2. Bodisathva

    Where is everyone?

    Brian... it is today;) I'm one of the 80-90% that stayed home...unfortunately, I can work from here just as easily.:( on the other hand, her indoors elected to stay home as well...:eek: why am I still here? <great swoosh of air and rustling of paper as the desk is swiftly vacated>
  3. Bodisathva

    Movie name game

    [echoing announcer's voice] ...but no one leaves empty handed, enjoy the following basket of consolation prizes from Preparation-H and you and your friends will now be able to enjoy your very own copy of the Movie Name Game Home Edition:D :D [red applause sign lights] Albert Finney -- Big Fish
  4. Bodisathva

    Date Type Mismatch Using DLookUp

    because you're trying to modify the Address field of the recordset, not a textbox on a form. the ! denotes a field, which you cannot alter without a .AddNew or .Edit ... change to . Me.Address
  5. Bodisathva

    Type Conversion error

    is the import an append query or a make table query? If you are running a make table query, Access defines the field types based upon the first bit of info to be inserted.
  6. Bodisathva

    When Double Clicked Enters Todays Date

    it is never a good idea to name a form object the same as a built in function... I would recommend changing the text box name to txtDate, and then using: Me.txtDate = Date()
  7. Bodisathva

    Movie name game

    Billy Zane -- Titanic
  8. Bodisathva

    What a dark, dark day in football

    I would, but I'd probably get banned from the forums:eek:
  9. Bodisathva

    What a dark, dark day in football

    Payton Manning has got to be one of the best quarterbacks I have ever seen. Great decision making, mobile, good arm, etc. (and accepting all of the credit for it)....aka effective. He also whines, moans, and bitches when things don't go the way he wants, (the blame resting on everyone else)...
  10. Bodisathva

    Movie name game

    Scott Glenn -- The Hunt for Red October
  11. Bodisathva

    What a dark, dark day in football

    at one point in time there were two different "football" leagues in the US. They were both combined into the NFL (National Football League), but with the distinction of AFC (American Football Conference) and the NFC(National Football Conference). Within those divisions, there are the...
  12. Bodisathva

    Movie name game

    Christopher Reeve -- Superman II
  13. Bodisathva

    Movie name game

    Billie Dee Williams -- The Empire Strikes Back
  14. Bodisathva

    combobox coloums

    In a combo box, reference the column number of the criteria you are looking for: Me.Combo22.column(0) will return compinfo Me.Combo22.column(1) will return ID
  15. Bodisathva

    How to insert split MONTH/DAY/YEAR combobox values into date field in new record?

    Date criteria in query expressions that are not enclosed by '#' are interpreted as strings, not dates. 02/12/2007 is a string #02/12/2007# is a date
  16. Bodisathva

    Listbox .Requery

    Are you actually using the SQL tables as the recordsource or are you using a snapshot recordset or recordset clone? Since you would be unable to edit a record which is currently displayed in the list box if the list was dynamic, I would be inclined to think you need to re-establish the actual...
  17. Bodisathva

    Movie name game

    Ashley Judd -- Divine Secrets of the Ya-Ya Sisterhood another one of the wife's:o
  18. Bodisathva

    Movie name game

    Jim Carey -- Bruce Almighty sorry...Heartburn is one of my wife's favorite movies, as you can imagine, I've seen it a couple of times;)
  19. Bodisathva

    Movie name game

    Stockard Channing -- Heartburn
  20. Bodisathva

    Loop

    strNewID = strPrefix & Format(intStartNum,"00")
Back
Top Bottom