Recent content by Tragac011

  1. T

    Query

    I want/need to know did I earn money for every to know can I pay wages for every praticulari day. If I cann't I need to split income for that day betweeen workers . What you reccomend to do, do that in table?
  2. T

    Query

    can anybody help me wtih this?
  3. T

    Email from form

    Yes but I didnt find want I need. I need that command or button in form where is detailed, if You understand me
  4. T

    Query

    Can I solve this in query I have customer that stay in hotel from example 01/09/2014 to 20/09/2014 and they paid for that some money. And I have customer that stay from 10/09/2014 to 24/09/2014. I need query that will split the money to every day from 01/09/2014 to 24/09/2014 to see for every...
  5. T

    Email from form

    I create a form that contains all my customes and I need some way to send email to customer that I want..I dont need any attachment to send .
  6. T

    How to validate a field in form

    Now its work everything Thanks
  7. T

    How to validate a field in form

    Yes I see the differenc I was remove wrong )
  8. T

    How to validate a field in form

    Code If Len(Me.Datum_ugovora) & vbNullString = 0 Then Cancel = True MsgBox Me.Datum_ugovora & " is required" Me.Datum_ugovora.SetFocus End If If Len(Me.Od_kada_je_kod_nas) & vbNullString = 0 Then Cancel = True MsgBox Me.Od_kada_je_kod_nas & " is...
  9. T

    How to validate a field in form

    Code [code] If Len(Me.Datum_ugovora) & vbNullString = 0 Then Cancel = True MsgBox Me.Datum_ugovora & " is required" Me.Datum_ugovora.SetFocus End If If Len(Me.Od_kada_je_kod_nas) & vbNullString = 0 Then Cancel = True MsgBox Me.Od_kada_je_kod_nas &...
  10. T

    How to validate a field in form

    Unfortunately, You was right. I have problem with that code I can open next record never mind that I didn;t fill neccesery data
  11. T

    How to validate a field in form

    I dont want to push my luck any more, for tonight:)
  12. T

    How to validate a field in form

    That is the message that appear when I put that code in Before Update I found the problem Dont need ) in first row It solved. Thank You
  13. T

    How to validate a field in form

    Compile error: Expected: Then or Go to
  14. T

    How to validate a field in form

    My code is like this With DoCmd .RunCommand acCmdSelectRecord .RunCommand acCmdCopy .GoToRecord , , acNewRec Me.AllowEdits = True .SetWarnings False .RunCommand acCmdPaste .SetWarnings True Me.AllowEdits = False...
  15. T

    How to validate a field in form

    I need to validate field in form so user cant not skip that data How to do that?
Back
Top Bottom