You can subscribe to this list here.
2001 |
Jan
(226) |
Feb
(139) |
Mar
(156) |
Apr
(95) |
May
(181) |
Jun
(166) |
Jul
(80) |
Aug
(59) |
Sep
(69) |
Oct
(83) |
Nov
(142) |
Dec
(33) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(42) |
Feb
(91) |
Mar
(76) |
Apr
(113) |
May
(67) |
Jun
(68) |
Jul
(37) |
Aug
(41) |
Sep
(16) |
Oct
(135) |
Nov
(51) |
Dec
(21) |
2003 |
Jan
(37) |
Feb
(36) |
Mar
(37) |
Apr
(103) |
May
(68) |
Jun
(70) |
Jul
(77) |
Aug
(12) |
Sep
(9) |
Oct
(53) |
Nov
(88) |
Dec
(63) |
2004 |
Jan
(263) |
Feb
(106) |
Mar
(36) |
Apr
(21) |
May
(21) |
Jun
(34) |
Jul
(33) |
Aug
(34) |
Sep
(35) |
Oct
(21) |
Nov
(43) |
Dec
(63) |
2005 |
Jan
(28) |
Feb
(42) |
Mar
(29) |
Apr
(14) |
May
(41) |
Jun
(20) |
Jul
(65) |
Aug
(136) |
Sep
(41) |
Oct
(74) |
Nov
(34) |
Dec
(94) |
2006 |
Jan
(85) |
Feb
(94) |
Mar
(68) |
Apr
(103) |
May
(66) |
Jun
(51) |
Jul
(24) |
Aug
(56) |
Sep
(57) |
Oct
(85) |
Nov
(73) |
Dec
(68) |
2007 |
Jan
(59) |
Feb
(32) |
Mar
(13) |
Apr
(32) |
May
(36) |
Jun
(36) |
Jul
(64) |
Aug
(35) |
Sep
(19) |
Oct
(10) |
Nov
(13) |
Dec
(20) |
2008 |
Jan
(26) |
Feb
(41) |
Mar
(19) |
Apr
(24) |
May
(16) |
Jun
(33) |
Jul
(34) |
Aug
(4) |
Sep
(11) |
Oct
|
Nov
(26) |
Dec
(23) |
2009 |
Jan
(5) |
Feb
(2) |
Mar
(21) |
Apr
(16) |
May
(13) |
Jun
(6) |
Jul
(34) |
Aug
(2) |
Sep
(1) |
Oct
(7) |
Nov
(5) |
Dec
(24) |
2010 |
Jan
(3) |
Feb
(5) |
Mar
(6) |
Apr
(6) |
May
(14) |
Jun
(6) |
Jul
(1) |
Aug
(12) |
Sep
(10) |
Oct
(9) |
Nov
|
Dec
(2) |
2011 |
Jan
(4) |
Feb
(5) |
Mar
(30) |
Apr
(1) |
May
(2) |
Jun
(5) |
Jul
(3) |
Aug
(2) |
Sep
(3) |
Oct
|
Nov
(6) |
Dec
|
2012 |
Jan
|
Feb
(10) |
Mar
|
Apr
|
May
(1) |
Jun
(3) |
Jul
(1) |
Aug
|
Sep
(2) |
Oct
|
Nov
(2) |
Dec
(4) |
2013 |
Jan
(5) |
Feb
(3) |
Mar
|
Apr
(3) |
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
(2) |
Feb
|
Mar
|
Apr
(1) |
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(9) |
Nov
(7) |
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(4) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(5) |
Dec
|
2019 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
1
|
2
|
3
|
4
|
5
|
6
|
7
|
8
(1) |
9
|
10
|
11
|
12
|
13
|
14
|
15
|
16
|
17
|
18
|
19
|
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
29
|
30
|
31
|
|
|
From: John W. <jo...@jo...> - 2012-05-08 21:19:03
|
Hello: My Win32::GUI app has text in the window, and when run on Windows 7, versus 98 or XP, the size of the text in pixels changes. Is there a way to keep the text size consistant, pixel wise, across the different operating systems? Here is an image showing how it differs, Windows 7 vs Win98... http://www.johnwhitney.com/tmp/tmp.jpg Here is my code for my test program... #!perl -w # Perl text size test 1 use strict ; use warnings ; use Win32::GUI 1.05 qw () ; use constant G_VERSION => 'Ver 1.1' ; # Define fonts my $font1 = new Win32::GUI::Font ( -name => 'Arial' , -size => 10 ) ; my $font2 = new Win32::GUI::Font ( -name => 'Verdana' , -size => 10 ) ; my $font3 = new Win32::GUI::Font ( -name => 'Courier New' , -size => 10 ) ; my $window_main = Win32::GUI::Window -> new ( -title => "Perl text size tests: " . G_VERSION , -pos => [ 300 , 300 ] , -size => [ 500 , 300 ] , -background => 0xffffff ) ; my $window_main_t1 = new Win32::GUI::Label ( $window_main , -text => "Text 1" , -name => 'window_main_t1' , -font => $font1 , -size => [ 100 , 18 ] , -background => 0xd0d0d0 , -pos => [ 17 , 38 ] ) ; my $window_main_t2 = new Win32::GUI::Label ( $window_main , -text => "Text 2" , -name => 'window_main_t2' , -font => $font2 , -size => [ 100 , 18 ] , -background => 0xd0d0d0 , -pos => [ 17 , 58 ] ) ; my $window_main_t3 = new Win32::GUI::Label ( $window_main , -text => "Text 3" , -name => 'window_main_t3' , -font => $font3 , -size => [ 100 , 18 ] , -background => 0xd0d0d0 , -pos => [ 17 , 78 ] ) ; # Add m1... my $window_main_m1 = new Win32::GUI::Label ( $window_main , -text => ' ' , -name => 'window_main_m1' , -font => $font1 , -size => [ 50 , 18 ] , -background => 0x808080 , -pos => [ 17 , 18 ] ) ; my $window_main_m2 = new Win32::GUI::Label ( $window_main , -text => ' ' , -name => 'window_main_m2' , -font => $font1 , -size => [ 50 , 18 ] , -background => 0x909090 , -pos => [ 67 , 18 ] ) ; my $window_main_m3 = new Win32::GUI::Label ( $window_main , -text => ' ' , -name => 'window_main_m3' , -font => $font1 , -size => [ 50 , 18 ] , -background => 0xA0A0A0 , -pos => [ 117 , 18 ] ) ; my $window_main_m4 = new Win32::GUI::Label ( $window_main , -text => ' ' , -name => 'window_main_m4' , -font => $font1 , -size => [ 50 , 18 ] , -background => 0xB0B0B0 , -pos => [ 167 , 18 ] ) ; my $window_main_m5 = new Win32::GUI::Label ( $window_main , -text => ' ' , -name => 'window_main_m5' , -font => $font1 , -size => [ 50 , 18 ] , -background => 0xC0C0C0 , -pos => [ 217 , 18 ] ) ; my $window_main_m6 = new Win32::GUI::Label ( $window_main , -text => ' ' , -name => 'window_main_m6' , -font => $font1 , -size => [ 50 , 18 ] , -background => 0xD0D0D0 , -pos => [ 267 , 18 ] ) ; $window_main -> Show () ; Win32::GUI::Dialog () ; $window_main -> Hide () ; exit ( 0 ) ; John :-) jo...@jo... 801 815 9265 |