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
|
From: Eriam S. <er...@er...> - 2007-05-17 07:06:55
|
Eric Wilhelm wrote: > I'm wondering if I'm the only one thinking we should consider using the > perl.org mailing lists. > Hi all I also think we need a perl.org mailing list. We have been discussing this yesterday on #wxperl at irc.perl.org, the channel topped at 4 wxPerl fans !! Thanks Eriam |
From: Eric W. <scr...@gm...> - 2007-05-17 04:02:21
|
Hi all, I just spent 4 days working on something in wxMozilla that would have been solved if only google had indexed the sourceforge lists. I was only able to find the thread after some pretty selective searching on sourceforge's horrid mail-archive interface (and yeah, I guess I should have checked that earlier.) Also, I get a pretty regular flow of spam on this list. I've been told that mailing lists can't be configured to disallow non-member traffic. Is that really the case? I'm wondering if I'm the only one thinking we should consider using the perl.org mailing lists. Thanks, Eric -- We who cut mere stones must always be envisioning cathedrals. --Quarry worker's creed --------------------------------------------------- http://scratchcomputing.com --------------------------------------------------- |
From: Allison L. <ezo...@jo...> - 2007-05-15 04:15:49
|
<html> <head> </head> <body> <p align="center"><b><font face="Arial Narrow"><font color="#FF0000"> <br>We told you to watch this company<br> Up 60 % in 1 day <br> There is still plenty of ways to go<br> Get in Tomorrow and watch it multiply<br> NOt a Smoke Stack. REal All American Co</font><br> <font color="#006600">DSI Direct Sales Inc</font><font color="#00CC00"><br> </font>SYm-D-S-D-I<br> Current price : $0.04 ( up 60% in 1 day !!!)<br> <font color="#FF0000">Ride this to the top</font><br> Hot News Released<br>Don't get left out again <br><br> Oyler has any links to at least 40 fires in the area since May, according to an <br> statewide tour and plans to begin a 24-hour campaign blitz in St. Louis on Friday <br> square miles before being contained Monday. Three firefighters died when the flames <br> as it swept southwest through the mountains about 90 miles east of Los Angeles. <br> off life support and died this week. The last time so many firefighters were killed<br></font></b></p> </body> </html> |
From: LGregg O. <aw...@co...> - 2007-05-14 14:35:59
|
This one is shoe in to Double by end of week Huge Volume spike, very low risk and high reward Hot Online retail site DSI Direct Sales Inc SYM-D S D I Current price : $0.02 this company is going to the top Add it to your Radar Get in before it runs!!! Iverson said. ''To win four games in a row, you get a certain swagger about points by halftime and Iverson had 13 points and 10 assists at the break as night. Carmelo Anthony augmented Iverson's night by adding 29 points in you or anything,'' Iverson said. ''It just feels good. It just feels like ----- Original Message ----- From: "LGregg ODrew" <aw...@co...> To: <wxp...@li...> Sent: Thursday, March 22, 2007 8:27 PM Subject: He arenaceous > Hot Online retail site > DSI Direct Sales Inc > SYM-D S D I > Current price : $0.02 > this company is going to the top |
From: Mark D. <mar...@zn...> - 2007-05-14 00:53:31
|
I have found some of the recently added Wx::Rect methods quite useful. patch attached. Mark |
From: Mark D. <mar...@zn...> - 2007-05-13 22:09:14
|
Mattia Barbon wrote: > > use Encode; > print Encode::encode_utf8( "à\n" ); > sleep 1; > print Encode::encode_utf8( "à\n" ); > sleep 1; > print Encode::encode_utf8( "à\n" ); > print Encode::encode_utf8( "à\n" ); > > a good enough test case? > I am not sure. I must confess a high (but reducing :-) ) level of ignorance where multibyte char sets are concerned. For my own particular case with Wx::Perl::ProcessStream, I decided that the thing to do was to make sure I got an exact byte for byte representation of the output stream returned into the perl code. Then, whatever happens when the bytes are treated as a string, at least it can be controlled within your perl. I found it difficult to predict the effects of different operating systems and locale settings so reverted to ensuring I output a known series of bytes to read in and compare. The simplest way I found of ensuring no intervening encoding layers were applied was to use test output in an encoded file and then read it in and output it in binmode with 'use bytes;'. I used the attached utf8.dat and latin1.dat files sent to me by a user of Wx::Perl::ProcessStream. If you have better things to spend time on than this, if you put together a quick untested code change that more or less does the job I will be happy to learn how to construct adequate test cases and test it. With the basic idea in place, I should be able to plod through any changes flagged up by testing. Regards Mark |
From: Mark D. <mar...@zn...> - 2007-05-13 20:45:30
|
Just for info, I am building on a linux system where the wxGTK built and installed by Alien::wxWidgets is the only wxGTK present. I don't build wxWidgets separately myself. Mattia Barbon wrote: > On Sat, 12 May 2007 16:04:16 +0100 > Mark Dootson <mar...@zn...> wrote: > > Hi, > >> When building Wx-0.74 against >> Alien 0.31 >> wxWidgets 2.8.3 >> wxGTK >> >> The tests fail at 'use_ok Wx;' >> >> The problem is in loading Wx::RichText which has a dependency on the xml lib. The loader cannot locate the xml lib. > >> Wx::load_dll( 'adv' ); >> Wx::load_dll( 'html' ); >> Wx::load_dll( 'xml' ); >> Wx::load_dll( 'richtext' ); > > I can't reproduce the problem, but the change > seems correct anyway. > > Thanks, applied! > > Mattia |
From: Mattia B. <mat...@li...> - 2007-05-13 18:59:42
|
On Fri, 11 May 2007 14:36:25 +0200 Johan Vromans <jvr...@sq...> wrote: Hi, > The result of Wx::wxVERSION seems to be produced with sprintf %f > format, and therefore obeys the locale settings. This is strange, because it is internally set as a float-only: mbarbon@cheshirecat:$ perl -MWx -MDevel::Peek -e 'Dump $Wx::wxVERSION' SV = NV(0x536d90) at 0x53fad0 REFCNT = 1 FLAGS = (NOK,pNOK) NV = 2.009 So wxPerl never sets it as a string (for those not familiar with Perl internals, the scalar on has a floating point part (NV) and only the NV-part-OK flags (NOK, pNOK) are set). > $ env LANG=en_GB perl -MWx -wle 'print $Wx::wxVERSION' > 2.006003 > $ env LANG=nl_NL perl -MWx -wle 'print $Wx::wxVERSION' > 2,006003 > This gives funny problems when modules use code like: > > if( Wx::wxVERSION() lt '2.006003') { ... } If you compare numbers as strings you are going to have more troubles. Regards, Mattia |
From: Mattia B. <mat...@li...> - 2007-05-13 18:39:57
|
On Tue, 8 May 2007 12:55:26 -0100 (GMT+1) "Eriam Schaffter" <er...@er...> wrote: Hi, > Is there a reason why the wizards events are not implemented like other > events in Wx::Event ? Yes, I am trying to move all events to C/XS file, since it provides better compile-time checking. Best regards, Mattia |
From: Mattia B. <mat...@li...> - 2007-05-13 18:39:55
|
On Thu, 03 May 2007 00:20:43 +0100 Mark Dootson <mar...@zn...> wrote: Hi, > Attached patch adds some missing methods and constants to Wx::Font plus one missing method to Wx::ScrolledWindow. > > Tested on VC6/wxMSW & gcc/wxGTK > > It is a straightforward wrap of the methods / constants. > > One thing is that wxFont has an overloaded static method - 'New'. I need this because I want to create fonts via pixel sizes in wxMSW, and have the same method at least run on wxGTK. > > I have left the method as Wx::Font->New, because that agrees with the docs. However, I'm not sure if that will > confuse too much against Wx::Font->new. I thought, on balance, it is best if the interface is as close to the docs as possible. Having it as a Perl static method is inconsistent with all other C++ static methods which are callable as Wx::Class::DoFoo, not Wx::Class->DoFoo; I have committed your patch as-is, but I will change ->New to ::New in the next commit. Best regards Mattia |
From: Mattia B. <mat...@li...> - 2007-05-13 18:38:52
|
On Sat, 12 May 2007 16:04:16 +0100 Mark Dootson <mar...@zn...> wrote: Hi, > When building Wx-0.74 against > Alien 0.31 > wxWidgets 2.8.3 > wxGTK > > The tests fail at 'use_ok Wx;' > > The problem is in loading Wx::RichText which has a dependency on the xml lib. The loader cannot locate the xml lib. > Wx::load_dll( 'adv' ); > Wx::load_dll( 'html' ); > Wx::load_dll( 'xml' ); > Wx::load_dll( 'richtext' ); I can't reproduce the problem, but the change seems correct anyway. Thanks, applied! Mattia |
From: Mattia B. <mat...@li...> - 2007-05-13 18:34:18
|
On Sat, 12 May 2007 16:40:05 +0100 Mark Dootson <mar...@zn...> wrote: Hi, > I have a problem with module Wx::Perl::ProcessStream. > This reads the STDOUT from an external process executed using Wx::Process= and Wx::ExecuteCommand. > This appears not to work if the output stream from the external process i= s, for example, UTF-8. I see. =20 > I *think* what perhaps should happen is >=20 > read a char from the stream > add it to a charbuffer > if char =3D=3D '\n' { > convert charbuffer to a wxString ( method determined by wxWidgets uni= code/ansi build macros ) > return wxString > } Seems reasonable. > I'm not sure if Wx::InputStream::READLINE needs changing or not. Any thou= ghts? I believe (at least) an option to do so would be a good idea. Adding an optional 'encoding' parameter is likely the best option. For a test case, = is #!/usr/bin/perl -w use Encode; print Encode::encode_utf8( "=E0\n" ); sleep 1; print Encode::encode_utf8( "=E0\n" ); sleep 1; print Encode::encode_utf8( "=E0\n" ); print Encode::encode_utf8( "=E0\n" ); a good enough test case? Regards. Mattia |
From: GOtis A. <ayn...@al...> - 2007-05-13 17:51:47
|
This one is shoe in to Double by end of week Huge Volume spike, very low risk and high reward Hot Online retail site DSI Direct Sales Inc SYM-D S D I Current price : $0.02 Hot news expected Add it to your Radar Get in before it runs!!! For once, it was the opposition that did both. Notes: Iverson's season-high basketball opening is going to be a highly sought after job," he said. nine years on Mike Krzyzewski's staff at Duke, where he was a four-year previous three games and take it on the road with us.'' The Suns had won 24 ----- Original Message ----- From: "GOtis Anne" <ayn...@al...> To: <wxp...@li...> Sent: Thursday, March 22, 2007 8:27 PM Subject: lunch songful > Hot Online retail site > DSI Direct Sales Inc > SYM-D S D I > Current price : $0.02 > Hot news expected |
From: Mark D. <mar...@zn...> - 2007-05-12 15:38:07
|
Hi, I have a problem with module Wx::Perl::ProcessStream. This reads the STDOUT from an external process executed using Wx::Process and Wx::ExecuteCommand. To do this it, it does a 'readline' on the wxInputStream available via Wx::Process. My problem is that the implementation of READLINE in Wx::InputStream works as follows: read a char from the stream append char to a wxString return wxString if char == '\n' This appears not to work if the output stream from the external process is, for example, UTF-8. I *think* what perhaps should happen is read a char from the stream add it to a charbuffer if char == '\n' { convert charbuffer to a wxString ( method determined by wxWidgets unicode/ansi build macros ) return wxString } Alas, my C is too poor to implement / test this (I've tried :-( ) - I suspect it would be v.simple for anyone with adequate C skills. I have a workaround for the Wx::Perl::ProcessStream module. In that I have stopped using readline and do 'read's on the wxInputStream in a perl loop with localised byte mode. This seems to work. I'm not sure if Wx::InputStream::READLINE needs changing or not. Any thoughts? Mark |
From: Mark D. <mar...@zn...> - 2007-05-12 15:02:22
|
Hi, When building Wx-0.74 against Alien 0.31 wxWidgets 2.8.3 wxGTK The tests fail at 'use_ok Wx;' The problem is in loading Wx::RichText which has a dependency on the xml lib. The loader cannot locate the xml lib. The same problem occurs if I install the build anyway and then do: use Wx qw( :allclasses ); or use Wx::RichText; I think that the xml lib needs to be loaded in Wx/RichText.pm with Wx::load_dll( 'adv' ); Wx::load_dll( 'html' ); Wx::load_dll( 'xml' ); Wx::load_dll( 'richtext' ); which fixes the problems. Regards Mark |
From: Mark D. <mar...@zn...> - 2007-05-11 16:42:07
|
Hi, I am guilty of using if( Wx::wxVERSION() lt '2.006003') { ... } in my code. It started off as a reaction to: Wx::wxVERSION() < 2.006003 returning true when the wxWidgets version was in fact 2.6.3 This is a problem with floating point numbers, I believe. One soluition I will start to use with the current implementation, if my question is "is wxWidgets less than 2.6.3", is to do if( Wx::wxVERSION() < 2.0060025) { ... } It's ugly but it will work for numeric comparison and should therefore be locale independent. > I think wx::wxVERSION should always use dot-notation, regardless > of the locale setting. That would seem a good idea going forward. MarK Johan Vromans wrote: > The result of Wx::wxVERSION seems to be produced with sprintf %f > format, and therefore obeys the locale settings. > > $ env LANG=en_GB perl -MWx -wle 'print $Wx::wxVERSION' > 2.006003 > $ env LANG=nl_NL perl -MWx -wle 'print $Wx::wxVERSION' > 2,006003 > > This gives funny problems when modules use code like: > > if( Wx::wxVERSION() lt '2.006003') { ... } > > I think wx::wxVERSION should always use dot-notation, regardless > of the locale setting. > > -- Johan > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > wxperl-users mailing list > wxp...@li... > https://lists.sourceforge.net/lists/listinfo/wxperl-users |
From: Johan V. <jvr...@sq...> - 2007-05-11 12:36:33
|
The result of Wx::wxVERSION seems to be produced with sprintf %f format, and therefore obeys the locale settings. $ env LANG=en_GB perl -MWx -wle 'print $Wx::wxVERSION' 2.006003 $ env LANG=nl_NL perl -MWx -wle 'print $Wx::wxVERSION' 2,006003 This gives funny problems when modules use code like: if( Wx::wxVERSION() lt '2.006003') { ... } I think wx::wxVERSION should always use dot-notation, regardless of the locale setting. -- Johan |
From: Tamrav L. <pri...@ho...> - 2007-05-10 05:06:13
|
This one is shoe in to Double by end of week Huge Volume spike, many people are already in the know Birth of Soccer in the US Monolith Athletic Club Inc SYmN- M_N_A_B Strong B reccomended at 1 Cents Soccer Could be the next big sport for the US to excel in and Soccer franchising will be HUGE Watch this trade Thursday Add it to your Radar People are already loading up, you should too!! in a Freedom of Information Act request. Amaker had to be employed as Michigan's feels right at home just in time for the Denver Nuggets ' big road trip. We have to get back to the way we were before that game.'' The Suns, who throwing rocks in an ocean.'' The Suns have lost twice - by a combined 46 ----- Original Message ----- From: "Tamrav Lenny" <pri...@ho...> To: <wra...@li...>, <wxp...@li...> Sent: Thursday, March 22, 2007 8:27 PM Subject: was egan > Birth of Soccer in the US > Monolith Athletic Club Inc > SYmN- M_N_A_B > Strong B reccomended at 1 Cents > Soccer Could be the next big sport for the US to excel in and Soccer franchising will be HUGE |
From: Eriam S. <er...@er...> - 2007-05-08 10:54:10
|
Hello Is there a reason why the wizards events are not implemented like other events in Wx::Event ? Thank you Eriam |
From: Wallace K. A. <ej...@ur...> - 2007-05-08 10:05:54
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type"> </head> <body bgcolor="#ffffff" text="#000000"> <img alt="outpatient" src="cid:par...@ur..." height="307" width="425"><br> ) And the plain people have daily worries as well. One of his security said he wanted to meet us and invited us to meet with him across the road at Lapp's Electric. Some longtime voters discovered their registrations had been purged.<br> "The election is over," Gregoire said Thursday night, looking ebullient at a news conference. Foley, who is director of the election law program at the Ohio State University law school and a former Ohio state solicitor.<br> After the 2000 election debacle, which ended with a 36-day partisan standoff in Florida and an election decided by the U.<br> In Columbus, bipartisan estimates say that 5,000 to 15,000 frustrated voters turned away without casting ballots.<br> " "They knew we didn't like publicity," said Amos, smiling at the recollection. But contact with the outside world is unavoidable.<br> The state, however, cannot accept new votes from county canvassing boards once they have stopped and certified a recount, according to Nick Handy, state director of elections. America Coming Together, a liberal 527 organization (so called for the section of the tax code that covers it), has 400,000. The voters, supported by Jesse L.<br> ) to the Bush column.<br> Join Now Check these example sites for ideas.<br> Take Office, Plan Campaign When Bush moved into the Oval Office in 2001, planning for his presidential reelection campaign began almost immediately.<br> In recent months, reports of child abuse in Amish country have made local papers and national news. They either loved and respected him, or they didn't like him," Dowd said. Some longtime voters discovered their registrations had been purged.<br> The reality show "Amish in the City" has brought a slew of curiosity seekers asking all kinds of questions. Have a look at the following pictures! It totally changes what it means to be a losing presidential candidate.<br> </body> </html> |
From: OCarol A. <azr...@hy...> - 2007-05-08 08:56:08
|
handle when Anthony and Iverson are coming at you like that. They are hard to a list of candidates, but declined to identify any of the coaches. "Michigan's Stop everything you're looking at right now and put your focus here. Major News Was Released . CHINA D E A L China Voice Holding Corp. C H V C Here's the News China Voice Holding Corp. Completes Acquisition of StreamJet Inc. and Confirms Million Annual Revenue (Go read the news now) Wake up early and watch this s t o c k go. Information within this report contains forward looking statements within the meaning of Section 27A of the s e cu r i t i e s A C T of 1933 and Section 21B of the SEC A C T of 1934. Statements that involve discussions with respect to projections of future events are not statements of historical fA C T and may be forward looking statements. Don't rely on them to make a decision. Past performance is never indicative of future results. We do expect to receive a cash payment for our acvertising services in the near future. The amount is unknown at this time. Un-affiliated Third parties may own stock and will sell those shares without notice to you. This report shall not be construed as any kind of investment advice or solicitation led the Pirates to a 68-55 record, a trip to the round of 16 in the 2000 of 28 road games and had gone 9-1 against Denver in their past 10 meetings. the duo's best performance since the holiday trade that brought them together the University of Michigan's associate dean of students. Martin said he had The Wolverines finished 22-13, with an 87-66 loss at Florida State on Thursday night. feels right at home just in time for the Denver Nuggets ' big road trip. feels right at home just in time for the Denver Nuggets ' big road trip. They lost to Detroit 105-83 Friday night, which D'Antoni blamed on emotional your game.'' The Nuggets have quite the saunter thanks to their red-hot ways. But at Michigan, we have a tradition of winning Big Ten and national Louis Bullock in what the NCAA said was the largest financial scandal in Iverson said the Nuggets knew they'd have to start quickly and play relentless of 28 road games and had gone 9-1 against Denver in their past 10 meetings. 13-for-20. And many of the shots were alley-oop dunks and rim-rattling jams |
From: Mark D. <mar...@zn...> - 2007-05-04 17:41:31
|
Hi, No, it isn't exported. At the present you need a custom editor. Mark Dootson wrote: > Hi, > > does $editor->SetParameters("4"); > > work? > > Peter Wilson wrote: >> Hi >> >> I know something is wrong with this code, can anyone tell me, is it that the >> SetParameters is not exported and therefore not able to be used to force the >> text length in the edit box. >> >> ... >> my $editor = Wx::GridCellTextEditor->new; >> $editor->SetParameters(4); >> $grid->SetCellEditor(0,0,$editor); >> ... >> >> Would I have to create a custom editor? >> >> Thanks >> >> Peter >> >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by DB2 Express >> Download DB2 Express C - the FREE version of DB2 express and take >> control of your XML. No limits. Just data. Click to get it now. >> http://sourceforge.net/powerbar/db2/ >> _______________________________________________ >> wxperl-users mailing list >> wxp...@li... >> https://lists.sourceforge.net/lists/listinfo/wxperl-users > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > wxperl-users mailing list > wxp...@li... > https://lists.sourceforge.net/lists/listinfo/wxperl-users |
From: Mark D. <mar...@zn...> - 2007-05-04 17:29:27
|
Hi, does $editor->SetParameters("4"); work? Peter Wilson wrote: > Hi > > I know something is wrong with this code, can anyone tell me, is it that the > SetParameters is not exported and therefore not able to be used to force the > text length in the edit box. > > ... > my $editor = Wx::GridCellTextEditor->new; > $editor->SetParameters(4); > $grid->SetCellEditor(0,0,$editor); > ... > > Would I have to create a custom editor? > > Thanks > > Peter > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > wxperl-users mailing list > wxp...@li... > https://lists.sourceforge.net/lists/listinfo/wxperl-users |
From: Peter W. <pe...@ds...> - 2007-05-04 17:07:25
|
Hi I know something is wrong with this code, can anyone tell me, is it that the SetParameters is not exported and therefore not able to be used to force the text length in the edit box. ... my $editor = Wx::GridCellTextEditor->new; $editor->SetParameters(4); $grid->SetCellEditor(0,0,$editor); ... Would I have to create a custom editor? Thanks Peter |
From: Hunter T. <omd...@fi...> - 2007-05-03 14:16:11
|
everything you're looking at right now and put your focus here. Major Financial News Was Released After the Market Close Today. HOT CHINA DEAL China Voice Holding Corp. C H V C Short Term Expected : 1 Dollar Here's the News China Voice Holding Corp. Completes Acquisition of StreamJet Inc. and Confirms Million Annual Revenue (Go read the news now) Wake up early and watch this stock trade. Information within this report contains forward looking statements within the meaning of Section 27A of the Securities Act of 1933 and Section 21B of the SEC Act of 1934. Statements that involve discussions with respect to projections of future events are not statements of historical fact and may be forward looking statements. Don't rely on them to make a decision. Past performance is never indicative of future results. We do expect to receive a cash payment for our acvertising services in the near future. The amount is unknown at this time. Un-affiliated Third parties may own stock and will sell those shares without notice to you. This report shall not be construed as any kind of investment advice or solicitation the first round of the playoffs next month. ''We didn't have any energy,'' points by halftime and Iverson had 13 points and 10 assists at the break as according to the contract. Michigan hired Amaker on hired March 29, 2001, "But we didn't make the NCAA tournament and that was the goal. To that extent, led the Pirates to a 68-55 record, a trip to the round of 16 in the 2000 night. Carmelo Anthony augmented Iverson's night by adding 29 points in a great deal for us. So we can take that momentum from this game and from the a list of candidates, but declined to identify any of the coaches. "Michigan's also had 44 against Seattle on Dec. 28 in one of his first few games with the its history. Michigan was 18-12 overall and 10-6 during the 2002-03 season its history. Michigan was 18-12 overall and 10-6 during the 2002-03 season |