How to compare two text boxes with IN operator form [message #557355] |
Tue, 12 June 2012 02:17 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
jolly_makkar
Messages: 63 Registered: March 2008
|
Member |
|
|
Dear all
How we can compare IN operator between two text boxes in form
I have two text boxes on form
control.txt1 - 003
control.txt2 - 001,002,003
On button pressed
if :control.txt1 in (:CONTROL.TXT2) THEN
MESSAGE('1');
MESSAGE('1');
else
MESSAGE('0');
MESSAGE('0');
END IF;
All the time Message is 0 .Please suggest what mistake i should rectify to get 1.
|
|
|
|
|
|
|