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 bkrike 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 davetek

  1. davetek

    Removing spaces from string

    using access97 and replace function isn't there unfortunately.
  2. davetek

    Removing spaces from string

    Hi, I have a string in the format '001 555 2391'. I want to convert this to 0015552391. Any suggestions? Thanks.
  3. davetek

    Remove spaces from string

    The database i'm using actually does not allow replace function.
  4. davetek

    Remove spaces from string

    Hi, I have a string in the format '001 555 2391'. I want to convert this to 0015552391. Any suggestions? Thanks.
  5. davetek

    Executing stored procedure from vba

    Sorry, I don't understand what you mean?
  6. davetek

    Executing stored procedure from vba

    hi, i am trying to execute a stored procedure from excel(vba)...this works fine when i pass one parameter. however when i pass the second to the SP it does not work. Cmd.ActiveConnection = cnt Cmd.CommandType = adCmdStoredProc Cmd.CommandText = "SP_CreateTest" Cmd.Parameters.Append...
  7. davetek

    Finding a character in a string

    Hi, I have a string "ABC;DC" and I only want to see ABC. However the number of characters prefixing the ";" will change. Can someone tell me of a way do this using a view? Many Thanks.
  8. davetek

    Defult Value of Text Box

    hey, I want to put the default value of a text box equal to the result of a query... in the default value of the text field i have =[Query1]![Name1] it keeps returning #Name? however.... anyone...
  9. davetek

    LostFocus/Setfocus Problem

    hey, i have a form with multiple text boxes and combo boxes. one of the conditions is that when you enter data in combo box A, text field B is automatically filled in. i have this working by using the LostFocus function on the combo box event. this works fine. the problem i have is when i error...
  10. davetek

    97 vs 2000 question

    thanks guys...
  11. davetek

    97 vs 2000 question

    cheers foolio....
  12. davetek

    97 vs 2000 question

    I have a MS Access 97 database with 5 users.. my first question is: are there any multi-user issues i should be aware of (i.e. can all users read and write to the database at the same time.?) my second question is: one of the users has Access 2000...will it be possible for him to use the same...
  13. davetek

    Timer +Event

    Hey, I have a form, which displays data from tables...multiple users input data to these tables.... what i need to do is have this form refresh every 30 secs or so..... i have a refresh button which does the trick: Sub refresh() Form_ViewData.Refresh End Sub however, what i want, is to...
  14. davetek

    Delete Record +DAO

    Hey, I'm trying to do a basic delete query using DAO.... can anyone see where i'm going wrong... Dim dbs As Database, rst As Recordset Dim ssql As String Set dbs = CurrentDb ssql = "delete * from Tbl where key = '1';" Set rst = dbs.OpenRecordset(ssql)...

Part and Inventory Search

Back
Top