RE: Docking Toolbar in Top-Level Form

2006-06-29 Thread Andy Davies
...caused by having the Debugger active. don'cha just *love* those! Andrew Davies  MBCS CITP   - AndyD    8-)# ** This email and any files transmitted with it are confidential and intended solely for the use of the

Re: Docking Toolbar in Top-Level Form

2006-06-28 Thread Profox
From: Dave Crozier [EMAIL PROTECTED] Problem: I'm trying to make a top level form in which a toolbar is dockable. I just sold a VFP 9.0 to a newbie and was going to email him some VFP sites to look at. One was www.foxite.com and on the main page is a link to an article by Mike Feltman called:

RE: Docking Toolbar in Top-Level Form

2006-06-28 Thread Jim Winter
I just sold a VFP 9.0 to a newbie and was going to email him some VFP sites to look at. One was www.foxite.com and on the main page is a link to an article by Mike Feltman called: Everything You Ever Wanted to Know About Docking in VFP. The article link points to LAFox.org, (LA user

Re: Docking Toolbar in Top-Level Form

2006-06-28 Thread Richard Kaye
And for a quick tip on docking from Mike, check his blog entry of June 16 http://f1technologies.blogspot.com/ Profox wrote: From: Dave Crozier [EMAIL PROTECTED] Problem: I'm trying to make a top level form in which a toolbar is dockable. I just sold a VFP 9.0 to a newbie and was going to

Re: Docking Toolbar in Top-Level Form

2006-06-28 Thread Profox
I just sold a VFP 9.0 to a newbie and was going to email him some VFP sites to look at. One was www.foxite.com and on the main page is a link to an article by Mike Feltman called: Everything You Ever Wanted to Know About Docking in VFP. The article link points to LAFox.org, (LA user group), but

RE: Docking Toolbar in Top-Level Form

2006-06-27 Thread Allen
I have toolbars docking in top level. I didn't do an AddProperty though. I did an thisform.createobject on my toolbar class Allen -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dave Crozier Sent: 27 June 2006 14:16 To: [EMAIL PROTECTED] Subject: Docking

Re: Docking Toolbar in Top-Level Form

2006-06-27 Thread Rafael Copquin
I use a top level form as the background for my applications and dock a custom made toolbar which is used by all the forms launched from the menu. This is the code I use in the ACTIVATE method of the TLF If this.lFirstTime = .t. this.lFirstTime = .f. this.LockScreen = .t. ** the next

RE: Docking Toolbar in Top-Level Form

2006-06-27 Thread Dave Crozier
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rafael Copquin Sent: 27 June 2006 14:40 To: profox@leafe.com Subject: Re: Docking Toolbar in Top-Level Form I use a top level form as the background for my applications and dock a custom made toolbar which

RE: Docking Toolbar in Top-Level Form

2006-06-27 Thread Rick Schummer
Crozier Sent: Tuesday, June 27, 2006 10:23 AM To: [EMAIL PROTECTED] Subject: RE: Docking Toolbar in Top-Level Form Rafael, I still have the same problem - The sample below just docks the toolbar on the main VFP window ** * Test Program for toolbars * oForm=CreateObject(clsForm

Re: Docking Toolbar in Top-Level Form

2006-06-27 Thread Rafael Copquin
:22 AM Subject: RE: Docking Toolbar in Top-Level Form Rafael, I still have the same problem - The sample below just docks the toolbar on the main VFP window ** * Test Program for toolbars * oForm=CreateObject(clsForm) With oForm .Width=200 .Height=200 .AutoCenter=.T

RE: Docking Toolbar in Top-Level Form

2006-06-27 Thread Dave Crozier
Rafael, Solved the Problem. I needed to define the Toolbar as a class in its own right and set the ShowWindow property accordingly. Also, I just noticed the post from Rick which says the same thing. Funny that as in my application I use a visually designed class that is subclassed from a standard

Re: Docking Toolbar in Top-Level Form

2006-06-27 Thread Rafael Copquin
- From: Dave Crozier [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, June 27, 2006 11:47 AM Subject: RE: Docking Toolbar in Top-Level Form Rafael, Solved the Problem. I needed to define the Toolbar as a class in its own right and set the ShowWindow property accordingly. Also, I just

RE: Docking Toolbar in Top-Level Form

2006-06-27 Thread Dave Crozier
: Docking Toolbar in Top-Level Form Rafael, Solved the Problem. I needed to define the Toolbar as a class in its own right and set the ShowWindow property accordingly. Also, I just noticed the post from Rick which says the same thing. Funny that as in my application I use a visually designed class

RE: Docking Toolbar in Top-Level Form

2006-06-27 Thread Malcolm Greene
Dave, Having investigated the problem further and unless anyone can prove me wrong, there is no way of having a visually designed Form with a visually designed toolbar which is docked in the aforesaid form. The same principle applies to the VFP statusbar and menubar as well. One possible

RE: Docking Toolbar in Top-Level Form

2006-06-27 Thread Dave Crozier
incredibly stupid things. They are, in short, a perfect match - Bill Bryson -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Malcolm Greene Sent: 27 June 2006 16:47 To: profox@leafe.com Subject: RE: Docking Toolbar in Top-Level Form Dave, Having