Subforn Column Name

  • Thread starter Thread starter Mr K
  • Start date Start date
Yes. I assume you mean dynamically due to some event. For instance, a
double-click of the date field in a subform can change the column name,
which is a label, like this:

Private Sub TransactionDate_DblClick(Cancel As Integer)
[TransactionDate_Label].Caption = "Damon"
End Sub

HTH
Damon
 
Back
Top