Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by DaveRussell

  1. DaveRussell

    Autoupdate feilds

    tziviak2, I gave it a shot, first putting it after i added a new record, then just before i ran the .UpdateBatch statement. still getting an error :( am i putting it in the right spot? Thanks -Dave.
  2. DaveRussell

    Autoupdate feilds

    I might add that i call this as a function right after i add a new record to the database...
  3. DaveRussell

    Autoupdate feilds

    Richard! I wish i could just go buy a program. let me get into it a bit more: basically what i've got is an online MySQL database that is being written to via ODBC. the Access Database pulls information off of that database which is linked into msaccess for my clients. pretty much the...
  4. DaveRussell

    Autoupdate feilds

    Hey everybody! I've got an access database that i'm working on here, and i've run into a wall... the program is an interest calculator, pretty much... it takes withdrawals and desposits, and every month it compounds at a given interest rate. i've got a form in continuous form mode, and the...
  5. DaveRussell

    Date problem in PHP and mySQL

    Hey! thanks for the tip on strtotime. saved a headache. have a star dave
  6. DaveRussell

    unable to update / delete records via odbc from access to mySQL

    I'm officially a moron.... i figured it out. thanks for all the input... i neglected to select unique record identifiers when i linked the tables originally! - Dave.
  7. DaveRussell

    unable to update / delete records via odbc from access to mySQL

    yeah, i can't even update or delete from table view :( I'm looking at my permissions for the specified user, and there's no problem there. Here's the code anyways, just in case... DoCmd.RunSQL ("UPDATE rmtCustomerInfo SET ciUserName = '" & tbUserName.Value & "', " & _ "ciPassword = '" &...
  8. DaveRussell

    unable to update / delete records via odbc from access to mySQL

    I knew i forgot something... Well, there really isn't any relevant code, anytime i run a Docmd.RunSQL("UPDATE...") query i get this error: Run-Time Error 3073: Operation must use an updateable query And everytime i run a delete sql i get this : "Could not delete from specified tables"
  9. DaveRussell

    unable to update / delete records via odbc from access to mySQL

    Hi! I'm unable to update or delete any records in a remote (online) mySQL database from my local access 2000 database. Apperently my mySQL permissions are fine because when i update the mySQL database through php online, there isn't a problem... so i'm assuming that the problem is either in my...
  10. DaveRussell

    local ms access ODBC to remote mySQL on Linux box

    Hi! Here's the problem. I get a "Operation must use an updateably query" error when I try to update records from ms access to the remote database.... i've set all the permissions for mysql user to allow edits and updates etc. etc.... anyone had this issue before and can point me int he right...
  11. DaveRussell

    Only Numbers in textbox

    Hey! that's perfect Roy-Vidar, thanks! i don't suppose you know the backspace number off hand, do you? i'd like them to be able to use that one too :)
  12. DaveRussell

    Only Numbers in textbox

    Okay, well i just figured out one way using the IsNumeric() Function: If ogSearchBy.Value = 1 Then selectStr = "SELECT * FROM lclCustomerInfo WHERE ciLastName = '" & tbSearch.Value & "';" ElseIf ogSearchBy.Value = 2 Then selectStr = "SELECT * FROM lclCustomerInfo WHERE ciUserName = '"...
  13. DaveRussell

    Only Numbers in textbox

    Hi there, first... thanks for all the contributions you people make in this forum, i have gotten many a question answered just by reading the posts. second: I am trying to create a text box that will only allow numbers to be imputted into it when a certain contition is true... here is my code...
  14. DaveRussell

    vb.NET standard reporting

    hmmmm, i have developed an application using VB standard, and i need to create a report. what is the best way to do that, it would appear that Crystal isn't packaged with it... if i'm going to need to buy report software, which would be the best choice? thanks, dave.
  15. DaveRussell

    Windows Form Textbox value to Crystal SQL

    Thanks for the reply sunaj! allright, i've gotten that far, now what would be the best way to pass the SQL string var into the crystal report's SQL query?

Part and Inventory Search

Back
Top