Search results

  1. JPaulo

    Send mdb to winzip

    Fantastic, works perfect. Very, very thanks
  2. JPaulo

    Question Password Recovery

    See; http://www.straxx.com/excel/password.html
  3. JPaulo

    Send mdb to winzip

    Hi all; How to zip mdb via vba ?
  4. JPaulo

    Copy and Paste Row

    Hi, thanks for response. Resolved: Range(rCell.Offset(0, 5), rCell).Select
  5. JPaulo

    Copy and Paste Row

    Hi all; I open Book2, I enter the user name and password and must make the copy and paste the whole line and not only found the cell. See attc please
  6. JPaulo

    Pop-Up Calendar Control With No Default Date?

    In DTPicker ActiveX control does not work with data = null this is initial doubt man
  7. JPaulo

    Pop-Up Calendar Control With No Default Date?

    Hello do not use the Microsoft Date and Time Picker Control 6.0 (SP6), see this example in attc:
  8. JPaulo

    Validation null fields in continuous forms

    Ok; Any idea for this validation?
  9. JPaulo

    Validation null fields in continuous forms

    Thanks for reponse; But I wanted to validate the end of the completed form, a button. Private Sub cmdValidation_Click() Call valNullControl(Me) End Sub
  10. JPaulo

    Validation null fields in continuous forms

    Hi all; How to validation null fields in continuous forms, with this code by tag ??? Public Function valNullControl(frm As Form) Dim ctl As Control Dim minhaArray As String Dim validacaoOk As Byte validacaoOk = 0 For Each ctl In frm.Controls If ctl.Tag <> Null Or ctl.Tag <> "" Then...
  11. JPaulo

    Question Password Recovery

    See is solves.
  12. JPaulo

    Blocking input data

    I not had remembered this option, thanks
  13. JPaulo

    Blocking input data

    Block access for data entry, but without blocking the query to the data in the backend. I could block the entry forms but many users.
  14. JPaulo

    Blocking input data

    Hi all; How to blocking input data on the front end .md for all users ?
  15. JPaulo

    Bluetooth integration

    Hi all; Bluetooth integration with Microsoft Access, it is possible ?
  16. JPaulo

    Cclose Excel if idle for 10 minutes

    Thanks for responding, it works brilliantly.
  17. JPaulo

    Cclose Excel if idle for 10 minutes

    Hi all; it is possible to close Excel if idle for 10 minutes ? Excel 2003
  18. JPaulo

    Log in user name and password

    See also this example that will help
  19. JPaulo

    Log in user name and password

    Sorry test please: Dim xlog As Variant If xlog = DLookup("[Password]", "login", "[Password]='" & Me.Password & "' And [username]='" & Me.UserName & "'") Then
  20. JPaulo

    button to open form

    Hi: Try; form1 DoCmd.OpenForm "Vendor Details", acNormal, , , , , Nz(Me.ID,0) form2 Private Sub Form_Open(Cancel As Integer) If IsNull(Me.OpenArgs) Or Me.OpenArgs = 0 Then Exit Sub Else Me.Filter = "ID=" & OpenArgs Me.FilterOn = True End If End Sub
Back
Top Bottom