Re: VFP7 Project file not visible by Stefan
Stefan
Sat Sep 18 22:50:05 CDT 2004
If the pjx/pjt files got corrupted, you can create a new project, add
your "main.prg" and choose Build to get many, or even all, member
files back.
If not all, you can also drag&drop (single or multi selections) from the
Windows Explorer.
> Specifies that the Project Manager is hidden (its Visible property is
> set to false (.F.)) when it is opened. To display the Project Manager,
> set the Project Manager's Visible property to true (.T.)."
> There is not a command/flag to SHOW the Project Manager, so how do I
> set the Visible property to .T. so I can see my project manager again?
Something like
_vfp.ActiveProject.Visible=.T. && or
For Each oProject In _vfp.Projects
oProject.Visible=.T.
Next
hth
-Stefan
"PetC" <pfclarke@mts.net> schrieb im Newsbeitrag
news:91d230c5.0409181037.4237aa0a@posting.google.com...
> Have been working for years with this project file but all of a sudden
> when I attempt to open the project file nothing happens - it is not
> visible. No error messages display and no other windows are created -
> using the Screen only. The 'Modify Project' help file says: "NOSHOW
> Specifies that the Project Manager is hidden (its Visible property is
> set to false (.F.)) when it is opened. To display the Project Manager,
> set the Project Manager's Visible property to true (.T.)."
> There is not a command/flag to SHOW the Project Manager, so how do I
> set the Visible property to .T. so I can see my project manager again?
> Please. TIA PetC