Recent content by guy.murray

  1. G

    Access 97 dbms locks out web clients

    Hi all, I have an Access 97 database working as a web database. Is there any way of opening the Access DBMS without locking out all the web clients? many thanks Guy
  2. G

    Access 97 dbms locks out web clients

    Ignore this post, accidental duplication
  3. G

    Calling subroutine in subform from parent

    Brilliant! Just what I needed. many thanks Guy
  4. G

    Calling subroutine in subform from parent

    Hi, I have a subForm in which I have defined a subroutine. I want to call this subroutine from an event in the parent form. Would be much obliged if someone could explain how to do this. Guy
  5. G

    Access 97 passing object ref to subroutine

    Many thanks for your efforts! Guy
  6. G

    Access 97 passing object ref to subroutine

    Thanks for replying. Produces the same error message. Curiously, putting "msgbox text1.Value" before calling the subroutine behaves as one would expect. The Subroutine seems to treate the object reference as synonymous with its Value property. I wonder what happens with later versions of...
  7. G

    Access 97 passing object ref to subroutine

    Hi, am trying to pass a textBox object (Text1) to a subroutine as in the following simplified eg... Public Sub testSub(objRef As Object) MsgBox objRef.Value End Sub Private Sub Text1_AfterUpdate() testSub (Text1) End Sub This just produces an "Object required" Run-time error...
Top Bottom