Two Kinds of Developers

Monday, February 21, 2005 at 12:15 am

Mark is trying to tell readers about different kinds of developers,read yourself what`s he trying to say

Categories: Everything

nice C# tips

Monday, February 21, 2005 at 12:06 am

Check this out

Categories: Everything

Compressed FileSystem(CFS)

Saturday, February 19, 2005 at 11:33 pm

I have been thinking /willing of a Compressed File system which can work similar to MP3 mechanism(i am not 100% aware of Mp3 mechanism but heard that it decompresses the file during playing and then it compresses again) ..
what I mean to say that,that Applications are deployed in compressed format(say have extension .cmp) on User […]

Categories: Everything

Filesystem Watcher -A nice article

Saturday, February 19, 2005 at 9:30 pm

Luc Archambaultn has posted a very nice article about file System watcher class ,and came up with very wonderful utility.

Categories: Everything

AntiProgramming Day

Saturday, February 19, 2005 at 7:30 am

for last 36 hours,i have not been writing a word which could help me to finish my projects,,reason?well i didn`t want to..i was tired ..
this morning i recieved mail from one of my good friend Taylor replied my mail about Mozilla Extension development
he came up with two good articles mentioned in his post,i am very […]

Categories: Everything

Assigning keyvalues pair to ComboBox in C#

Wednesday, February 16, 2005 at 6:28 pm

it took a lot of time to find some solution to assign more than one values to combobox,since comboObject.Items.Add(”MyValue”) only allows to add a single value in comboBox which can be fetched by using comboObject.text property.
Hans de Bruijn has provided very clean and nice solution to tackle this problem for both combobox and List values.
Happy […]

Categories: Everything

Diplay Virtual Direcotries in C#

Tuesday, February 15, 2005 at 11:15 am

the code i mentioned earlier fetches the website Names only..what if you want to show the virtual folders as well?well it`s not so difficult.If you run the code in my previous post,it will display a numeric number which is unique Identifer for each site hosted on IIS,this can be retrieved by calling Site.Name in […]

Categories: Everything

Diplay IIS hosted Site Names in C#

Tuesday, February 15, 2005 at 10:30 am

I have been working on a project module which will interact with IIS and will display hosted sites or virtual directories,so far i have done this by using ADSII ,the code is very raw,i will submit final snippet once it`s done..this code will display website names hosted on IIS
try
{
const string WebServerSchema = “IIsWebServer”; // Case […]

Categories: Everything

Diplay Virtual Direcotries in C#

Monday, February 14, 2005 at 9:52 pm

the code i mentioned earlier fetches the website Names only..what if you want to show the virtual folders as well?well it`s not so difficult.If you run the code in my previous post,it will display a numeric number which is unique Identifer for each site hosted on IIS,this can be retrieved by calling Site.Name in […]

Categories: Everything

Some Weird thing happening with IE

Sunday, February 13, 2005 at 9:30 pm

Since morning,its been happening that IE is getting opened with new Instance having URL something like http://540.filost.com/randomsites/banner.aspx
which is redirected to some other url which is actually directing not file which isnot actually available
before that some porn dialers got installed with file name internt.exe which resided on WinNT`s root folder..
ifanyone of you get any clue,let me […]

Categories: Everything