HotDog's Blog

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

vbCity Blogs moved to:
http://cs.vbcity.com/blogs
  Home :: Syndication  :: Login

AprMay 2013Jun
SMTWTFS
2829301234
567891011
12131415161718
19202122232425
2627282930311
2345678

Articles

Archives

Topics

CONTACT

Fun but useful linkies

General

VS 2005

Wolfenstein ET

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 on Monday, September 13, 2004 9:10 AM