blah blah blah is here! blah blah » Close

0
votes
2 answers

How to create a Class to display Images?

sanjib
226

I want to create a DirectoryItems class like this: [code] class DirectoryItems { private string[] Filearray; //to get the extensions like "jpeg", "gif", ''png" etc public DirectoryItems(string FilePath ...

0
votes
1 answers

Program Structure

eeboy
499

I am creating an application which has a main window and several child windows. On the main window I have several buttons which launch these child windows. Each child window is tailored to manipulate data in a list. For example, there will ...

1
votes
1 answers

Use a class for recurrent code

I've been trying to write a class so I do not need to write my code many times in different pages. I'm doing an asp.net project in C# and I would like to have the day and the dates on top of my pages. Example Sunday 2009-12-20, but I like t ...

0
votes
1 answers

Creating classes/subclasses

Hi everybody, I am [b]required to find out if the following is a standard practice to create a subclass[/b]. Take for instance, I have to create a class library (ClLib) with 2 classes using Visual Studio: Class1.cs & Class2.cs. ...

Feedback