access data on subfom in a tabbed form?

  • Thread starter Thread starter jan
  • Start date Start date
J

jan

Hello

i am not an expert at all so i would like to delve into this knowlegde
source.

I would like to enable/disable editing data in this situation
"headform / tabbed-subform / paticular tabsheet / subform/ idividual
txtfields
adressenlijst/tabbesetEl43/page44/subformadressenlijst/adres
I only get this far and I would like to get to the individual boxes in the
subform

Private Sub raadplegen_Click()
Forms!adressenlijst!TabbestEl43.Visible = False
' u kunt niets wijzigen in het subformulier sfrmFormulier

End Sub

I cannot get it right ...
Jan
 
Thanks I am trying the logic of subforms demonstrated in your site.

Seems logic.

You can get mme on the right track



Jan

Allen Browne said:
Try something like this:
Forms.[adressenlijst].[TabbestEl43].Form![YourTextboxNameHere].Visible =
False

If the .Form bit is new, see:
http://allenbrowne.com/casu-04.html

If you hide a text box in a continuous form or datasheet, it disappears
from all the rows. If that is what you are trying to do, you can simulate
it with conditional formatting. Details:
http://www.lebans.com/conditionalformatting.htm

--
Allen Browne - Microsoft MVP. Perth, Western Australia.

Reply to group, rather than allenbrowne at mvps dot org.

jan said:
i am not an expert at all so i would like to delve into this knowlegde
source.

I would like to enable/disable editing data in this situation
"headform / tabbed-subform / paticular tabsheet / subform/ idividual
txtfields
adressenlijst/tabbesetEl43/page44/subformadressenlijst/adres
I only get this far and I would like to get to the individual boxes in
the subform

Private Sub raadplegen_Click()
Forms!adressenlijst!TabbestEl43.Visible = False
' u kunt niets wijzigen in het subformulier sfrmFormulier

End Sub

I cannot get it right ...
Jan
 
Back
Top