Hi all!
I am taking an old foxpro application and changing it to vfp 7.0
I have found that many of the old define window statements result in a shadow, where the title line is repeated underneath itself. What is weird is that if there is > 1 window on the screen at once it seems only the first one defined has this problem.
Another problem I have is that even when I put something in the footer, it never appears in my application.
If anyone can help me out with a suggestion I would greatly appreciate it!! I have carefully read the vfp help but have not been able to resolve the issue.
Here is one of the offending define window statements and some other related code after it.
define window budbrow ;
from 7,12 to 32,68;
title "BUDGET" ;
footer "[F4] to search - [F7] to add new record";
nofloat nogrow ;
color "w+/w,w+/n,b/bg,b/bg,,b/w,,,"
activate window budbrow
browse fields deptcode :8 ;
:h = "Deptcode" :v=allp("vdept",deptcode)
="!!!!!!!", ;
empl :4 :h = "Empl" , per :3 :h= "%", ;
dollar :7 :h= "Amount", start :10 :h="Start", ;
end :10 :h="End", proj :4 :h="Proj" ;
nomenu ;
in window budbrow
I am taking an old foxpro application and changing it to vfp 7.0
I have found that many of the old define window statements result in a shadow, where the title line is repeated underneath itself. What is weird is that if there is > 1 window on the screen at once it seems only the first one defined has this problem.
Another problem I have is that even when I put something in the footer, it never appears in my application.
If anyone can help me out with a suggestion I would greatly appreciate it!! I have carefully read the vfp help but have not been able to resolve the issue.
Here is one of the offending define window statements and some other related code after it.
define window budbrow ;
from 7,12 to 32,68;
title "BUDGET" ;
footer "[F4] to search - [F7] to add new record";
nofloat nogrow ;
color "w+/w,w+/n,b/bg,b/bg,,b/w,,,"
activate window budbrow
browse fields deptcode :8 ;
:h = "Deptcode" :v=allp("vdept",deptcode)
empl :4 :h = "Empl" , per :3 :h= "%", ;
dollar :7 :h= "Amount", start :10 :h="Start", ;
end :10 :h="End", proj :4 :h="Proj" ;
nomenu ;
in window budbrow