This topic is locked

Asprunner 4.1

11/22/2006 1:08:03 PM
ASPRunnerPro General questions
L
luic author

In version 4.0, I can create custom expression in the lookup display field like ID + ':' + Description. When I go to 4.1 build 164, I can do it anymore. You won't see the effect in Test mode in the wizard, but it can be seen in Test mode in 4.0.
Any idea or is it a bug ?

Sergey Kornilov admin 11/22/2006

It appears to be an error in your custom expression.
If ID is a numeric field and your database is MS Access:

CStr(ID) + ' ' + Description
L
luic author 11/22/2006

It appears to be an error in your custom expression.

If ID is a numeric field and your database is MS Access:

CStr(ID) + ' ' + Description


Thank you. I did not know that we have to convert the numeric expression into the same data type. I used CAST for SQL server and it works.