Notice: Undefined offset: 2 in /home2/icentarb/public_html/icentar/classes/class.permissions.php on line 735
Private Sub C_VERIFICIRAJ_Click()
On Error GoTo Err_C_VERIFICIRAJ_Click
Dim rec As Integer, I As Integer
Dim db As DAO.Database
Dim rs As DAO.Recordset
Dim rs2 As DAO.Recordset
Dim MySQL As String
Set db = CurrentDb
Set rs = db.OpenRecordset("Q_Verifikacija")
rec = rs.RecordCount
If rec > 0 Then
rs.MoveFirst
Do While Not rs.EOF
rs.Edit
rs!V_Broj = "456666"
rs.Update
MySQL = "SELECT * FROM tblProdaja WHERE OrderID = rs!ID_RAC"
Set rs2 = db.OpenRecordset(MySQL)
rs2.Edit
rs2!V_Broj = rs!V_Broj
rs2.Update
rs.MoveNext
Loop
End If
Me.Requery
rs.Close
Set rs = Nothing
Set db = Nothing
If DCount("*", "Q_Verifikacija") = 0 Then
MsgBox "Svi ra
uni su uspjeĆĄno verificirani", vbInformation
GoTo Exit_C_VERI