Click here to Skip to main content
15,897,518 members
Home / Discussions / C#
   

C#

 
AnswerRe: what c# has equal to my in vb2005? Pin
J4amieC7-Mar-06 23:06
J4amieC7-Mar-06 23:06 
AnswerRe: what c# has equal to my in vb2005? Pin
Steve Hansen8-Mar-06 0:56
Steve Hansen8-Mar-06 0:56 
AnswerRe: what c# has equal to my in vb2005? Pin
Colin Angus Mackay8-Mar-06 1:48
Colin Angus Mackay8-Mar-06 1:48 
AnswerRe: what c# has equal to my in vb2005? Pin
Wjousts8-Mar-06 3:36
Wjousts8-Mar-06 3:36 
GeneralRe: what c# has equal to my in vb2005? Pin
Amir Jalaly8-Mar-06 19:42
Amir Jalaly8-Mar-06 19:42 
GeneralRe: what c# has equal to my in vb2005? Pin
Wjousts11-Mar-06 11:48
Wjousts11-Mar-06 11:48 
QuestionProblem is still There about TextBoxes.... Pin
Abubakarsb7-Mar-06 22:44
Abubakarsb7-Mar-06 22:44 
AnswerRe: Problem is still There about TextBoxes.... Pin
Steve Hansen8-Mar-06 1:01
Steve Hansen8-Mar-06 1:01 
You're probably talking about the Index feature in VB6.
This isn't available in .Net.

You could however tag your textboxes (.Tag = "Somename")
And then with a loop through all Controls check for the tag and work like that.

This still means you can't do this.
textBox[1].Text = "Something";<br />
textBox[2].Text = "Something Else";


But you could do:
foreach (Control ctrl in Controls)<br />
{<br />
  if (ctrl.Tag.Equals("Somename"))<br />
  {<br />
    ctrl.Text = "Something";<br />
  }<br />
}

QuestionHow to check a drives? Pin
nitin_ap7-Mar-06 22:34
nitin_ap7-Mar-06 22:34 
AnswerRe: How to check a drives? Pin
hpetriffer7-Mar-06 22:37
hpetriffer7-Mar-06 22:37 
GeneralRe: How to check a drives? Pin
nitin_ap7-Mar-06 22:42
nitin_ap7-Mar-06 22:42 
QuestionSerializing object Pin
hpetriffer7-Mar-06 22:09
hpetriffer7-Mar-06 22:09 
QuestionLoad file in other form Pin
Dave McCool7-Mar-06 22:03
Dave McCool7-Mar-06 22:03 
QuestionDifferences between Control and ContainerControl Pin
flyinglimy7-Mar-06 22:02
flyinglimy7-Mar-06 22:02 
AnswerRe: Differences between Control and ContainerControl Pin
goyal manish8-Mar-06 2:59
goyal manish8-Mar-06 2:59 
QuestionIO.Ports in .NET 2.0 Pin
gokeeffe7-Mar-06 21:42
gokeeffe7-Mar-06 21:42 
AnswerRe: IO.Ports in .NET 2.0 Pin
Eric Dahlvang8-Mar-06 5:12
Eric Dahlvang8-Mar-06 5:12 
GeneralRe: IO.Ports in .NET 2.0 Pin
gokeeffe13-Mar-06 4:01
gokeeffe13-Mar-06 4:01 
GeneralRe: IO.Ports in .NET 2.0 Pin
Eric Dahlvang14-Mar-06 5:10
Eric Dahlvang14-Mar-06 5:10 
GeneralRe: IO.Ports in .NET 2.0 Pin
gokeeffe14-Mar-06 21:30
gokeeffe14-Mar-06 21:30 
QuestionHow to realize this in c# ? Pin
Old Gun7-Mar-06 21:33
Old Gun7-Mar-06 21:33 
AnswerRe: How to realize this in c# ? Pin
Vasudevan Deepak Kumar7-Mar-06 21:42
Vasudevan Deepak Kumar7-Mar-06 21:42 
AnswerRe: How to realize this in c# ? Pin
Steve Hansen8-Mar-06 1:03
Steve Hansen8-Mar-06 1:03 
QuestionInterfacing with the CodeBase database structure Pin
NewbieDude7-Mar-06 19:59
NewbieDude7-Mar-06 19:59 
QuestionHow to draw a select rectangle use mouseEvents in panel? Pin
SharpShark7-Mar-06 19:51
SharpShark7-Mar-06 19:51 

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.