Hi,
I am creating a form. To this form the values are filled from a foxpro table( foxpro 6.0). I have used select statment
then using the values obtained , i am filling the text box with names, dates etc.
The problem is that when i use this command, the table with result of select statment is popingup, which i need to avoid. Is there a way for just getting the values of the table to some variable and using that to fill the textbox without this popingup.
I am creating a form. To this form the values are filled from a foxpro table( foxpro 6.0). I have used select statment
Code:
SELECT fname,lname,dob,nation,gender,married,contactno,doj,salary,commision,division from employee where empid=lclempno
The problem is that when i use this command, the table with result of select statment is popingup, which i need to avoid. Is there a way for just getting the values of the table to some variable and using that to fill the textbox without this popingup.