Hello again!
I am trying to build a form that will show the User Permissions level, uSecurityID, based off a combo box (dropdown) selection.
I have a SubForm "sf_qry_UserPermissions," a Form "FrmUserPermissions," and a Query "QryUserPermissions".
The subform pulls from the query just like I want it to. My problem is getting a ComboBox on the SubForm to automatically update the results of the SubForm/Qry.
Help would be greatly appreciated!
For example, if 2 was selected in the combobox, it would show me this;
[TABLE="width: 500"]
<tbody>[TR]
[TD]uUserID[/TD]
[TD]uFirstName[/TD]
[TD]uLastName[/TD]
[TD]uEDIPI[/TD]
[TD]uRank[/TD]
[TD]uLastLogon[/TD]
[TD]uLogonCount[/TD]
[TD]uSecurityID[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]10[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]2[/TD]
[/TR]
</tbody>[/TABLE]
And if 9 was selected in the combobox, it would show me this;
[TABLE="width: 500"]
<tbody>[TR]
[TD]uUserID[/TD]
[TD]uFirstName[/TD]
[TD]uLastName[/TD]
[TD]uEDIPI[/TD]
[TD]uRank[/TD]
[TD]uLastLogon[/TD]
[TD]uLogonCount[/TD]
[TD]uSecurityID[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]9[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]9[/TD]
[/TR]
</tbody>[/TABLE]
I am trying to build a form that will show the User Permissions level, uSecurityID, based off a combo box (dropdown) selection.
I have a SubForm "sf_qry_UserPermissions," a Form "FrmUserPermissions," and a Query "QryUserPermissions".
The subform pulls from the query just like I want it to. My problem is getting a ComboBox on the SubForm to automatically update the results of the SubForm/Qry.
Help would be greatly appreciated!
For example, if 2 was selected in the combobox, it would show me this;
[TABLE="width: 500"]
<tbody>[TR]
[TD]uUserID[/TD]
[TD]uFirstName[/TD]
[TD]uLastName[/TD]
[TD]uEDIPI[/TD]
[TD]uRank[/TD]
[TD]uLastLogon[/TD]
[TD]uLogonCount[/TD]
[TD]uSecurityID[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]10[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]2[/TD]
[/TR]
</tbody>[/TABLE]
And if 9 was selected in the combobox, it would show me this;
[TABLE="width: 500"]
<tbody>[TR]
[TD]uUserID[/TD]
[TD]uFirstName[/TD]
[TD]uLastName[/TD]
[TD]uEDIPI[/TD]
[TD]uRank[/TD]
[TD]uLastLogon[/TD]
[TD]uLogonCount[/TD]
[TD]uSecurityID[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]9[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]...[/TD]
[TD]9[/TD]
[/TR]
</tbody>[/TABLE]