Hello; I'm getting some blank rows in my Quick Jump listbox. I've made sure that the only items in the list are those that I want to show on the menu. I've also made sure that the Menu tab on Step 9 shows only those tables I want to see. Is the Quick Jump listbox showing detail entries as well? If so, how can I dis-engage? Thanks
Hi, make sure you didn't delete Caption for some tables on the Datasource table tab in ASPRunner.
Don't check off Create menu item for this table checkbox if you don't want to add this table to the Menu page.
S
stevemcm author9/1/2005
Thanks, I'll try again. I've done that several times - it seems that the program does not like to "undo" these settings. When I click on a table that I don't want to use(either inadvertently or otherwise), it thinks I want to use it. The app always checks "Create Menu Item for this Table". When I uncheck both the selection box or the "Create Menu Item for this Table". I'll see if I can get the app to undo some selections... THanks
S
stevemcm author9/1/2005
Hello Sergey; I believe I've found the problem. When I log in as the Administrator, the GetTables function returns ALL tables checked - whether I want to show them as a menu item as well. In my project, I've got some tables that are a Detail of a Master, so I don't want them to appear on the main menu. My Admin userid is Steve, so the below code is what shows up on the aspFunctions page: Function GetTables(sUserName) Select Case sUserName Case "Steve"
End Select The tables in the Case Else statement are the only ones I want to show... Since I'm the only Administrator, I guess that's OK. All other users will log on as themselves and will see the appropriate tables (I guess)... Steve