Search results

  1. NJudson

    Story

    her pleated skirt
  2. NJudson

    How to display a BIG string in a textbox

    Not sure about this but could you try a label instead of a textbox? I have no idea about the limits of a label but its just a suggestion.
  3. NJudson

    Story

    and screamed aloud
  4. NJudson

    Story

    and landed right
  5. NJudson

    Story

    gay lover he
  6. NJudson

    Story

    he would do
  7. NJudson

    The Silly Links Thread

    http://www.funnyjunk.com/
  8. NJudson

    Adding text to a text field After Update

    Yeah, I couldn't remember if I could leave it out or not so I just left the ".value" in there. Thanks for clarifying that.
  9. NJudson

    Adding text to a text field After Update

    if len(me.textbox.value) <> 0 then me.textbox.value = me.textbox.value & ".jpg" Try this instead.
  10. NJudson

    Adding text to a text field After Update

    Can you put something like this: me.textbox.value = me.textbox.value & ".jpg" That should work I think.
  11. NJudson

    Story

    leven bread with
  12. NJudson

    The Silly Links Thread

    Anyone been to www.darwinawards.com If your not familiar with the darwin awards it's basically a site where people have submitted stories where idiots have been involved in serious accidents or deaths that are the result of complete numbskull behavior. Not that I'm glad anyone has died, but...
  13. NJudson

    Story

    sexually frustrated nimrod
  14. NJudson

    syntax help

    If you are trying to do this with vba you need to set it up like Dim criteria as string criteria = "9*" in the SQL part of the query you need to rewrite the WHERE part like so Where rst.fieldname Like '" & criteria & "' This is a (single quote) (double quote) & criteria & (double quote)...
  15. NJudson

    Corrupted form by modifying query?

    I'm using Access 2k and win xp. I created a form based on a query(qryMTX105). The unfiltered query had 1500 records. I have a textbox on the form to enter a number that I want to filter the query on. I never really created forms based on queries or tables before so I think I really goofed...
  16. NJudson

    Story

    their backhair waxed
  17. NJudson

    Story

    Meanwhile back at
  18. NJudson

    Story

    that fired plastic
  19. NJudson

    Not Advancing to the next record

    If I'm reading your problem correctly then you could try this: 1) Set the form property "Navigation Buttons" from Yes to No 2) Create your on set of Navigation buttons on the form and then you can code them specific to your needs. If your using the pre-defined navigation buttons that...
  20. NJudson

    docmd.transfertext to Excel error

    Not sure if you did this already but what if you create a macro to do the import and then convert the macro to vba to get the code. That's what I've done in the past. HTH
Back
Top Bottom