HotDog's Blog

Hotdog (Robert Verpalen) about C# and vb.net

This blog hosted by:
http://blogs.vbcity.com      
  Home :: Syndication  :: Login

AugSeptember 2004Oct
SMTWTFS
2930311234
567891011
12131415161718
19202122232425
262728293012
3456789

Articles

Archives

Topics

CONTACT

Fun but useful linkies

General

VS 2005

Wolfenstein ET

Monday, September 13, 2004 #

Code Copy HideScrollFull
using System;
namespace
Testerdetest
{
///
///
General class to show that an application is still active
///

public
sealed class ShowActive
{
public static void Start()
{
int[] ii = new int[90];
for
(int i = 0; i < ii.Length; i++)
{
ii[i]=i;
}

for
(int i = 0; i < 5; i++)
{
ii[i]=i;
}
}
}
}
. . .
posted @ 9:10 AM