1. setFont

<HTML><HEAD>
<BASEFONT FACE=3D"Arial" SIZE=3D"2" COLOR=3D#000000>
</HEAD>
<BODY>
<FONT FACE=3D"Arial" SIZE=3D2>Hi all,</FONT><br>
<br>
<FONT FACE=3D"Arial" SIZE=3D2></FONT><FONT FACE=3D"Arial" SIZE=3D2>I am=
 having a small problem maybe you guys can help me with. I=
 am&nbsp;&nbsp; </FONT><FONT FACE=3D"Arial" SIZE=3D2>using setFont to=
 control the font size within a CText and everything </FONT><FONT=
 FACE=3D"Arial" SIZE=3D2>looks great on Win2000, but when I try the=
 program on Win98, the font </FONT><FONT FACE=3D"Arial"=
 SIZE=3D2>becomes bigger. Is there a way I can have the font size=
 remain the </FONT><FONT FACE=3D"Arial" SIZE=3D2>same on both=
 operating systems? The font I am currently using is </FONT><FONT=
 FACE=3D"Arial" SIZE=3D2>Arial.</FONT><br>
<br>
<FONT FACE=3D"Arial" SIZE=3D2></FONT><br>
<FONT FACE=3D"Arial" SIZE=3D2></FONT><FONT FACE=3D"Arial"=
 SIZE=3D2>Chris</FONT><br>
<FONT FACE=3D"Arial" SIZE=3D2>Long Live Euphoria</FONT><br>
<br>

-- President at Insight-Concepts.com, President at Insight-Concepts.com=
 on 06/13/2001<br>

new topic     » topic index » view message » categorize

2. Re: setFont

This is a multi-part message in MIME format.

------=_NextPart_000_0012_01C0F3EB.BCC0F400
	charset="iso-8859-1"

I have the exact same problem but in reverse.  The font is exactly want =
I want in 98, but is several font sizes bigger in 2000.
  ----- Original Message -----=20
  From: president at insight-concepts.com=20
  To: EUforum=20
  Sent: Wednesday, June 13, 2001 8:55 AM
  Subject: setFont




  I am having a small problem maybe you guys can help me with. I am   =
using setFont to control the font size within a CText and everything =
looks great on Win2000, but when I try the program on Win98, the font =
becomes bigger. Is there a way I can have the font size remain the same =
on both operating systems? The font I am currently using is Arial.


  Chris
  Long Live Euphoria

  -- President at Insight-Concepts.com, President at Insight-Concepts.com on =
06/13/2001




------=_NextPart_000_0012_01C0F3EB.BCC0F400
Content-Type: text/html;
	charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1"><BASEFONT=20
face=3DArial color=3D#000000 size=3D2>
<META content=3D"MSHTML 5.50.4134.600" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV>I have the exact same problem but in reverse.&nbsp; The font is =
exactly=20
want I want in 98, but is several font sizes bigger in 2000.</DIV>
<BLOCKQUOTE dir=3Dltr=20
style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; =
BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
  <DIV style=3D"FONT: 10pt arial">----- Original Message ----- </DIV>
  <DIV=20
  style=3D"BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: =
black"><B>From:</B>=20
  <A title=3Dpresident at insight-concepts.com=20
  =
href=3D"mailto:president at insight-concepts.com">president@insight-concepts=
.com</A>=20
  </DIV>
  <DIV style=3D"FONT: 10pt arial"><B>To:</B> <A =
title=3DEUforum at topica.com=20
  href=3D"mailto:EUforum at topica.com">EUforum</A> </DIV>
  <DIV style=3D"FONT: 10pt arial"><B>Sent:</B> Wednesday, June 13, 2001 =
8:55=20
  AM</DIV>
  <DIV style=3D"FONT: 10pt arial"><B>Subject:</B> setFont</DIV>
<A =
everything=20
  </FONT><FONT face=3DArial size=3D2>looks great on Win2000, but when I =
try the=20
  program on Win98, the font </FONT><FONT face=3DArial size=3D2>becomes =
bigger. Is=20
  there a way I can have the font size remain the </FONT><FONT =
face=3DArial=20
  size=3D2>same on both operating systems? The font I am currently using =
is=20
  </FONT><FONT face=3DArial size=3D2>Arial.</FONT><BR><BR><FONT =
face=3DArial=20
  size=3D2></FONT><BR><FONT face=3DArial size=3D2></FONT><FONT =
face=3DArial=20
  size=3D2>Chris</FONT><BR><FONT face=3DArial size=3D2>Long Live=20
  Euphoria</FONT><BR><BR>-- President at Insight-Concepts.com,=20
  President at Insight-Concepts.com on =
06/13/2001<BR><PRE>=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D
Enjoy your vacation more knowing that My Topica won’t
overstuff your inbox! When you come back, your email will,
too. Refreshed. Relaxed. Ready to be read. Sign up for free
email R&amp;R.
<A =
Or send an email To: EUforum-unsubscribe at topica.com
This email was sent to: jjnick at cvn.com

<A =

------=_NextPart_000_0012_01C0F3EB.BCC0F400--

new topic     » goto parent     » topic index » view message » categorize

3. Re: setFont

This is a multi-part message in MIME format.

------=_NextPart_000_0002_01C0F454.E55420E0
	charset="iso-8859-1"

Use getTextExtent
although not tested personally you should be able to use a string to test
for the current font Width/Height
and set values thru-out your program to compensate.

or if your not useing Win32lib then

Use GetTextMetrics(hdc,tm)
       fontwidth = peek4s(tm+tmMaxCharWidth)
       fontHeight = peek4s(tm+tmHeight)

Also, useing Grouped controls will help out some in situations where One
person is useing Small Fonts
and another Large Fonts.

Euman
euman at bellsouth.net

  ----- Original Message -----
  From: president at insight-concepts.com
  To: EUforum
  Sent: Wednesday, June 13, 2001 18:01
  Subject: RE: setFont



===================
Enter Food Network's Taste The Adventure Sweepstakes:
You & 3 friends take the food adventure of a lifetime
on a private jet to three mouth-watering destinations!

Hi Bernie,


I was the person who originally posted the problem. When I use setFont to
control the size of fonts, the font size changes on each operating system.
Example: Lets say I have the font size set at 13 or 14 on Win2000 it looks
great, but if I run the same program on Win98 the font is 2 to 3 sizes
larger. This is a problem if your are dependent on the font size remaining
the same size across operating systems. I hope you have luck........

Christopher Bouzy,
  President/CEO



-- President at Insight-Concepts.com, President at Insight-Concepts.com on
06/13/2001
====================
How do you want to save today?
29 ways to save big bucks on stuff you want - FREE.




------=_NextPart_000_0002_01C0F454.E55420E0
Content-Type: text/html;
	charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1"><BASEFONT=20
face=3DArial color=3D#000000 size=3D2>
<META content=3D"MSHTML 6.00.2462.0" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#cbcde2>
<DIV>Use getTextExtent </DIV>
<DIV>although not tested personally you should be able to use a string =
to test=20
for the current font Width/Height</DIV>
<DIV>and set values thru-out your program to compensate.</DIV>
<DIV>&nbsp;</DIV>
<DIV>or if your not useing Win32lib then</DIV>
<DIV>&nbsp;</DIV>
<DIV>Use GetTextMetrics(hdc,tm)</DIV>
<DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; fontwidth =3D=20
peek4s(tm+tmMaxCharWidth)</DIV>
<DIV>
<DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; fontHeight =3D =
peek4s(tm+tmHeight)</DIV>
<DIV>&nbsp;</DIV>
<DIV>Also, useing Grouped controls will help out some in situations =
where One=20
person is useing Small Fonts</DIV>
<DIV>and another Large Fonts.</DIV></DIV>
<DIV>&nbsp;</DIV>
<DIV>Euman<BR><A =
href=3D"mailto:euman at bellsouth.net">euman at bellsouth.net</A></DIV>
<DIV>&nbsp;</DIV>
<BLOCKQUOTE dir=3Dltr=20
style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; =
BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
  <DIV style=3D"FONT: 10pt arial">----- Original Message ----- </DIV>
  <DIV=20
  style=3D"BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: =
black"><B>From:</B>=20
  <A title=3Dpresident at insight-concepts.com=20
  =
href=3D"mailto:president at insight-concepts.com">president@insight-concepts=
.com</A>=20
  </DIV>
  <DIV style=3D"FONT: 10pt arial"><B>To:</B> <A =
title=3DEUforum at topica.com=20
  href=3D"mailto:EUforum at topica.com">EUforum</A> </DIV>
  <DIV style=3D"FONT: 10pt arial"><B>Sent:</B> Wednesday, June 13, 2001=20
18:01</DIV>
  <DIV style=3D"FONT: 10pt arial"><B>Subject:</B> RE: setFont</DIV>
</PRE><PRE>=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
Enter Food Network=92s Taste The Adventure Sweepstakes:
You &amp; 3 friends take the food adventure of a lifetime
on a private jet to three mouth-watering destinations!
<A =
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D/PRE&gt;

<FONT face=3DArial color=3D#000000 size=3D2>Hi Bernie,</FONT><BR>
<BR>
<FONT face=3DArial color=3D#000000 size=3D2></FONT><BR>
<FONT face=3DArial color=3D#000000 size=3D2></FONT><FONT face=3DArial =
color=3D#000000 size=3D2>I was the person who originally posted the =
problem. When I use </FONT><FONT face=3DArial color=3D#000000 =
size=3D2>setFont to control the size of fonts, the font size changes on =
each </FONT><FONT face=3DArial color=3D#000000 size=3D2>operating =
system. Example: Lets say I have the font size set at 13 or </FONT><FONT =
face=3DArial color=3D#000000 size=3D2>14 on Win2000 it looks great, but =
if I run the same program on Win98 </FONT><FONT face=3DArial =
color=3D#000000 size=3D2>the font is 2 to 3 sizes larger. This is a =
problem if your are </FONT><FONT face=3DArial color=3D#000000 =
size=3D2>dependent on the font size remaining the same size across =
operating </FONT><FONT face=3DArial color=3D#000000 size=3D2>systems. I =
hope you have luck........</FONT><BR>
<BR>
<FONT face=3DArial color=3D#000000 size=3D2></FONT><FONT face=3DArial =
color=3D#000000 size=3D2>Christopher Bouzy,</FONT><BR>
<FONT face=3DArial color=3D#000000 size=3D2>&nbsp; President/CEO<BR>
</FONT><FONT face=3DArial color=3D#000000 size=3D2><BR>
</FONT><BR>

-- President at Insight-Concepts.com, President at Insight-Concepts.com on =
06/13/2001<BR>
<A =
Or send an email To: EUforum-unsubscribe at topica.com
This email was sent to: euman at bellsouth.net

<A =

------=_NextPart_000_0002_01C0F454.E55420E0--

new topic     » goto parent     » topic index » view message » categorize

4. Re: setFont

This is a multi-part message in MIME format.

------=_NextPart_000_0006_01C0F44E.943B13E0
charset="iso-8859-1"

I would apprecite your useing *Enter* once in a while.
These drawn out one line messages suck.

Euman
euman at bellsouth.net
  ----- Original Message -----
  From: president at insight-concepts.com
  To: EUforum
  Sent: Wednesday, June 13, 2001 18:01
  Subject: RE: setFont


> 
===================
Enter Food Network's Taste The Adventure Sweepstakes:
You & 3 friends take the food adventure of a lifetime
on a private jet to three mouth-watering destinations!

Hi Bernie,


I was the person who originally posted the problem. When I use setFont to
control the size of fonts, the font size changes on each operating system.
Example: Lets say I have the font size set at 13 or 14 on Win2000 it looks
great, but if I run the same program on Win98 the font is 2 to 3 sizes
larger. This is a problem if your are dependent on the font size remaining
the same size across operating systems. I hope you have luck........

Christopher Bouzy,
  President/CEO



-- President at Insight-Concepts.com, President at Insight-Concepts.com on
06/13/2001
====================
How do you want to save today?
29 ways to save big bucks on stuff you want - FREE.
> 
> 


------=_NextPart_000_0006_01C0F44E.943B13E0
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1"><BASEFONT=20
face=3DArial color=3D#000000 size=3D2>
<META content=3D"MSHTML 6.00.2462.0" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#cbcde2>
<DIV>I would apprecite your useing *Enter* once in a while.</DIV>
<DIV>These drawn out one line messages suck.</DIV>
<DIV>&nbsp;</DIV>
<DIV>Euman<BR><A =
href=3D"mailto:euman at bellsouth.net">euman at bellsouth.net</A></DIV>
<BLOCKQUOTE dir=3Dltr=20
style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; =
BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
  <DIV style=3D"FONT: 10pt arial">----- Original Message ----- </DIV>
  <DIV=20
  style=3D"BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: =
black"><B>From:</B>=20
  <A title=3Dpresident at insight-concepts.com=20
  =
href=3D"mailto:president at insight-concepts.com">president@insight-concepts=
.com</A>=20
  </DIV>
  <DIV style=3D"FONT: 10pt arial"><B>To:</B> <A =
title=3DEUforum at topica.com=20
  href=3D"mailto:EUforum at topica.com">EUforum</A> </DIV>
  <DIV style=3D"FONT: 10pt arial"><B>Sent:</B> Wednesday, June 13, 2001=20
18:01</DIV>
  <DIV style=3D"FONT: 10pt arial"><B>Subject:</B> RE: setFont</DIV>
</PRE><PRE>=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
Enter Food Network=92s Taste The Adventure Sweepstakes:
You &amp; 3 friends take the food adventure of a lifetime
on a private jet to three mouth-watering destinations!
<A =
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D/PRE&gt;

<FONT face=3DArial color=3D#000000 size=3D2>Hi Bernie,</FONT><BR>
<BR>
<FONT face=3DArial color=3D#000000 size=3D2></FONT><BR>
<FONT face=3DArial color=3D#000000 size=3D2></FONT><FONT face=3DArial =
color=3D#000000 size=3D2>I was the person who originally posted the =
problem. When I use </FONT><FONT face=3DArial color=3D#000000 =
size=3D2>setFont to control the size of fonts, the font size changes on =
each </FONT><FONT face=3DArial color=3D#000000 size=3D2>operating =
system. Example: Lets say I have the font size set at 13 or </FONT><FONT =
face=3DArial color=3D#000000 size=3D2>14 on Win2000 it looks great, but =
if I run the same program on Win98 </FONT><FONT face=3DArial =
color=3D#000000 size=3D2>the font is 2 to 3 sizes larger. This is a =
problem if your are </FONT><FONT face=3DArial color=3D#000000 =
size=3D2>dependent on the font size remaining the same size across =
operating </FONT><FONT face=3DArial color=3D#000000 size=3D2>systems. I =
hope you have luck........</FONT><BR>
<BR>
<FONT face=3DArial color=3D#000000 size=3D2></FONT><FONT face=3DArial =
color=3D#000000 size=3D2>Christopher Bouzy,</FONT><BR>
<FONT face=3DArial color=3D#000000 size=3D2>&nbsp; President/CEO<BR>
</FONT><FONT face=3DArial color=3D#000000 size=3D2><BR>
</FONT><BR>

-- President at Insight-Concepts.com, President at Insight-Concepts.com on =
06/13/2001<BR>
This email was sent to: euman at bellsouth.net

> 
------=_NextPart_000_0006_01C0F44E.943B13E0--

new topic     » goto parent     » topic index » view message » categorize

5. Re: setFont

??? One line messages?


Chris <-----Is confused

-- President at Insight-Concepts.com, President at Insight-Concepts.com=
 on 06/13/2001

new topic     » goto parent     » topic index » view message » categorize

6. Re: setFont

14/06/2001 12:22:28 PM, president at insight-concepts.com wrote:

>
>??? One line messages?
>
>
>Chris <-----Is confused
>

Chris,
I don't think its your "fault". There is a bug in the HTML inserted by Topica's
leading advert. It is supposed to enclose the advert in "<PRE>" and "</PRE>" tags
but the final tag is "/PRE>" instead. Thus it displays
the body of the letter as "preformatted" and so doesn't put in word wraps.

The best option is to never send an email in HTML format. Just use plain text
unless absolutely necessary to do otherwise.

-----------
cheers,
Derek Parnell

new topic     » goto parent     » topic index » view message » categorize

7. Re: setFont

Derek,

Do you have any suggestions on the setFont problem?

Chris,
Long Live Euphoria


-- Christopher Bouzy, President at Insight-Concepts.com on=
 06/14/2001

new topic     » goto parent     » topic index » view message » categorize

Search



Quick Links

User menu

Not signed in.

Misc Menu