or
pictureBox1.Value = System.Configuration.ConfigurationSettings.AppSettings["ImageFolderURL"] + "apple_ex.png";<appSettings> <add key="ImageFolderURL" value="http://www.queness.com/resources/images/png/" /> </appSettings>SELECT
fullname FROM employee
SELECT
activity.startdate,employee.fullname FROM activity INNER JOIN employee ON activity.employeesignature=employee.signature
value=AllValues(fields.fullname)
The result of this is that the parameter is shown with the unique values and all values is selected. But, if i deselect all, only some items is deselected. And if I click on the others they could not be deselected at all.
The problem occurs to be that the second example could result in several rows with the same value in employee.fullname. OPnly the rows that have only one row with the same value is handled correctly.
So, how can I solve this problem?
R
Torbjörn