The Visual FoxPro 9.0 public beta is now available for download!
Download page link at http://msdn.com/vfoxpro . The June letter is also
online at http://msdn.com/vfoxpro/letters with VFP 9.0 beta details and
other important VFP related news.
Ken Levy
VS Data Product Manager
Microsoft
Cool
And thanks
Brian Erickson
mailto:pantegra@dashley.net
-----Original Message-----
From: profoxtech-bounces@leafe.com [mailto:profoxtech-bounces@leafe.com] On
Behalf Of Ken Levy
Sent: Thursday, June 03, 2004 3:20 PM
To: profoxtech@leafe.com
Subject: Visual FoxPro 9.0 Beta available
The Visual FoxPro 9.0 public beta is now available for download! Download
page link at http://msdn.com/vfoxpro . The June letter is also online at
http://msdn.com/vfoxpro/letters with VFP 9.0 beta details and other
important VFP related news.
Ken Levy
VS Data Product Manager
Microsoft
[excessive quoting removed by server]
Once you pull it down, try this.
CREATE CURSOR crsrFontList ( ;
cFont char(30))
llGotFonts = AFONT(laFonts)
FOR i = 1 TO ALEN(laFonts)
INSERT INTO crsrFontList VALUES (laFonts(i))
ENDFOR
CREATE REPORT fontList FROM DBF("crsrFontList")
loListen = CREATEOBJECT("myFontListener")
REPORT FORM fontList PREVIEW OBJECT loListen
DEFINE CLASS myFontListener as ReportListener
ListenerType = 1
PROCEDURE EvaluateContents
LPARAMETERS nFrxRecno, oObjProperties
oObjProperties.FontName = cFont oObjProperties.Reload = .T.
ENDPROC
ENDDEFINE
On Thu, 3 Jun 2004 15:30:05 -0600, Brian Erickson <pantegra@dashley.net> wrote:
> Cool
> And thanks
> -----Original Message-----
> From: profoxtech-bounces@leafe.com [mailto:profoxtech-bounces@leafe.com] On
> Behalf Of Ken Levy
> Sent: Thursday, June 03, 2004 3:20 PM
> To: profoxtech@leafe.com
> Subject: Visual FoxPro 9.0 Beta available
>
> The Visual FoxPro 9.0 public beta is now available for download!
Thanks Ken (and the VFP Team!!)!
Looking forward to playing with the Report Writer and the enhanced SQL
support....
Matt Jarvis
> -----Original Message-----
> From: profoxtech-bounces@leafe.com
> [mailto:profoxtech-bounces@leafe.com] On Behalf Of Ken Levy
> Sent: Thursday, June 03, 2004 2:20 PM
> To: profoxtech@leafe.com
> Subject: Visual FoxPro 9.0 Beta available
>
> The Visual FoxPro 9.0 public beta is now available for download!
> Download page link at http://msdn.com/vfoxpro . The June
> letter is also online at http://msdn.com/vfoxpro/letters with
> VFP 9.0 beta details and other important VFP related news.
>
> Ken Levy
> VS Data Product Manager
> Microsoft
>
[excessive quoting removed by server]
Grr. That should, of course, have read:
DEFINE CLASS myFontListener as ReportListener
ListenerType = 1
PROCEDURE EvaluateContents
LPARAMETERS nFrxRecno, oObjProperties
oObjProperties.FontName = cFont
oObjProperties.Reload = .T.
ENDPROC
ENDDEFINE
On Thu, 3 Jun 2004 14:40:12 -0700, Garrett Fitzgerald
<sarekofvulcan@gmail.com> wrote:
>
> Once you pull it down, try this.
>
> CREATE CURSOR crsrFontList ( ;
> cFont char(30))
>
> llGotFonts = AFONT(laFonts)
> FOR i = 1 TO ALEN(laFonts)
> INSERT INTO crsrFontList VALUES (laFonts(i))
> ENDFOR
>
> CREATE REPORT fontList FROM DBF("crsrFontList")
>
> loListen = CREATEOBJECT("myFontListener")
>
> REPORT FORM fontList PREVIEW OBJECT loListen
>
> DEFINE CLASS myFontListener as ReportListener
> ListenerType = 1
> PROCEDURE EvaluateContents
> LPARAMETERS nFrxRecno, oObjProperties
>
> oObjProperties.FontName = cFont oObjProperties.Reload = .T.
> ENDPROC
> ENDDEFINE
>
> On Thu, 3 Jun 2004 15:30:05 -0600, Brian Erickson <pantegra@dashley.net> wrote:
> > Cool
> > And thanks
>
>
> > -----Original Message-----
> > From: profoxtech-bounces@leafe.com [mailto:profoxtech-bounces@leafe.com] On
> > Behalf Of Ken Levy
> > Sent: Thursday, June 03, 2004 3:20 PM
> > To: profoxtech@leafe.com
> > Subject: Visual FoxPro 9.0 Beta available
> >
> > The Visual FoxPro 9.0 public beta is now available for download!
>
One MS website they have got 3 files to download. Two exe's and a set of
release notes. What are the two exe for?
Tristan
-----Original Message-----
From: profoxtech-bounces@leafe.com [mailto:profoxtech-bounces@leafe.com] On
Behalf Of Garrett Fitzgerald
Sent: 03 June 2004 22:41
To: profoxtech@leafe.com
Subject: Re: Visual FoxPro 9.0 Beta available
Grr. That should, of course, have read:
DEFINE CLASS myFontListener as ReportListener
ListenerType = 1
PROCEDURE EvaluateContents
LPARAMETERS nFrxRecno, oObjProperties
oObjProperties.FontName = cFont
oObjProperties.Reload = .T.
ENDPROC
ENDDEFINE
On Thu, 3 Jun 2004 14:40:12 -0700, Garrett Fitzgerald
<sarekofvulcan@gmail.com> wrote:
>
> Once you pull it down, try this.
>
> CREATE CURSOR crsrFontList ( ;
> cFont char(30))
>
> llGotFonts = AFONT(laFonts)
> FOR i = 1 TO ALEN(laFonts)
> INSERT INTO crsrFontList VALUES (laFonts(i))
> ENDFOR
>
> CREATE REPORT fontList FROM DBF("crsrFontList")
>
> loListen = CREATEOBJECT("myFontListener")
>
> REPORT FORM fontList PREVIEW OBJECT loListen
>
> DEFINE CLASS myFontListener as ReportListener
> ListenerType = 1
> PROCEDURE EvaluateContents
> LPARAMETERS nFrxRecno, oObjProperties
>
> oObjProperties.FontName = cFont
oObjProperties.Reload = .T.
> ENDPROC
> ENDDEFINE
>
> On Thu, 3 Jun 2004 15:30:05 -0600, Brian Erickson <pantegra@dashley.net>
wrote:
> > Cool
> > And thanks
>
>
> > -----Original Message-----
> > From: profoxtech-bounces@leafe.com [mailto:profoxtech-bounces@leafe.com]
On
> > Behalf Of Ken Levy
> > Sent: Thursday, June 03, 2004 3:20 PM
> > To: profoxtech@leafe.com
> > Subject: Visual FoxPro 9.0 Beta available
> >
> > The Visual FoxPro 9.0 public beta is now available for download!
>
[excessive quoting removed by server]
Hi Tristan,
You need the two VFP9*.exe. The ISX stands for InstallShieldExpress and you
normally don't need it.
ÃÂ Servus
ÃÂ ÃÂ ÃÂ wOOdy
ÃÂ |\_/| ---- ProLib - programmers liberty -----------
ÃÂ (.. ) Our MVPs make the Fox run... See us
ÃÂ - /ÃÂ at www.prolib.de or www.AFPages.com
---------------------------------------------------
Message entirely written using recycled electrons!
---------------------------------------------------
-----Original Message-----
From: profox-bounces@leafe.com [mailto:profox-bounces@leafe.com] On Behalf
Of Tristan Leask
Sent: Friday, June 04, 2004 9:43 AM
To: profox@leafe.com
Subject: RE: Visual FoxPro 9.0 Beta available
One MS website they have got 3 files to download. Two exe's and a set of
release notes. What are the two exe for?
Tristan
Cheers Woody....
Tristan
-----Original Message-----
From: profoxtech-bounces@leafe.com [mailto:profoxtech-bounces@leafe.com] On
Behalf Of Juergen Wondzinski
Sent: 04 June 2004 11:27
To: profoxtech@leafe.com
Subject: RE: Visual FoxPro 9.0 Beta available
Hi Tristan,
You need the two VFP9*.exe. The ISX stands for InstallShieldExpress and you
normally don't need it.
ÃÂ Servus
ÃÂ ÃÂ ÃÂ wOOdy
ÃÂ |\_/| ---- ProLib - programmers liberty -----------
ÃÂ (.. ) Our MVPs make the Fox run... See us
ÃÂ - /ÃÂ at www.prolib.de or www.AFPages.com
---------------------------------------------------
Message entirely written using recycled electrons!
---------------------------------------------------
-----Original Message-----
From: profox-bounces@leafe.com [mailto:profox-bounces@leafe.com] On Behalf
Of Tristan Leask
Sent: Friday, June 04, 2004 9:43 AM
To: profox@leafe.com
Subject: RE: Visual FoxPro 9.0 Beta available
One MS website they have got 3 files to download. Two exe's and a set of
release notes. What are the two exe for?
Tristan
[excessive quoting removed by server]
Hi Garrett,
I don't see any different fonts with your example. I do get the preview with
the fontnames, but it's all in Arial. What's wrong?
ÃÂ Servus
ÃÂ ÃÂ ÃÂ wOOdy
ÃÂ |\_/| ---- ProLib - programmers liberty -----------
ÃÂ (.. ) Our MVPs make the Fox run... See us
ÃÂ - /ÃÂ at www.prolib.de or www.AFPages.com
---------------------------------------------------
Message entirely written using recycled electrons!
---------------------------------------------------
-----Original Message-----
From: profox-bounces@leafe.com [mailto:profox-bounces@leafe.com] On Behalf
Of Garrett Fitzgerald
Sent: Thursday, June 03, 2004 11:41 PM
To: ProFox Email List
Subject: Re: Visual FoxPro 9.0 Beta available
Grr. That should, of course, have read:
DEFINE CLASS myFontListener as ReportListener
ListenerType = 1
PROCEDURE EvaluateContents
LPARAMETERS nFrxRecno, oObjProperties
oObjProperties.FontName = cFont
oObjProperties.Reload = .T.
ENDPROC
ENDDEFINE
Hi Garrett,
To get it working, change the Reportlistener class to read as such
oObjProperties.FontName = oObjProperties.Text
ÃÂ Servus
ÃÂ ÃÂ ÃÂ wOOdy
ÃÂ |\_/| ---- ProLib - programmers liberty -----------
ÃÂ (.. ) Our MVPs make the Fox run... See us
ÃÂ - /ÃÂ at www.prolib.de or www.AFPages.com
---------------------------------------------------
Message entirely written using recycled electrons!
---------------------------------------------------