How to make the following accept numeric value?
Private Sub Kood_BeforeUpdate(Cancel As Integer)
If DCount("[Kood]", "asukohad", "[Kood]= '" & Me![Kood] & "'") = 1 Then
MsgBox "Already here."
Me.Undo
Cancel = True
End If
End Sub
How can I make Access XP show quotation? Example. Report output should be Title "title" and I used in control source ="title "" & [title] & """. Access, of course, is confused. There must be a way to present quotation.
How can I retrieve customized contents text output file when to click button? @ the moment I use DoCmd.OutputTo acOutputQuery, "myQuery", acFormatTXT, "96.txt", True
Actually I have a text file containing minutes and seconds only. In conversion Access will report errors, of course (because of mine has totalminutes:seconds only).
I can edit all data when I select or type a value from primary key combo box. But how can I edit primary key value itself so it will apply all related data? I have a form with a subform. I tried to duplicate a record but of course duplicate value errors appeared. I think an additional text field...