Prev: Can not choose in combo
Next: MoveNext
From: H. Martins on 1 Jun 2010 06:26 I have a form whose default view is 'continuous form'. Then when I click a button I need to delete the record where the mouse is (was just) placed. How can I find out the record number? Alternatively any idea is welcome. Thanks Henry
From: Dirk Goldgar on 1 Jun 2010 07:03 "H. Martins" <hjrmartins(a)gmail.com> wrote in message news:b4ab14e1-51c6-4c16-8a78-bc7df76670de(a)k31g2000vbu.googlegroups.com... >I have a form whose default view is 'continuous form'. > > Then when I click a button I need to delete the record where the mouse > is (was just) placed. > > How can I find out the record number? > > Alternatively any idea is welcome. > > Thanks > Henry Records don't have inherent record numbers, since they can be sorted in many different ways. But you don't need a record number to delete a record. If your button is in the form's detal section, then clicking it will make that record the current record, and if the button is in the form's header or footer, the form's current record will remain the same as it was before clicking the button. Therefore, you can just tell Access to delete the current record: RunCommand acCmdDeleteRecord -- Dirk Goldgar, MS Access MVP Access tips: www.datagnostics.com/tips.html (please reply to the newsgroup)
From: H. Martins on 1 Jun 2010 07:33 Dirk, > and if the button is in the form's header or > footer, Indeed the case. >the form's current record will remain the same as it was before > clicking the button. Therefore, you can just tell Access to delete the > current record: > > RunCommand acCmdDeleteRecord > Well, I get "The command or action 'Delete Record' isn't available now" ... Just in case, this is the query: SELECT tblTurmaMatriz.lintTurmaVaziaKSlave, tblAlunos.txtNomeAluno FROM tblAlunos RIGHT JOIN tblTurmaMatriz ON tblAlunos.tblAlunosKMaster=tblTurmaMatriz.lintAlunosKSlave WHERE (((tblTurmaMatriz.lintTurmaVaziaKSlave)=forms.frmTurmaMatriz.cmbbxTurma)) ORDER BY tblAlunos.txtNomeAluno; I need to delete current record of tblTurmaMatriz. Thanks Henry
From: H. Martins on 1 Jun 2010 09:55 Ok. I got this one running: Private Sub btnRemover_Click() Dim rs As DAO.Recordset Dim RecIndex As Integer Dim strSelect As String RecIndex = [lintTurmaMatrizKMaster] ' RunCommand acCmdDeleteRecord MsgBox RecIndex If IsNull([Form].[CurrentRecord]) Then ' ******** I suppose it doesn't work - I'll see later MsgBox "Erro: Seleccione um registo (clicando com o rato) na listagem seleccionando, eventualmente, uma turma." Exit Sub End If MsgBox "vai apagar o aluno lintTurmaCheiaKMaster = " & RecIndex strSelect = "SELECT tblTurmaMatriz.lintTurmaMatrizKMaster FROM tblTurmaMatriz WHERE tblTurmaMatriz.lintTurmaMatrizKMaster = " & RecIndex Set rs = DBEngine(0)(0).OpenRecordset(strSelect) If Not rs.EOF Then rs.Delete End If rs.Close Set rs = Nothing Me.Requery End Sub Now, I would prefer something like Set rs = DBEngine(0)(0).OpenRecordset("qryTurmaMatrizAlunoApaga") rs.Filter = "lintTurmaMatrizKMaster = """ & RecIndex & """" rs.Requery '' ****** not sure it is needed The query "qryTurmaMatrizAlunoApaga" is the same as strSelect Thanks for help, Henry
|
Pages: 1 Prev: Can not choose in combo Next: MoveNext |