I have a licensed copy of visual foxpro 9.0. Somehow the setup.exe file has gone missing, because of which I cannot install the software. Can somebody be kind enough to send me copy of the setup.exe file?
Hy friend,
I tried just to help u. But I don't know it will work or not. I just made the .rar file to the setup folder and attached herewith. If it worked and even if not worked, kindly let me know.
Thanks
Hi Friends,
I am a new comer to VFP 9. I have made a form to search a record from ABC.DBF by Student's Name or By Father's Name from Command window just writing Modify Form Search. On that form there is a text box (Text1), one option group (1-Student's Name or 2-Father's Name) and a grid to show the searched data. I have given the code as below in InteractiveChange method of Text1.
==========
thisform.grid1.Column1.resizable=.F.
IF thisform.optiongroup1.option1.Value=1
SELECT s_name, f_name, stud_id FROM ABC;
WHERE ALLTRIM(UPPER(this.Value)) $ UPPER(s_name) ORDER BY s_name INTO CURSOR sf_name
thisform.grid1.RecordSource="sf_name"
ELSE
IF thisform.optiongroup1.option2.Value=1
SELECT s_name, f_name, stud_id FROM ABC;
WHERE ALLTRIM(UPPER(this.Value)) $ UPPER(f_name) ORDER BY f_name INTO CURSOR sf_name
thisform.grid1.RecordSource="sf_name"
ENDIF
ENDIF
thisform.refresh
==========
Also in Autofit method of grid I have the code as below
with thisform.Grid1
.Columns( .columnCount ).Width = 75
.Columns( .columnCount ).resizable = .f.
endwith
==========
The problem is : The columns of grid are being squeezed when any record matches to the search criteria of Text1.
So please suggest how to solve the grid squeeze problem.
Thank you very much Sanjib. The setup file sent by you is working, for sure. But to install the "prerequisites", it is asking for another setup.exe file in the "WCU" folder of the installation disk. Can you help?
rp0414, how can just the setup.exe be missing? Either you have a CD or the ISO of it. I think you thought a setup.exe would be all you need to get VFP. The installation is more complex than that.
You don't start the FoxPro setup by starting setup.exe, autorun.inf of the CD points to another start.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.