Hi,
I have a couple of questions that I hope someone might be able to answer because frankly I'm lost!
Q1. I have a continuous form which can list a couple of hundred records, obviously each line represents an individual line/record from a table. Now one of the fields displayed in each record is a checkbox . On the form I have a button which allows the user to specify a group of records he would like to 'check' ( i.e. the button checks off the relevant checkboxes). When this happens I want that record/records to appear in the visible area of the screen. I want the continuous form to somehow scroll down to the first 'ticked' checkbox so that the user doesn't have to scroll down a very long list themselves. Is this possible?
Q2. Next I have a query/form question. I have a custom dialog box which a query gets it's information from. I still want the query to run if the user doesn't enter some of the information in the fields in the dialog box. For example if the user doesn't enter text in a particular field, when the OK button on the dialog box is clicked I have the following code:
code:--------------------------------------------------------------------------------Me![some_field].value = "*"'code after this opens the form and runs the query
--------------------------------------------------------------------------------
I thought the query would then us this * value as it's criteria for that field but that doesn't seem to be the case. Is there some way I can pass this type of "generic" criteria to an underlying query?
Hope this all makes sense !
Liam
I have a couple of questions that I hope someone might be able to answer because frankly I'm lost!
Q1. I have a continuous form which can list a couple of hundred records, obviously each line represents an individual line/record from a table. Now one of the fields displayed in each record is a checkbox . On the form I have a button which allows the user to specify a group of records he would like to 'check' ( i.e. the button checks off the relevant checkboxes). When this happens I want that record/records to appear in the visible area of the screen. I want the continuous form to somehow scroll down to the first 'ticked' checkbox so that the user doesn't have to scroll down a very long list themselves. Is this possible?
Q2. Next I have a query/form question. I have a custom dialog box which a query gets it's information from. I still want the query to run if the user doesn't enter some of the information in the fields in the dialog box. For example if the user doesn't enter text in a particular field, when the OK button on the dialog box is clicked I have the following code:
code:--------------------------------------------------------------------------------Me![some_field].value = "*"'code after this opens the form and runs the query
--------------------------------------------------------------------------------
I thought the query would then us this * value as it's criteria for that field but that doesn't seem to be the case. Is there some way I can pass this type of "generic" criteria to an underlying query?
Hope this all makes sense !
Liam