Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
|
Feb
(7) |
Mar
(5) |
Apr
(4) |
May
(15) |
Jun
(10) |
Jul
(4) |
Aug
(12) |
Sep
(39) |
Oct
(22) |
Nov
(46) |
Dec
(65) |
2002 |
Jan
(19) |
Feb
(27) |
Mar
(50) |
Apr
(73) |
May
(85) |
Jun
(52) |
Jul
(49) |
Aug
(95) |
Sep
(152) |
Oct
(81) |
Nov
(42) |
Dec
(62) |
2003 |
Jan
(45) |
Feb
(47) |
Mar
(101) |
Apr
(110) |
May
(53) |
Jun
(72) |
Jul
(125) |
Aug
(77) |
Sep
(87) |
Oct
(69) |
Nov
(55) |
Dec
(71) |
2004 |
Jan
(127) |
Feb
(68) |
Mar
(93) |
Apr
(102) |
May
(64) |
Jun
(92) |
Jul
(40) |
Aug
(113) |
Sep
(44) |
Oct
(61) |
Nov
(44) |
Dec
(100) |
2005 |
Jan
(57) |
Feb
(51) |
Mar
(101) |
Apr
(73) |
May
(45) |
Jun
(97) |
Jul
(92) |
Aug
(94) |
Sep
(46) |
Oct
(83) |
Nov
(82) |
Dec
(68) |
2006 |
Jan
(92) |
Feb
(116) |
Mar
(84) |
Apr
(66) |
May
(40) |
Jun
(57) |
Jul
(89) |
Aug
(82) |
Sep
(58) |
Oct
(94) |
Nov
(104) |
Dec
(70) |
2007 |
Jan
(86) |
Feb
(108) |
Mar
(193) |
Apr
(84) |
May
(71) |
Jun
(54) |
Jul
(17) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
1
(1) |
2
(10) |
3
(1) |
4
|
5
(3) |
6
(1) |
7
(2) |
8
|
9
(1) |
10
|
11
(6) |
12
(1) |
13
(3) |
14
(3) |
15
(5) |
16
(3) |
17
(1) |
18
|
19
(3) |
20
(1) |
21
(2) |
22
(2) |
23
|
24
(1) |
25
|
26
(1) |
27
(1) |
28
(1) |
29
|
30
|
31
|
From: Mattia Barbon <mbarbon@ds...> - 2003-05-11 17:34:36
|
On Sun, 11 May 2003 02:42:42 -0700 (PDT) DH <crazyinsomniac@...> wrote: > I've been looking into Drag'n'Drop on wxWindows. > > Say I have a browser open (mozilla, ie, whatever), > and I click on a link, and drag it to my wxwindows application ... > > Now, is it possible to have a drop target which would accept the link? Use the (undocumented) Wx::URLDataObject; documentation: ->new() ->GetURL() (returning a string) ->SetUrl( string ) I only tested it a long time ago, but it should be as easy as Wx::Text/BitmapDataObject. HTH Mattia |
From: Mattia Barbon <mbarbon@ds...> - 2003-05-11 17:25:00
|
Hello, I tried to make wxPerl site a bit less worse, a preview is there: http://wwwstud.dsi.unive.it/~mbarbon/test/ (some links won't work). I'd appreciate feedback and suggestions. Thanks! Mattia P.S.: I already planned a page with links to "real world apps" with wxPerl, hence you don't need to make that particular suggestion :-) |
From: DH <crazyinsomniac@ya...> - 2003-05-11 09:42:47
|
I've been looking into Drag'n'Drop on wxWindows. Say I have a browser open (mozilla, ie, whatever), and I click on a link, and drag it to my wxwindows application ... Now, is it possible to have a drop target which would accept the link? How? (an example works best -- i hypothesize i'd need an appropriate DataObject or something ;) I'm interested in this because 1) I wanna write my own bookmark manager thingamajigger 2) I wanna write my own download manager (smarter that DLExpert, less dumb than the constantly changing GetRight) __________________________________ Do you Yahoo!? The New Yahoo! Search - Faster. Easier. Bingo. http://search.yahoo.com |
From: DH <crazyinsomniac@ya...> - 2003-05-11 02:40:37
|
> Hi Folks, > > I just discovered that the trick to launching a browser on > Windows (at least on my NT version), is to use the DOS > shortname. > It's no trick, but it does block system qw[ cmd.exe /c start iexplore.exe], $url; # to start a new window, no need for shortname system qw[ cmd.exe /c start ], $url; # to reuse an open window, need shortname see http://perlmonks.com/index.pl?node=Perl%2FTk%20Chatterbox%20Client for an example using Win32::Process; __________________________________ Do you Yahoo!? The New Yahoo! Search - Faster. Easier. Bingo. http://search.yahoo.com |
From: Marc M. Adkins <mmadki@Doorways.org> - 2003-05-11 01:56:30
|
I used to use this code fragment to launch Explorer: $explorer = new Win32::OLE('InternetExplorer.Application'); $explorer->Visible(1); $explorer->Navigate("http://localhost:$port/";, 3); This was executed by an HTTP::Daemon program I wrote. I could run the program and have the browser launch automatically pointing back at the daemon. A lot quicker to code than real GUI (irony intended)! mma > -----Original Message----- > From: wxperl-users-admin@... > [mailto:wxperl-users-admin@...]On Behalf Of Marcus > Sent: Saturday, May 10, 2003 6:36 PM > To: wxperl-users@... > Subject: [wxperl-users] Launching browser on Windows > > > Hi Folks, > > I just discovered that the trick to launching a browser on > Windows (at least on my NT version), is to use the DOS > shortname. > > So, as another alternative (to previous post a while ago): > > my $short_browser_path = Win32::GetShortPathName($browser_path); > system("$short_browser_path http://www.wxwindows.org/";); > > The wx Execute command may work without, however remember > to use quotes with long filenames. > > HTH, > > Marcus > > > > ------------------------------------------------------- > Enterprise Linux Forum Conference & Expo, June 4-6, 2003, Santa Clara > The only event dedicated to issues related to Linux enterprise solutions > http://www.enterpriselinuxforum.com > > _______________________________________________ > wxperl-users mailing list > wxperl-users@... > https://lists.sourceforge.net/lists/listinfo/wxperl-users > |
From: Marcus <lists@wo...> - 2003-05-11 01:36:22
|
Hi Folks, I just discovered that the trick to launching a browser on Windows (at least on my NT version), is to use the DOS shortname. So, as another alternative (to previous post a while ago): my $short_browser_path = Win32::GetShortPathName($browser_path); system("$short_browser_path http://www.wxwindows.org/";); The wx Execute command may work without, however remember to use quotes with long filenames. HTH, Marcus |