Search results

  1. L

    Cannot update database or object is read-only

    Hi, I'm trying remove actual record by this VB code: Private Sub Command41_Click() On Error GoTo Err_EditDelBox_Click Dim rs As Recordset Dim strBMark As String Set rs = Forms!Media.Form.RecordsetClone With rs Do Until .EOF .Delete .MoveNext Loop End With...
  2. L

    Go to another form

    Hi there! I'm quite new in Access and I faceing this problem. I have two tables A and B with relationship one-to-one. I would like to create button and put it on form of table A which has onClick event some trigger that open form of table B but with relevant record. I mean A.id = B.id. How can...
  3. L

    create many subforms

    Hi there, I'm litte bit a greenhorn of Access forms. I have 7 tables one of them "Movie" is the main. The remain ones are for details (Subtitle, MovieTrailer,ScreenShot...). These remain tables have relationships many-to-one to the Movie. I try to create main form of movie with six subforms...
Back
Top Bottom