Subforn Column Name

  • Thread starter Thread starter Mr K
  • Start date Start date
M

Mr K

Once more!

Can a subform column name be changed, if so how?

Thanks,

Mr K
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top