Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Default Object
Message
From
19/10/2014 14:40:43
 
 
To
19/10/2014 14:08:02
Lutz Scheffler
Lutz Scheffler Software Ingenieurbüro
Dresden, Germany
General information
Forum:
Visual FoxPro
Category:
Object Oriented Programming
Title:
Environment versions
Visual FoxPro:
VFP 9 SP2
OS:
Windows 8.1
Network:
SAMBA Server
Database:
Visual FoxPro
Application:
Desktop
Miscellaneous
Thread ID:
01609619
Message ID:
01609637
Views:
40
I seem to remember there can be only one Default object on a form. Ah, yes, here it is, from the helpfile:

"Only one command button or OLE Container control on a form can be the default command button. When the Default property is set to true (.T.) for one command button or OLE Container control, it is automatically set to false (.F.) for all other command buttons or OLE Container controls on the form. You cannot create a default command button or OLE Container control in a toolbar."

I think that solves the double-default issue for you.

Hank


>Hank,
>
>thanks.
>
>I had this idea too - but if this is in the wrong container it needs a while. And it would run even if there is no such object.
>
>>I would recurse down the object tree from FORM, looking for commandbuttons as the base object, and check whether Default = .T. Alternatively, checking each object for whether it has a Default property and checking whether it is .T.
>>
>>Or am I missing something?
>>
>>Hank
>>
>>>Hi Folks,
>>>
>>>I look for an idea to figure out what object on a form is the default one, i.e. the one that has the DEFAULT property true
>>>
>>>Background:
>>>
>>>I have a rather tricky grid that recieves the Enter key and performs stuff. Sometimes just some internal blabla, sometimes it performs an action directly bound to the key.
>>>
>>>I think I can tetermine what of the above, but the problem is how to rise the default objects default action (Click) / or not. For the moment it's simply doing nothing with the default object
>>>
>>>the code in the grid's textbox looks
>>>
>>> DO CASE
>>>  CASE tnKeyCode = 13
>>>*<Enter>
>>>   NODEFAULT
>>>  CASE INLIST(tnKeyCode,5,24) AND tnShiftAltCtrl=0
>>>*<Up>,<Down>
>>>   .SETFOCUS()
>>>  CASE tnKeyCode = 27
>>>*<ESC>
>>>   NODEFAULT
>>>...
>>>
>>>
>>>If I compare with ESC I see no difference (even in the keypress stuff around objects keypress , since form is KeyPreview = .T.), this is checkes with SET COVERAGE.
>>>
>>>Both keys just differ in the way they run throug this case.
>>>
>>>After the keypress is ended, ESC raises the events that will end up with the Click of Cancel- object Enter just does nothing.
>>>
>>>Well, I can not figure that out. O.K. But then, how do I raise default objects Click?
>>>
>>>TIA
>>>
>>>Lutz
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform