RavindraPatil


Dear friends,

I use vfp 6. I have a form with 10 fields and a grid. When I run the form. The form is not displayed at all. But it is there. Because after each tab the cursor moves to the next field. I can see only blinking cursor and neither form nor the fields.

please help



Re: invisible form

dni


You may check in properties for form:

Visible = .T.

BackColor =212,208,200 (or as you prefer)

Enabled = .T.

WindowsType = Modal (may be)

You may check the "fields" to be Visible = .T.






Re: invisible form

Alex Feldstein

Depending on how you created/instantiated the form, this may not be visible.

Take a reference to the form (from within it would be THISFORM), then do a ThisForm.Show()

See:

http://msdn.microsoft.com/library/default.asp url=/library/en-us/dv_foxhelp9/html/d2b4b0e3-f3d3-456f-82b7-f8a15819e146.asp frame=true






Re: invisible form

Naomi Nosonovsky

Could it be that you put some object (say, shape or container) above the fields Just guessing in addition to excellent advices by dni and Alex.



Re: invisible form

CetinBasoz

Hunt for lockscreen in your code.



Re: invisible form

RavindraPatil

Hello everybody,

thank u for responding to my query.

the problem was with lockscreen property ofthe form which was turned on unknowingly.

thanx