| Subject |
Re: WFM WONT COME UP IN COMPILED BUT WILL IN NATIVE DBASE |
| From |
Ken Mayer <dbase@nospam.goldenstag.net> |
| Date |
Sat, 31 Dec 2022 13:54:18 -0800 |
| Newsgroups |
dbase.getting-started |
On 12/31/2022 12:01 PM, ED FURCHE wrote:
> i have struggled with this problem for many many hours.
> A WFM that worked for years has decided to not work.
> For a long time I thought the browse was the problem, but i deleted it and left only the heading and it still wont come up.
> Works fine in native dBase.
>
> What is wrong?
>
> ** END HEADER -- do not remove this line
> //
> // Generated on 12/31/2022
> //
> parameter bModal
> local f
> f = new COLLDBARForm()
> if (bModal)
> f.mdi = false // ensure not MDI
> f.readModal()
> else
> f.open()
> endif
>
> class COLLDBARForm of FORM
> with (this)
> colorNormal = "paleturquoise"
> height = 35.5
> left = -2.4286
> top = 0.0455
> width = 146.8571
> text = ""
> windowState = 0 // Normal
> endwith
> endclass
>
> Running on win 10.
With the tiny amount of information you have provided, there is no
reason for this ... I built a simple executable from this form, but I
added an entryfield to it so that something could get focus. This is
important if you open the form with readModal() in your code, because if
there is nothing that can get focus it will open and close right away ...
It would help if you provided a lot more information for anyone to be
able to help you figure this out.
Among other things, what changed? Something had to have changed or it
wouldn't just "stop" working ...
Ken
--
*Ken Mayer*
Ken's dBASE Page: http://www.goldenstag.net/dbase
The dUFLP: http://www.goldenstag.net/dbase/index.htm#duflp
dBASE Books: http://www.goldenstag.net/dbase/Books/dBASEBooks.htm
dBASE Tutorial: http://www.goldenstag.net/dbase/Tutorial/00_Preface.htm
dBASE Web Tutorial: http://www.goldenstag.net/dbase/WebTutorial/00_Menu.htm
dBASE DOS to Windows Tutorial:
http://www.goldenstag.net/dbase/DtoWTutorial/00_Menu.htm
|
|