D
disneygoof via AccessMonster.com
I love this site....if I haven't mentioned that before...
I have another STRANGE issues. I have a form 'A' and subform 'B' (continuous
layout). I have buttons on the subform that open another form 'C' and set
the seconf form to the PROJECTID of the subform...works fine.
I added a button to the first form 'A' to filter on a specifc column:
Private Sub AllProjects_Click()
If Me.FilterOn = True Then
Me.Filter = ""
Me.FilterOn = False
Me.AllProjects.Caption = "Show My Projects"
Me.AllProjects.ForeColor = vbBlue
Me.Refresh
Else
Me.Filter = "[LoginUsername] = '" & GetUserName() & "'"
Me.FilterOn = True
Me.AllProjects.Caption = "Show All Projects"
Me.AllProjects.ForeColor = vbBlack
Me.Refresh
End If
End Sub
Problem:
Up until about 2 months ago this wa working OK, NOW when a user clicks the
filter button and then tries to open form C, nothing happens. Calculating...
appears in the lower left, but nothing happens...
Strange part:
If I have them minimize the Application (YES the Application), then maximize
it, the form show's up. If they close the form C and reopen the form C it's
fine...UNTIL they click the filter button again.
The stranger thing:
This does not happen on MY laptop...
HELP!
David
I have another STRANGE issues. I have a form 'A' and subform 'B' (continuous
layout). I have buttons on the subform that open another form 'C' and set
the seconf form to the PROJECTID of the subform...works fine.
I added a button to the first form 'A' to filter on a specifc column:
Private Sub AllProjects_Click()
If Me.FilterOn = True Then
Me.Filter = ""
Me.FilterOn = False
Me.AllProjects.Caption = "Show My Projects"
Me.AllProjects.ForeColor = vbBlue
Me.Refresh
Else
Me.Filter = "[LoginUsername] = '" & GetUserName() & "'"
Me.FilterOn = True
Me.AllProjects.Caption = "Show All Projects"
Me.AllProjects.ForeColor = vbBlack
Me.Refresh
End If
End Sub
Problem:
Up until about 2 months ago this wa working OK, NOW when a user clicks the
filter button and then tries to open form C, nothing happens. Calculating...
appears in the lower left, but nothing happens...
Strange part:
If I have them minimize the Application (YES the Application), then maximize
it, the form show's up. If they close the form C and reopen the form C it's
fine...UNTIL they click the filter button again.
The stranger thing:
This does not happen on MY laptop...
HELP!
David