torsten's .NET blog In the end, everything is a gag [Ch. Chaplin]
# Thursday, June 26, 2003
short refs
Very busy this week (and also next weekend) continued to wednesday next week. My reminder:
Technorati tags:
Thursday, June 26, 2003 9:21:21 PM (W. Europe Standard Time, UTC+01:00)    #  Comments [2]  | 
# Tuesday, June 24, 2003
good old VB6

Yeah! Figured out how to get informed about the windows system shutdown/user logged off in .NET. With the knowledge of my VB6 days (there we get the info as a parameter in the window close event) my research goes completely to the wrong direction and a search via google does not point to a similar solution for .NET.

The may be simplest code to use is this:

public class Form1: System.Windows.Forms.Form {
  // Constant value was found in the "winuser.h" header file.
  private const int WM_ENDSESSION = 0x0016;
  ...
  protected override void WndProc(ref Message m) {
    switch (m.Msg) {
        case WM_ENDSESSION:
          // Save settings, state whatever here...           MessageBox.Show("WM_ENDSESSION received.");           Application.Exit(); // exit the normal way           break; // never reached
    }
    base.WndProc(ref m);
  }
  ...
}

Technorati tags:
Tuesday, June 24, 2003 10:08:40 PM (W. Europe Standard Time, UTC+01:00)    #  Comments [0]  | 
# Monday, June 23, 2003
Back
I'm back from my holidays. It was a beautiful time in Italy/Venedig, but everything has once an end. Now I go on reading what happens while I'm offline:
  • BlogWorks 1.2 will include new nice features, awaiting the end of the beta phase.
  • RSS Bandit release 1.1.0.16 is available.
  • GDN Workspaces will move to a improved version: my personal highlight is the new VS.NET Addin for the GDN source control.
  • Comment API was changed.
  • Pottermania leads to a Pottermeter on Amazon :-)).
Technorati tags:  | 
Monday, June 23, 2003 5:36:52 PM (W. Europe Standard Time, UTC+01:00)    #  Comments [0]  | 
# Thursday, June 05, 2003
Hollidays!
Will be completely offline the next two weeks: out for vacations. We want to go to Italy again... My two childs are happy and counting the days they have to sleep until we start. Just for your information: see below whats going on with RSS Bandit:
Technorati tags:
Thursday, June 05, 2003 10:17:14 PM (W. Europe Standard Time, UTC+01:00)    #  Comments [2]  | 
# Tuesday, June 03, 2003
Re: Validation in IE4
Found on eightypercent.net:
"I just noticed that when RSS Bandit finds an invalid RSS feed, it offers to fork off to Sam and Mark's RSS Validator. ... I'm not making any excuses here, but I think that everyone can agree that one of the reasons that IE was so successful at that time was because it could consume everything that was already out there on the net -- and that meant very careful duplication of all of netscapes bugs."
The success story is true, but: HTML isn't comparable to XML. If people generate (or write by hand) a file named e.g. rss.xml it SHOULD be at least wellformed. If this isn't true, it is not XML by definition.Name it HTML and you will get at least the text within the elements within a browser, but nothing more. We do not want to write the 99'th HTML scraper/parser and do not want to repeat the same mistake twice a time.
Technorati tags:
Tuesday, June 03, 2003 9:48:52 PM (W. Europe Standard Time, UTC+01:00)    #  Comments [0]  | 
still missing something
Jon Udell about Mozilla Firebird 0.6. Really nice to know about the XML support there. The package also contains the mozctlx.dll, that's currently a (spare-time) project of Adam Lock (member of the Netscape Dev team).
But how about a native (means .NET managed) render control based on Gecko or a layered framework like Apple's WebCore ? If there would be enough time I would wrote it by myself. Someone out there just working on this kind of bits?
Technorati tags:  |  | 
Tuesday, June 03, 2003 2:14:29 PM (W. Europe Standard Time, UTC+01:00)    #  Comments [0]  | 
More spam, more virus

Read on Feedster: new variant of the Sobig worm appears. Yesterday I got a mail from "System Administrator" titled "Your mail could not be delivered" with a completely unknown receiver mail address and an attachment. Clear that I have not opened the mail. Especially wondering about that message itself: have not send any message within the last 3 days (weekend). Also received some of the messages from support[at]microsoft.com which are reported to be virus last week. Spam-/Virus is filtered here by a server side running antivirus software (also my GMX account now filters) and on the client Cloudmark also helps.
But the best workaround to not open malicious mails in Outlook/OE is to disable the preview pane and enable the auto-preview for the Inbox folder. This way I can read over the first three lines of the message, display the mail header (Right-Click-Options) and then press "Block", the Cloudmark plugin button to move the mail to the Spam folder where they are deleted every 3 days. Missing /dev/null on my machine ... ;-)

Found on Harry Pierson aka DevHawk: PowerToys for VS.NET 2003. What I have missed a long time: the Custom Help Builder. Thanks for the links!

Technorati tags:  |  |  | 
Tuesday, June 03, 2003 1:49:32 PM (W. Europe Standard Time, UTC+01:00)    #  Comments [0]  | 
# Thursday, May 29, 2003
Re: Browser statistics
In response to Joe Gregorio, here are my non-representative statistics:
  1. Internet Explorer 6.x: 85.5 %
  2. Internet Explorer 5.x: 3.6 %
  3. Opera 7.x: 3.6 %
  4. Mozilla: 1.8 %
  5. Netscape 3.x: 1.8 %
  6. Netscape 7.x: 1.8 %
  7. Mozilla 1.x: 1.8 %
Technorati tags:
Thursday, May 29, 2003 9:37:39 PM (W. Europe Standard Time, UTC+01:00)    #  Comments [3]  | 
GUI without SendMessage()

If you are an experienced windows programmer using VB5 or 6 the last years, C++ of course (don't know about Delphi) you should be familiar with the Win32 SendMessage() call. Ever thought you don't need them anymore with .NET? Then you are not alone... ;-)

My first impression around the time .NET was published was: never again I must call Win32 API. That is definitively wrong for any productive code that uses any GUI. Yes, there are nice new features like inheritable forms and controls and much more: but to solve specific user interaction problems you still needs the API calls, especially the Win32 API. So my todays talk goes about a well known control: the listview. (Full Story).

Technorati tags:  |  | 
Thursday, May 29, 2003 1:18:50 PM (W. Europe Standard Time, UTC+01:00)    #  Comments [1]  | 
# Tuesday, May 27, 2003
InstallShield competitor...?

Just read via Sellsbrothers: Ghost Installer Studio 3.6 released. Looking around a few minutes on their website, decided to give it a try. Should be easy enough to use for small .NET community software distribution (there is also a free edition on the compare chart). For professional use I miss some language packs like italian and spain or japanese.
InstallShield Installer can be very expensively over the time: our business software has only two major releases over the last 4/5 years: release 5 (a VB5 solution) and release 6 (VB6). The first installer software used was IS 5.0 International West (3K US$). Then we bought IS 5.5 (1.5K US$), IS 6 (but not used because of the many re-imported bugs there) IS 7 (1.5K US$) and upgraded to IS 8 Developer (1K US$). Each was a International West edition. Now calculate: ...

iTunes not only for Mac: MP3 serversoftware Slimp (OpenSource).

Technorati tags:  |  | 
Tuesday, May 27, 2003 4:10:24 PM (W. Europe Standard Time, UTC+01:00)    #  Comments [2]  | 
# Thursday, May 22, 2003
Buffalo or Borg?
Via Don Park:
"... I propose that, while people appear intelligent and have complex behaviors individually, people get dumber and their behavior simpler as group gets larger. If this is true, then given a large enough group of people, group behavior will be indistinguishable from the behavior of a buffalo herd. ...
...With buffalos, only female buffalos can reproduce and once a year. With bloggers, every blogger can reproduce year round without any limits to the number of offsprings. We are worse than rats or rabbits. We are worse than SARS. We are the Borgs."
The buffalo analogy does not fit very well -- who would like to be compared already gladly with a buffalo? ;-) There are mainstream topics discussed in the blogspace that are comparable to the phenomena of the mass hysteria (which fits to the buffalo herd). This forms the larger groups or communities of blogs in the space often reflected by their blogrolls. But the discussions are often controvers and not all of them are of the same opinion about the direction to go. So also the Borg analogy does not fit: the only community is blogging where assimilation can take place. BTW the term is already in use and a known as B0rg ;-)
Technorati tags:  | 
Thursday, May 22, 2003 9:16:46 AM (W. Europe Standard Time, UTC+01:00)    #  Comments [0]  | 
# Wednesday, May 21, 2003
working items
Found on Scripting News: "Bloki is...". Nothing new, each CMS yet supports it. Does not work with Opera, needs at least Mozilla 1.3 (alpha) or IE. If someone needs a really nice IE web editor, look at YusASP.com. Yes, Chris: agree completely. But Memory Management and Speed are working items, so it was not included at the Bandit wish/feature-list. And yes, the threaded view contributes to memory use. We do not use a in-memory graph but keeping currently all things in memory although we cache also feeds to the disk.
Technorati tags:
Wednesday, May 21, 2003 7:06:54 PM (W. Europe Standard Time, UTC+01:00)    #  Comments [0]  | 
# Tuesday, May 20, 2003
musing, new RSS Bandit links

The right stuff for a rainy day: Alice in Blibbetland, Part 1 [Dr. GUI]

Please note the RSS Bandit related links on the right navbar... All that just comsume my feed, here are the links again:

Technorati tags:  | 
Tuesday, May 20, 2003 7:36:54 PM (W. Europe Standard Time, UTC+01:00)    #  Comments [2]  | 
Navigation

Like RSS Bandit? Make a donation to help support its development and maintenance. As little as 1€ will help.

Make payments with PayPal - it's fast, free and secure!
On this page....
<June 2003>
SunMonTueWedThuFriSat
25262728293031
1234567
891011121314
15161718192021
22232425262728
293012345

SUBSCRIBE RSS GeoURL e-mail

Search
Categories
Blogroll
[Feed] Dare Obasanjo
Dare Obasanjo aka Carnage4Life
[Feed] Clemens Vasters
[Feed] Omar Shahine
[Feed] Tom Mertens

newtelligence dasBlog 2.1.8102.813

The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

WOT Notar

Join WebHost4Life.com