Hi. Is there anyway to change the fonts of a given browse column? Got a
client who wants certain columns in bold...Dennis

Re: BROWSE fonts? by Rush

Rush
Wed Sep 17 22:46:29 CDT 2003

Set the grid.column.fontbold to .T.

- Rush

"Dennis Allen" <dennis@dennisallen.com> wrote in message
news:ems0RMZfDHA.3528@tk2msftngp13.phx.gbl...
> Hi. Is there anyway to change the fonts of a given browse column? Got a
> client who wants certain columns in bold...Dennis
>
>



Re: BROWSE fonts? by Cindy

Cindy
Thu Sep 18 09:55:29 CDT 2003

Hi Dennis,

You haven't said which version of FoxPro you are using.

CREATE CURSOR Test (Field1 I, Field2 C(10))
INSERT INTO Test VALUES (1, "FoxPro")
INSERT INTO Test VALUES (2, "Rocks")
BROWSE NAME oBrowse
oBrowse.Column1.FontBold = .T.

--
Cindy Winegarden MCSD, Microsoft Visual FoxPro MVP
cindy.winegarden@mvps.org, www.cindywinegarden.com

"Dennis Allen" <dennis@dennisallen.com> wrote in message
news:ems0RMZfDHA.3528@tk2msftngp13.phx.gbl...
> Hi. Is there anyway to change the fonts of a given browse column? Got a
> client who wants certain columns in bold...Dennis



Re: BROWSE fonts? by Wolfgang

Wolfgang
Thu Sep 18 07:26:10 CDT 2003

Hi Dennis!

Theres no way to change the font formats in a Browse column. To achive this,
you have to use GRIDs. The colunms in GRIDs are fully "Formatable"

--
_________________

MFG
Wolfgang Schmale

MS Visual FoxPro MVP

--------------------------------
"Dennis Allen" <dennis@dennisallen.com> schrieb im Newsbeitrag
news:ems0RMZfDHA.3528@tk2msftngp13.phx.gbl...
> Hi. Is there anyway to change the fonts of a given browse column? Got a
> client who wants certain columns in bold...Dennis
>
>


Re: BROWSE fonts? by PAul

PAul
Fri Sep 19 04:30:41 CDT 2003

> Theres no way to change the font formats in a Browse column
Yes, you can.
Use BROWSE NAME loBrowse NOWAIT
Then that gives you a loBrowse variable reference to the Browse window and
you can then access its columns and controls just liek a Grid. I've been
doing that since VFP 3.



Re: BROWSE fonts? by Dennis

Dennis
Fri Sep 19 09:31:59 CDT 2003

I tried:

BROWSE NAME oBrow NOWAIT
WITH oBrow
.Visible = .F.
.Column1.FontBold = .T.
.Column3.FontBold = .T.
.Visible = .T.
ENDWITH

...but how do you get the browse back, after the with/endwith?

"PAul Maskens" <pmaskens@mvps.org> wrote in message
news:OGdi0CpfDHA.3528@tk2msftngp13.phx.gbl...
> > Theres no way to change the font formats in a Browse column
> Yes, you can.
> Use BROWSE NAME loBrowse NOWAIT
> Then that gives you a loBrowse variable reference to the Browse window and
> you can then access its columns and controls just liek a Grid. I've been
> doing that since VFP 3.
>
>



Re: BROWSE fonts? by Rick

Rick
Fri Sep 19 09:48:42 CDT 2003

Dennis,
If you are doing this in a .PRG, then the oBrow variable goes out of =
scope and the Browse will terminate. Add PUBLIC oBrow at the beginning =
of the .PRG file.

Rick

"Dennis Allen" <dennis@dennisallen.com> wrote in message =
news:%23lpXLrrfDHA.956@TK2MSFTNGP09.phx.gbl...
> I tried:
>=20
> BROWSE NAME oBrow NOWAIT
> WITH oBrow
> .Visible =3D .F.
> .Column1.FontBold =3D .T.
> .Column3.FontBold =3D .T.
> .Visible =3D .T.
> ENDWITH
>=20
> ...but how do you get the browse back, after the with/endwith?
>=20
> "PAul Maskens" <pmaskens@mvps.org> wrote in message
> news:OGdi0CpfDHA.3528@tk2msftngp13.phx.gbl...
> > > Theres no way to change the font formats in a Browse column
> > Yes, you can.
> > Use BROWSE NAME loBrowse NOWAIT
> > Then that gives you a loBrowse variable reference to the Browse =
window and
> > you can then access its columns and controls just liek a Grid. I've =
been
> > doing that since VFP 3.
> >
> >
>=20
>

Re: BROWSE fonts? by Dennis

Dennis
Tue Sep 23 20:39:33 CDT 2003

Hi. Just got in. So is there a way to get the browse back? I tried
another BROWSE, but then you lose the oBrow settings...Dennis

"PAul Maskens" <pmaskens@mvps.org> wrote in message
news:uKFKg5rfDHA.3896@tk2msftngp13.phx.gbl...
> Rick beat me to it !
> Probably oBrow goes out of scope and the window closes.
>
> "Dennis Allen" <dennis@dennisallen.com> wrote in message
> news:%23lpXLrrfDHA.956@TK2MSFTNGP09.phx.gbl...
> > I tried:
> >
> > BROWSE NAME oBrow NOWAIT
> > WITH oBrow
> > .Visible = .F.
> > .Column1.FontBold = .T.
> > .Column3.FontBold = .T.
> > .Visible = .T.
> > ENDWITH
> >
> > ...but how do you get the browse back, after the with/endwith?
> >
> > "PAul Maskens" <pmaskens@mvps.org> wrote in message
> > news:OGdi0CpfDHA.3528@tk2msftngp13.phx.gbl...
> > > > Theres no way to change the font formats in a Browse column
> > > Yes, you can.
> > > Use BROWSE NAME loBrowse NOWAIT
> > > Then that gives you a loBrowse variable reference to the Browse window
> and
> > > you can then access its columns and controls just liek a Grid. I've
been
> > > doing that since VFP 3.
> > >
> > >
> >
> >
>
>



Re: BROWSE fonts? by Dennis

Dennis
Tue Sep 23 20:40:30 CDT 2003

Hi. Just got in. Added the PUBLIC oBrow. Still lose the browse. Any way
to get the browse back? I tried another BROWSE, but then I lose the first
oBrow settings...Dennis

"Rick Bean" <rgbean@NOSPAMmelange-inc.com> wrote in message
news:O5OFg0rfDHA.3248@tk2msftngp13.phx.gbl...
Dennis,
If you are doing this in a .PRG, then the oBrow variable goes out of scope
and the Browse will terminate. Add PUBLIC oBrow at the beginning of the .PRG
file.

Rick

"Dennis Allen" <dennis@dennisallen.com> wrote in message
news:%23lpXLrrfDHA.956@TK2MSFTNGP09.phx.gbl...
> I tried:
>
> BROWSE NAME oBrow NOWAIT
> WITH oBrow
> .Visible = .F.
> .Column1.FontBold = .T.
> .Column3.FontBold = .T.
> .Visible = .T.
> ENDWITH
>
> ...but how do you get the browse back, after the with/endwith?
>
> "PAul Maskens" <pmaskens@mvps.org> wrote in message
> news:OGdi0CpfDHA.3528@tk2msftngp13.phx.gbl...
> > > Theres no way to change the font formats in a Browse column
> > Yes, you can.
> > Use BROWSE NAME loBrowse NOWAIT
> > Then that gives you a loBrowse variable reference to the Browse window
and
> > you can then access its columns and controls just liek a Grid. I've been
> > doing that since VFP 3.
> >
> >
>
>