Recent content by gurdiga

  1. G

    ReachEdit

    I ment RIchEdit, sorry:rolleyes:
  2. G

    ReachEdit

    How can I put a ReachEdit into a form?
  3. G

    Reserved error 2950

    Private Sub Form_Open(Cancel As Integer) 'On Error GoTo 1 DoCmd.Maximize Form_CereCerere.Visible = False If UBound(Certificat.Produs) = 0 Then MsgBox "Nu s-a acumulat informatia pe produsele din cerere", vbCritical, " " DoCmd.CancelEvent Exit Sub End If...
  4. G

    Reserved error 2950

    it is enableb. in case it is not enabler occurs an other error. ps is a button control.
  5. G

    Reserved error 2950

    this is a part of the code: ... ... Produse_selectate.Caption = IIf(ps.ListCount = 0, 0, ps.ListCount - 1) Produse_ramase.Caption = IIf(pt.ListCount = 0, 0, pt.ListCount - 1) 'here I get the error ps.SetFocus pbin.Enabled = pt.ListCount > 1 And Not Regim =...
  6. G

    Reserved error 2950

    a simple button control.
  7. G

    Open a directory outside of access

    try: shell "explorer c:\path\to\dir"
  8. G

    BIG newbie problem!!!! please help!!

    This query gives you a record with 2 columns, that contains the results you need: SELECT (SELECT Count(*) WHERE Review_result='released without changes')/Count(*)*100 & '%' As [Documents released without changes], (SELECT Count(*) WHERE Review_result='released with changes')/Count(*)*100 &...
  9. G

    Validation syntax problem

    Try to put this in validation rule: iif(date2 Is Not Null,date1<date2,true)
  10. G

    Reserved error 2950

    I get Reserved error 2950 on this command: button.SetFocus what the heck can it be?
Back
Top Bottom