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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: DaveRussell
  • Order by date
  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?
  16. DaveRussell

    Windows Form Textbox value to Crystal SQL

    is there a way to pass a value from a textbox to be included into the SQL that will create the recordset my Crystal Report uses (crystal report is being viewed on a separate form)? for example, a textbox on my form has a value of 19. i need to pass that 19 to the WHERE clause in my SQL. is...
  17. DaveRussell

    2 forms already created in Design mode, need to load second from first

    thank you devCity.net for this one: Private Sub ShowForm2Button_Click(ByVal sender As System.Object, _ ByVal e As System.EventArgs) Handles ShowForm2Button.Click Dim F2 As New Form2() F2.Show() End Sub Form2 is the Form2.vb I had designed, i guess it was pretty simple. thanks...
  18. DaveRussell

    2 forms already created in Design mode, need to load second from first

    Hello, I have two windows forms already created in my designer. I have looked through the forums to find out how to open the second form from the first form, but haven't quite found a clear answer. The form i am trying to load is going to be a search form, where the user will enter an ID...
  19. DaveRussell

    Binding the Checkbox in a CheckListBox to a dataset

    I should elaborate. Basically i have 1 listbox with options, and one checkedlistbox with specifics related to the options. when a user selects an item in the listbox, the checkedlistbox changes. The CheckedListBox is bound to a DataSet, and records to the dataset when the user selected...
  20. DaveRussell

    Binding the Checkbox in a CheckListBox to a dataset

    I am trying to make a dataset mirror the users input to a CheckListBox - eg. when the user checks an option, the dataset is updated. what is the easiest way to do that? Thanks Dave.

Part and Inventory Search

Back
Top