NauticalGent
Ignore List Poster Boy
- Local time
- Today, 13:40
- Joined
- Apr 27, 2015
- Messages
- 6,754
Trust me on this one, they are evil.
That is all...
That is all...
Yeah yeah, kick me when I'm down......as I heeded the warnings!
MajP,What cracks me up about split forms is that people will post a problem and it takes hours to figure it out, going back and forth. Or you can build all of those features in 10 to 15 minutes and be done.
It is like multi value fields. It is real easy to implement, and then a huge problem to fix it when you want to do more or not working as you expect. Sure if it meets their needs out of the box great, with a big caution. I see these threads all the time that go on and on with people trying to trouble shoot them or modify them to meet their needs. When maybe what Uncle Gizmo says is needed a little better explanation, although I thought there was some good explanation on building an "emulated split form" already. I might be optimistic, but I think even a novice can roll their own about as easy as using a split form. It is nothing but a form with a subform, which most novices can do.Remember that is straight out of the box, no code necessary.?
Same here, that is why I have a huge Access library organized into types. If I need to work with or answer a question in Excel I look there, if I need to do something with colors I look there,....but will admit every time I need to create a new one, I go back to review a previously created one, but then my memory is rubbish.![]()
The latest ESF allows for sorting from column headers.?Col's version isn't exactly what I was looking for. Bottom line, I wanted it to look and behave EXACTLY like the split forms do as datasheet sort features at the top of each column has become very handy. When I hinted that I may take it away, there was much wailing and gnashing of teeth...
A quick google search gave me a viable solution and now my robust validation/BeforeUpdate routines work great. The important thing (as CJL told me 2 years ago!) is to NOT link the parent and child fields.
Hi. Would you mind posting a demo of your split form with the broken BeforeUpdate event, so I can learn from it? Thanks.Col's version isn't exactly what I was looking for. Bottom line, I wanted it to look and behave EXACTLY like the split forms do as datasheet sort features at the top of each column has become very handy. When I hinted that I may take it away, there was much wailing and gnashing of teeth...
A quick google search gave me a viable solution and now my robust validation/BeforeUpdate routines work great. The important thing (as CJL told me 2 years ago!) is to NOT link the parent and child fields.
I thought there was some good explanation on building an "emulated split form" already.
Sent you a PMHi. Would you mind posting a demo of your split form with the broken BeforeUpdate event, so I can learn from it? Thanks.
Private SelectedButton
Public Function FilterForm()
Set SelectedButton = ActiveControl
Me.Controls(ActiveControl.Tag).SetFocus
Me.Recordset.MoveFirst
DoCmd.RunCommand acCmdFilterMenu
End Function
Private Sub Form_ApplyFilter(Cancel As Integer, ApplyType As Integer)
Dim cmd As Access.CommandButton
Set cmd = SelectedButton
If InStr(Me.Filter, cmd.Tag) > 0 Then
cmd.Picture = "Filter"
Else
cmd.Picture = "Down"
End If
End Sub