Click here to Skip to main content
15,910,009 members
Home / Discussions / C#
   

C#

 
GeneralRe: Returning graphics from user control Pin
Talal Sultan5-Mar-05 11:44
Talal Sultan5-Mar-05 11:44 
Generalusing regular expressions Pin
Anonymous5-Mar-05 7:12
Anonymous5-Mar-05 7:12 
GeneralRe: using regular expressions Pin
DavidNohejl5-Mar-05 10:39
DavidNohejl5-Mar-05 10:39 
GeneralRe: using regular expressions Pin
Anonymous5-Mar-05 10:49
Anonymous5-Mar-05 10:49 
GeneralRe: using regular expressions Pin
Anonymous5-Mar-05 10:57
Anonymous5-Mar-05 10:57 
GeneralRe: using regular expressions Pin
DavidNohejl5-Mar-05 11:21
DavidNohejl5-Mar-05 11:21 
GeneralInserting a button's reference in arraylist Pin
Alex Cutovoi5-Mar-05 7:08
Alex Cutovoi5-Mar-05 7:08 
GeneralRe: Inserting a button's reference in arraylist Pin
S. Senthil Kumar5-Mar-05 7:41
S. Senthil Kumar5-Mar-05 7:41 
Does simply adding the Button object not work? Something like
<br />
class MainForm<br />
{<br />
  private Button b1 = new Button("B1");<br />
  private Button b2 = new Button("B2");<br />
<br />
  ArrayList a = new ArrayList();<br />
<br />
<br />
  public void AddToList()<br />
  {<br />
     a.Add(b1);<br />
     a.add(b2);<br />
  }<br />
<br />
  private void ModifyText()<br />
  {<br />
     foreach(Button b in a)<br />
     {<br />
          b.Text = "Long live Senthil";<br />
     }<br />
  }<br />
}<br />


Regards
Senthil
My Blog
Questionhow to display colorful cursors or *.ani in the c#? Pin
dxhdxh5-Mar-05 4:12
dxhdxh5-Mar-05 4:12 
AnswerRe: how to display colorful cursors or *.ani in the c#? Pin
Judah Gabriel Himango5-Mar-05 10:20
sponsorJudah Gabriel Himango5-Mar-05 10:20 
GeneralRe: how to display colorful cursors or *.ani in the c#? Pin
dxhdxh5-Mar-05 13:32
dxhdxh5-Mar-05 13:32 
GeneralDiffrence between DataSet &amp; DataReader Pin
X20405-Mar-05 1:48
X20405-Mar-05 1:48 
GeneralRe: Diffrence between DataSet &amp; DataReader Pin
SimonS5-Mar-05 5:47
SimonS5-Mar-05 5:47 
Generalprinter related code Pin
cishi_us5-Mar-05 0:23
cishi_us5-Mar-05 0:23 
GeneralRe: printer related code Pin
Dave Kreskowiak5-Mar-05 6:21
mveDave Kreskowiak5-Mar-05 6:21 
GeneralRe: printer related code Pin
cishi_us7-Mar-05 1:21
cishi_us7-Mar-05 1:21 
GeneralRe: printer related code Pin
Dave Kreskowiak7-Mar-05 11:11
mveDave Kreskowiak7-Mar-05 11:11 
Generalregistry editing: NullReferenceException driving me crazy... Pin
markali5-Mar-05 0:01
markali5-Mar-05 0:01 
GeneralRe: registry editing: NullReferenceException driving me crazy... Pin
mav.northwind5-Mar-05 0:17
mav.northwind5-Mar-05 0:17 
GeneralRe: registry editing: NullReferenceException driving me crazy... Pin
markali5-Mar-05 0:33
markali5-Mar-05 0:33 
GeneralRe: registry editing: NullReferenceException driving me crazy... Pin
Bahadir Cambel5-Mar-05 4:57
Bahadir Cambel5-Mar-05 4:57 
GeneralSercurity question Pin
oohungoo4-Mar-05 22:47
oohungoo4-Mar-05 22:47 
GeneralRe: Sercurity question Pin
mav.northwind4-Mar-05 23:00
mav.northwind4-Mar-05 23:00 
GeneralRe: Sercurity question Pin
Dave Kreskowiak5-Mar-05 9:46
mveDave Kreskowiak5-Mar-05 9:46 
GeneralRe: Sercurity question Pin
oohungoo6-Mar-05 0:24
oohungoo6-Mar-05 0:24 

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.