Hi Everyone,
All my research leads to http://www.lebans.com/alternatecolord etailsection.ht m BUT it's a .mdb file I can't open so I'm not sure if it will help my learning curve or not. I also looked at this topic frim Michael R. [Row numbers and alternate colors to a Continuous Form] but couldn't decipher it.
Can anyone help me access the content please or guide me in the right direction?
For the subforms the following is true:
Property Sheet.Data
.Row Source = qryQx1_QuoteLis t
.Link Master Fields = CxID
.Link Child Fields = QxCxID
Basically, the subform mu users want is using an unbound List.Rowsource to pull the data since my users prefer to be able to double-click anywhere on the whole line to open the next form (onDoubleClick) .
I did show them a version where the subform is bound List.Rowsource as a continuous form. Unfortunately, they didn't like that version because it forced them to click an "Open" hyperlink at the end of the record to open the next form (instead of being able to double clikc anywhere on the line). HOwever, they did like the alternate row colors and have asked if it's possible to keep that feature.
Alternatively, is there a way to make the records on the bound form behave the same way they would in an unbound list?
All my research leads to http://www.lebans.com/alternatecolord etailsection.ht m BUT it's a .mdb file I can't open so I'm not sure if it will help my learning curve or not. I also looked at this topic frim Michael R. [Row numbers and alternate colors to a Continuous Form] but couldn't decipher it.
Can anyone help me access the content please or guide me in the right direction?
For the subforms the following is true:
Property Sheet.Data
.Row Source = qryQx1_QuoteLis t
.Link Master Fields = CxID
.Link Child Fields = QxCxID
Basically, the subform mu users want is using an unbound List.Rowsource to pull the data since my users prefer to be able to double-click anywhere on the whole line to open the next form (onDoubleClick) .
Code:
Private Sub OpenQxDetails_DblClick(Cancel As Integer) Dim strOpenQuote As String Dim stLinkCriteria As String stLinkCriteria = "[QxNbr]=" & Me.[QxNbr] strOpenQuote = "frmMainQuote" DoCmd.OpenForm strOpenQuote, , , stLinkCriteria, acFormEdit End Sub
Alternatively, is there a way to make the records on the bound form behave the same way they would in an unbound list?
Comment