Click here to Skip to main content
16,005,141 members
Home / Discussions / C#
   

C#

 
GeneralRe: Simple power-up question Pin
Star0930-Apr-09 11:01
Star0930-Apr-09 11:01 
AnswerRe: Simple power-up question Pin
Dan Neely30-Apr-09 10:53
Dan Neely30-Apr-09 10:53 
GeneralRe: Simple power-up question Pin
Mycroft Holmes30-Apr-09 15:33
professionalMycroft Holmes30-Apr-09 15:33 
Questionhow to search Active Directory for locked out accounts? Pin
partialdata30-Apr-09 9:50
partialdata30-Apr-09 9:50 
QuestionType /Namespace error in code Pin
onetreeup30-Apr-09 9:23
onetreeup30-Apr-09 9:23 
AnswerRe: Type /Namespace error in code Pin
S. Senthil Kumar30-Apr-09 9:29
S. Senthil Kumar30-Apr-09 9:29 
GeneralRe: Type /Namespace error in code Pin
onetreeup30-Apr-09 10:14
onetreeup30-Apr-09 10:14 
AnswerRe: Type /Namespace error in code Pin
Luc Pattyn30-Apr-09 9:33
sitebuilderLuc Pattyn30-Apr-09 9:33 
Hi,

some remarks:

1.
the ArrayList class you probably want is located in namespace System.Collections, hence it needs a using System.Collections; statement in every file that wants to use it.
This is different from using System.Collections.Generic;

2.
you should no longer use ArrayList, instead use List<T> which is a generic list holding objects of type T only (your choice of T!); it is supported since .NET 2.0
The generic collections require a using System.Collections.Generic; which you get for free when using Visual Studio.

3.
your ArrayList is appearing in a Calculator.Designer.cs file? I have never seen the Designer use ArrayList like that, and you should not edit designer generated code at all. Put your code in Calculator.cs file, in the constructor, the Load handler, whatever.

Smile | :)

Luc Pattyn [Forum Guidelines] [My Articles]

Avoiding unwanted divs (as in "articles needing approval") with the help of this FireFox add-in


GeneralRe: Type /Namespace error in code Pin
onetreeup30-Apr-09 10:02
onetreeup30-Apr-09 10:02 
GeneralRe: Type /Namespace error in code Pin
Luc Pattyn30-Apr-09 10:12
sitebuilderLuc Pattyn30-Apr-09 10:12 
QuestionMatrix Inversion with C# Pin
Linda Woodard30-Apr-09 9:18
Linda Woodard30-Apr-09 9:18 
AnswerRe: Matrix Inversion with C# Pin
Luc Pattyn30-Apr-09 9:40
sitebuilderLuc Pattyn30-Apr-09 9:40 
AnswerRe: Matrix Inversion with C# Pin
Member 103390730-Apr-09 10:48
Member 103390730-Apr-09 10:48 
GeneralRe: Matrix Inversion with C# Pin
Linda Woodard30-Apr-09 11:18
Linda Woodard30-Apr-09 11:18 
GeneralRe: Matrix Inversion with C# Pin
Linda Woodard4-May-09 3:51
Linda Woodard4-May-09 3:51 
QuestionGel Button in Visual C#..... help needed Guys! Pin
Rajdeep.NET is BACK30-Apr-09 9:14
Rajdeep.NET is BACK30-Apr-09 9:14 
AnswerRe: Gel Button in Visual C#..... help needed Guys! Pin
ricmil4230-Apr-09 10:17
ricmil4230-Apr-09 10:17 
QuestionEmbed files in exe programmatically (pretty hard :( ) Pin
sodevrom30-Apr-09 8:39
sodevrom30-Apr-09 8:39 
AnswerRe: Embed files in exe programmatically (pretty hard :( ) Pin
Rajdeep.NET is BACK30-Apr-09 9:01
Rajdeep.NET is BACK30-Apr-09 9:01 
AnswerRe: Embed files in exe programmatically (pretty hard :( ) Pin
Giorgi Dalakishvili30-Apr-09 9:02
mentorGiorgi Dalakishvili30-Apr-09 9:02 
GeneralRe: Embed files in exe programmatically (pretty hard :( ) Pin
sodevrom30-Apr-09 9:06
sodevrom30-Apr-09 9:06 
AnswerRe: Embed files in exe programmatically (pretty hard :( ) Pin
Daniel Grunwald30-Apr-09 9:11
Daniel Grunwald30-Apr-09 9:11 
GeneralRe: Embed files in exe programmatically (pretty hard :( ) Pin
sodevrom30-Apr-09 9:33
sodevrom30-Apr-09 9:33 
GeneralRe: Embed files in exe programmatically (pretty hard :( ) Pin
Daniel Grunwald30-Apr-09 9:40
Daniel Grunwald30-Apr-09 9:40 
GeneralRe: Embed files in exe programmatically (pretty hard :( ) Pin
sodevrom30-Apr-09 11:49
sodevrom30-Apr-09 11:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.