Search results

  1. C

    Question Bizzare Multiuser Problem

    The 164 and 22 records that can be seen, are they random or the same ones after every login? Could it be a query that filters out certain records? Catalina
  2. C

    Cmd button caption not displaying

    Too bad I have so many of them....
  3. C

    get data from the web

    There is software that can generate a set of PHP based forms of an Access database. I have used it in the far distant past and it worked, with some tweaking. I'm sure the newer version is more capable and flexible. But it's not cheap. http://xlinesoft.com/phprunner Catalina
  4. C

    Numeric only input for textbox

    How about this in On Key Press: 'Accept numerals only. If KeyAscii < 48 Or KeyAscii > 57 Then KeyAscii = 0 Catalina
  5. C

    Alternating bands on continuous form

    Galaxiom, you beat me to it.
  6. C

    Alternating bands on continuous form

    Go to Properties/Format/Alternate Back Color and set it to match the Back Color or set it to No Color. Catalina
  7. C

    Simple Password Form

    May be this will help. http://www.databasedev.co.uk/button_security.html Catalina
  8. C

    Need help with html

    I failed to read that part, sorry.
  9. C

    Need help with html

    This is an Access forum, why do you post it here?
  10. C

    Isolate from string

    Works great DJkarl. Thanks. Catalina
  11. C

    Isolate from string

    D:\Databases\MovieDB\Images\MyMovie.jpg D:\Databases\MovieDB\Test\Images\AnotherMovie.jpg I'm trying to isolate the part in red. I played with Mid and Instr and still can't get it . All suggestions how to get it done will be appreciated. Catalina
  12. C

    Conflicts with anti-virus software

    I have been using Avast Free Edition for years, updates almost every day. Never had any problems. Wouldn't dream of switching to Norton, not even if they paid me.
  13. C

    Links to Attachments

    Thanks for the response but I absolutely don't want to store images in the database.
  14. C

    Links to Attachments

    With the database I'm working on for someone I need to link images. The way I see it there are two options: 1 Store the full path to the image (like d:\databases\movies\myfile.jpg) or: 2 Store the path relative to the backend location (\movies\myfile.jpg) Then concatenate the backend path...
  15. C

    Sending emails until EOF

    Please use the Code Tags when posting code, this is so hard to read.
  16. C

    which form event to update label name?

    Do you mean the Label Name of the Label Caption? The Caption you can change in the On Open Event of the form: Me.mylabel.caption = "whateveryouwant"
  17. C

    Overseas aid money, is it a waste?

    Another problem is that many organizations that handle overseas aid projects have executives with gigantic salaries and expense accounts. Large amounts disappear into their pockets instead and never reach the people it was intended for. Catalina
  18. C

    Update a database column when mandatory fields are completed

    Are you using an unbound form?
  19. C

    Send Email through Gmail

    Thanks sxschech, I'll check it out. Catalina
  20. C

    Send Email through Gmail

    Using Access 2010/Windows 7. I found this code somewhere and I made the changes necessary. (email addresses, password) When I run it I get the error: The transport failed to connect to the server. Setting the port to 587 doesn't solve it either. Any idea what I'm missing? Dim iMsg As...
Back
Top Bottom