Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

I have a licensed copy of visual fo 1

Status
Not open for further replies.

rp0414

Programmer
Jul 15, 2003
2
IN
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?
 
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 all.
 
SANJIB KR KANUNGO,

You are welcome to ask questions here, but please don't add your question to another user's thread. Start a new thread for your question.

EDIT: I see you have now done that. Thanks.

Mike

__________________________________
Mike Lewis (Edinburgh, Scotland)

Visual FoxPro articles, tips and downloads
 
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.

Chriss
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top