I have a litt problem using the command button
When I open a report from the switchboard he askes for the criteria of my report.
When I try to open a report using cmdbuttons he just shows the report without asking.
How can I get this to work
Criteria Between [put begindate in]and [put...
Hy
I have put 3 cmdbuttons on my form to filter my records.
Code: ( text )
'Filter by Form
DoCmd.RunCommand acCmdFilterByForm
Code: ( text )
'Apply Filter
DoCmd.RunCommand acCmdApplyFilterSort
Code: ( text )
'Remove Filter
DoCmd.RunCommand acCmdRemoveFilterSort
But how do i keep the...
Hy
In my database I have two tables one with source info table1 and one table2 I will make a form.
Table1 has information like
code name
1 name1
2 name2
3 name3
Table2 has this
a column with a combobox where you can choose name1,name2,...(thisworks)
I would like, when you...
I use another table as source of my combobox where i refer to like the way you describe. But that's not quite my problem; I posted an like witch my clearify
Here is the exact same problem discription
http://database.ittoolbox.com/groups/technical-functional/access-l/how-to-automatically-populate-a-text-box-based-on-a-value-selected-in-a-combo-box-323839?cv=expanded
In my table1 there is a columm productID and a columm productname which are related
In my form I have a combobox where you can select the productname.
I would like to have a textbox showing the productID of the productname depending of the choice in the combobox.
For example when I choose...
I would like to try just the same. But it won't work.
The steps I followed.
I made a table 'tools'
I made a table with the 'kind of tools'
I made a combobox in the form of the table tools with the source 'kind of tools'
I made a form from the table tools
Now I would like to make a text box...