Normal Topic Alt-F6 (Read 5005 times)
Renato Piacenti
Member
*
Offline


No personal text

Posts: 48
Location: Manaus - Amazonas - Brazil
Joined: Jun 20th, 2005
Alt-F6
Mar 26th, 2010 at 1:46pm
Print Post Print Post  
Someone already made a schedule to keep the screen of application in the format Alt-F6 in the entrance and also changing the form?
This is possible in the current version of Sesame?
  

Renato Piacenti&&Manaus Amazonas Brazil&&Aqui a Floresta esta sendo preservada.&&Preserve a sua tamb�m.
Back to top
 
IP Logged
 
Ray the Reaper
Global Moderator
Members
Lantica Support
*****
Offline


The One & The Only

Posts: 2482
Joined: Aug 20th, 2003
Re: Alt-F6
Reply #1 - Mar 26th, 2010 at 2:02pm
Print Post Print Post  
Hello Renato,

Could you explain some more on what you are trying to accomplish? I'm not understanding what you are asking.

-Ray
  

Raymond Yoxall Consulting
ray.yoxall@gmail.com
ryoxall@lantica.com
Sesame Applications, Design and Support
Back to top
IP Logged
 
Renato Piacenti
Member
*
Offline


No personal text

Posts: 48
Location: Manaus - Amazonas - Brazil
Joined: Jun 20th, 2005
Re: Alt-F6
Reply #2 - Mar 26th, 2010 at 5:38pm
Print Post Print Post  
Hello Ray

Sorry for my english is not good at all.

Well, in the application screen by typing Alt F6, the screen changes and has improved presentation, more vertical spaces, because it hides the top bar.

My question.
How to automatic and does not need to type Alt F6, on entry form.

Thanks
  

Renato Piacenti&&Manaus Amazonas Brazil&&Aqui a Floresta esta sendo preservada.&&Preserve a sua tamb�m.
Back to top
 
IP Logged
 
Ray the Reaper
Global Moderator
Members
Lantica Support
*****
Offline


The One & The Only

Posts: 2482
Joined: Aug 20th, 2003
Re: Alt-F6
Reply #3 - Mar 26th, 2010 at 8:28pm
Print Post Print Post  
Hello Renato,

The programming command of

Code
Select All
Var vRet as Int

	vRet = @SelectTreeItem(@Application + "!Forms!Add Data!Customers!Customers")
	vRet = @SelectTreeItem("Add Data Menu!Other Commands!Toggle Attachment (Alt-F6)") 



Will Open a form in Add Data Mode in the Alt-F6 window. To switch a form that you are opening in Search Mode the code would be similar to the following.

Code
Select All
var vRet as Int

	vRet = @SelectTreeItem(@Application + "!Forms!Search/Update!Customers!Customers")
	vRet = @SelectTreeItem("Search Menu!Search Commands!Retrieve New Results (F10)")
	vRet = @SelectTreeItem("Search Update Menu!Other Commands!Toggle Attachment (Alt-F6)")
	vRet = @SelectTreeItem("Search Update Menu!Search (F7)") 



Both of these can be used from a command button on a custom menu or from the On Application Open Event.

-Ray
  

Raymond Yoxall Consulting
ray.yoxall@gmail.com
ryoxall@lantica.com
Sesame Applications, Design and Support
Back to top
IP Logged
 
Renato Piacenti
Member
*
Offline


No personal text

Posts: 48
Location: Manaus - Amazonas - Brazil
Joined: Jun 20th, 2005
Re: Alt-F6
Reply #4 - Mar 29th, 2010 at 6:38pm
Print Post Print Post  
Thanks Ray, for help

The code work very well.
  

Renato Piacenti&&Manaus Amazonas Brazil&&Aqui a Floresta esta sendo preservada.&&Preserve a sua tamb�m.
Back to top
 
IP Logged