Advertisement
Advertisement
| 06.22.2008 at 02:22AM PDT, ID: 23505498 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: |
if :chkarabic=1 then
set_item_property('first_name_1',visible,property_false);
set_item_property('father_name_1',visible,property_false);
set_item_property('mid_name_1',visible,property_false);
set_item_property('last_name_1',visible,property_false);
set_item_property('first_name_s_1',visible,property_true);
set_item_property('father_name_s_1',visible,property_true);
set_item_property('mid_name_s_1',visible,property_true);
set_item_property('last_name_s_1',visible,property_true);
set_item_property('first_name_s_1',enabled,property_true);
set_item_property('father_name_s_1',enabled,property_true);
set_item_property('mid_name_s_1',enabled,property_true);
set_item_property('last_name_s_1',enabled,property_true);
-- set_item_property('first_name_s_1',QUERY_ALLOWED,property_true);
--set_item_property('father_name_s_1',query_allowed,property_true);
--set_item_property('mid_name_s_1',query_allowed,property_true);
--set_item_property('last_name_s_1',query_allowed,property_true);
--set_item_property('frame55',label,'Arabic Names');
message('arabic');
else
set_item_property('first_name_1',visible,property_true);
set_item_property('father_name_1',visible,property_true);
set_item_property('mid_name_1',visible,property_true);
set_item_property('last_name_1',visible,property_true);
set_item_property('first_name_1',enabled,property_true);
set_item_property('father_name_1',enabled,property_true);
set_item_property('mid_name_1',enabled,property_true);
set_item_property('last_name_1',enabled,property_true);
--set_item_property('frame55',label,'Englisn Names');
set_item_property('first_name_s_1',visible,property_false);
set_item_property('father_name_s_1',visible,property_false);
set_item_property('mid_name_s_1',visible,property_false);
set_item_property('last_name_s_1',visible,property_false);
-- set_item_property('first_name_1',query_allowed,property_true);
--set_item_property('father_name_1',query_allowed,property_true);
--set_item_property('mid_name_1',query_allowed,property_true);
--set_item_property('last_name_1',query_allowed,property_true);
message('English');
end if;
|