comicwizard
Registered User.
- Local time
- Today, 11:17
- Joined
- Mar 24, 2011
- Messages
- 15
Hi i have a trigger on a form which once something is choosen goes to a look up table and should auto populate from that table. Since that table has multiple columns I am trying to get the code to choose from the second column. My code doesn't work. help.
Private Sub Forum_AfterUpdate()
If Me.Forum = "6" Then
Me.Forum_Other.Enabled = True
Me.Forum_Other = ""
ElseIf Me.Forum <> "6" Then
Me.Forum_Other.Enabled = False
Me.Forum_Other = Me.Forum.ColumnWidths = "0 in,1 in,0 in"
End If
End Sub
Private Sub Forum_AfterUpdate()
If Me.Forum = "6" Then
Me.Forum_Other.Enabled = True
Me.Forum_Other = ""
ElseIf Me.Forum <> "6" Then
Me.Forum_Other.Enabled = False
Me.Forum_Other = Me.Forum.ColumnWidths = "0 in,1 in,0 in"
End If
End Sub