Recent content by Rameez

  1. R

    problem in OnError...

    AFter some googling...I found this link http://bytes.com/groups/ms-access/450663-problem-error-go-event-procedure Then I added If me.dirty then me.dirty=False into my code...i even used resume...but the prob is the error message box pops up even on successful execution.
  2. R

    problem in OnError...

    Sorry Dave... I missed to see the last line and called you Gemma...sorry :D
  3. R

    problem in OnError...

    I am puttig the actual code....Please do help me out Gemma. Private Sub cmdadd_Click() On Error GoTo Error_Handle Dim todaydate todaydate = Now() 'setuser is a function already defined in another module.This works correct Dim updater As String updater = setuser() 'validations If...
  4. R

    problem in OnError...

    please help...
  5. R

    Problem if i chnage the database name

    If i give it to my reviewer and she renames it...then? the code won't work and she will get a error... so i want to remove dependency on name....:D
  6. R

    problem in OnError...

    Here's a problem...i hope you can solve it...I don't understand where I am going wrong. Function test1234(....) On Error GoTo errorcode ... ... docmd.runsql "........" docmd.runsql "........" Msgbox "executed successfully" Exit Function errorcode: Msgbox "not executed" End Function The problem...
  7. R

    Problem if i chnage the database name

    currently name of my database is tool.mdb...if i change it to some thing else...it won't work...how to remove this dependency... the error is in this part of the code strConn = "Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=" & CurrentProject.Path & "\tool.mdb;"...
  8. R

    Help with graphs

    I have been trying this for many days...but i have not got any result. I have even googled extensively. Please help me out in this. This is my last stop. I have to plot graphs based on data in a access table. the data is some thing like this Area Commodity Month Target...
  9. R

    How to make access database multiuser

    Thanks Allan...looks like my post was put here twice...I DON'T KNOW HOW
  10. R

    How to make access database multiuser

    Is there any way out...like having a lock on all tables...something like that..?
  11. R

    How to make access database multiuser

    Thanks a lot for being so helpful...That worked well... One more issue...can you please suggest me on this... in the front end, if some one holds shift and opens, then he can see the data in all the linked tables...which he is not supposed to...How to change this.... Thanks & Regards
  12. R

    How to make access database multiuser

    Hi, I split my database to backend and front end. my tutor wants it to be set up on "LAN" and she should be able to use the front end... The prob is it is working only if BE and FE are in the same folder... now how should i proceed... Please help me out. Thanks in advance
  13. R

    How to make access database multiuser

    Hi, I split my database to backend and front end. my tutor wants it to be set up on "LAN" and she should be able to use the front end... The prob is it is working only if BE and FE are in the same folder... now how should i proceed... Please help me out.
  14. R

    Help with ' in data and SQL Statement

    Thanks DcRake
  15. R

    Help with ' in data and SQL Statement

    what's chr(34)...even i have the same prob...
Back
Top Bottom