| Subject |
Re: ok button missing in datecalendar.cc |
| From |
Mervyn Bick <invalid@invalid.invalid> |
| Date |
Mon, 6 Nov 2023 15:33:18 +0200 |
| Newsgroups |
dbase.getting-started |
| Attachment(s) |
datecalendar.wfm |
On 2023/11/06 15:15, Charlie wrote:
> ok I made a blank form, set procedure on open, then placed the cc at the top of the form. Didn't move a thing or resize. The button is still missing.
>
> I am wondering if I might have changed something in the cc back then or it got corrupted somehow?
>
> Can someone send a copy of datecalendar.cc?
You show me yours, I'll show you mine. :-)
Attached is a sample form with just a datecalendar object on it. If it
opens properly and shows you the "Select date" button the there is
nothing wrong with the copy of datecalendar.cc on your computer. If you
send me your little form I'll check it out here for you.
If the "Select date" button doesn't show then it looks as if something
has been corrupted on your computer. I suggest you download the dUFLP
from Ken's site and reinstall it. You should also re-run setup.prg in
the dUFLP
Mervyn.
|
** END HEADER -- do not remove this line
//
// Generated on 2023-11-06
//
parameter bModal
local f
f = new datecalendarForm()
if (bModal)
f.mdi = false // ensure not MDI
f.readModal()
else
f.open()
endif
class datecalendarForm of FORM
set procedure to :dUFLP:datecalendar.cc additive
with (this)
metric = 6 // Pixels
height = 352.0
left = 444.0
top = 0.0
width = 280.0
text = ""
endwith
this.DATECALENDAR1 = new DATECALENDAR(this)
with (this.DATECALENDAR1)
left = 41.0
top = 49.0
width = 106.0
height = 24.0
endwith
endclass
|