Recent content by gluse

  1. G

    variable form and subform

    fixit Private Sub NAZIV_DblClick(Cancel As Integer) Dim FormName As String Dim NAZIV As String Dim CJENA As String Dim KOLICINA As String Dim SIFA As String Dim UKUPNO As String FormName = Forms![FILTERIZBORNIK]![pozicija] NAZIV = FormName + "N" CJENA = FormName + "C" KOLICINA = FormName +...
  2. G

    variable form and subform

    compile error syntax error
  3. G

    variable form and subform

    I want the forms to open a new form by sending a variable order in a new form, and double-click on the label to send the data back to the first form
  4. G

    variable form and subform

    Dim broj Dim strForm As String strControl As String strSubformControl As String broj = Forms![FILTERIZBORNIK]![pozicija] strForm = "osnovni podaci" strSubformControl = "stac upis desna" strControl = "1N" Forms![(strForm)]![strSubformControl].Form![(strControl)] = broj not work error end line
Back
Top Bottom