Click here to Skip to main content
15,888,802 members
Home / Discussions / C#
   

C#

 
GeneralRe: RichTextBox ForeColor Problem Pin
half-life17-Jan-08 1:16
half-life17-Jan-08 1:16 
GeneralRe: RichTextBox ForeColor Problem Pin
Luc Pattyn17-Jan-08 2:26
sitebuilderLuc Pattyn17-Jan-08 2:26 
GeneralRe: RichTextBox ForeColor Problem Pin
half-life17-Jan-08 5:36
half-life17-Jan-08 5:36 
GeneralRe: RichTextBox ForeColor Problem Pin
Luc Pattyn17-Jan-08 6:06
sitebuilderLuc Pattyn17-Jan-08 6:06 
GeneralSending Free Sms [modified] Pin
razanabanu16-Jan-08 18:23
razanabanu16-Jan-08 18:23 
GeneralRe: Sending Sms Pin
Abhijit Jana16-Jan-08 18:41
professionalAbhijit Jana16-Jan-08 18:41 
Generalpopulate data to generic list from classes using c# Pin
ramyanaidu16-Jan-08 18:07
ramyanaidu16-Jan-08 18:07 
GeneralRe: populate data to generic list from classes using c# [modified] Pin
DaveyM6917-Jan-08 3:07
professionalDaveyM6917-Jan-08 3:07 
Your question isn't very clear. Do you mean something like this?

using System;
using System.Collections.Generic;
using System.Windows.Forms;

namespace MyApp
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
MyTextClass TestClass = new MyTextClass(textBox1.Text);
MyTextCollection TestCollection = new MyTextCollection();
TestCollection.Add(TestClass);
//Do other stuff here...
}
}

class MyTextClass
{
private string _Text;
public string Text
{
get { return _Text; }
set { _Text = value; }
}
public MyTextClass()
{ }
public MyTextClass(string Text)
{
_Text = Text;
}
}

class MyTextCollection : List<MyTextClass>
{

}
}

<div class="ForumMod">modified on Thursday, January 17, 2008 9:14:52 AM</div>
GeneralRe: populate data to generic list from classes using c# Pin
ramyanaidu17-Jan-08 17:22
ramyanaidu17-Jan-08 17:22 
Generalprogram can but run only one instance Pin
jason_mf16-Jan-08 17:22
jason_mf16-Jan-08 17:22 
GeneralDatabase is slooowwwww Pin
Jacob Dixon16-Jan-08 15:51
Jacob Dixon16-Jan-08 15:51 
GeneralCreating HTML Encrypter using C# Pin
Nadia Monalisa16-Jan-08 12:14
Nadia Monalisa16-Jan-08 12:14 
GeneralRe: Creating HTML Encrypter using C# Pin
Gareth H16-Jan-08 12:21
Gareth H16-Jan-08 12:21 
GeneralRe: Creating HTML Encrypter using C# Pin
Nadia Monalisa16-Jan-08 12:48
Nadia Monalisa16-Jan-08 12:48 
GeneralRe: Creating HTML Encrypter using C# Pin
Ennis Ray Lynch, Jr.16-Jan-08 15:07
Ennis Ray Lynch, Jr.16-Jan-08 15:07 
GeneralLoad Image File Pin
MasterSharp16-Jan-08 11:38
MasterSharp16-Jan-08 11:38 
GeneralRe: Load Image File Pin
Gareth H16-Jan-08 11:57
Gareth H16-Jan-08 11:57 
GeneralRe: Load Image File Pin
MasterSharp16-Jan-08 12:03
MasterSharp16-Jan-08 12:03 
GeneralRe: Load Image File Pin
Luc Pattyn16-Jan-08 12:05
sitebuilderLuc Pattyn16-Jan-08 12:05 
GeneralRe: Load Image File Pin
MasterSharp16-Jan-08 13:05
MasterSharp16-Jan-08 13:05 
GeneralRe: Load Image File Pin
Luc Pattyn16-Jan-08 13:38
sitebuilderLuc Pattyn16-Jan-08 13:38 
GeneralRe: Load Image File Pin
MasterSharp16-Jan-08 14:04
MasterSharp16-Jan-08 14:04 
GeneralRe: Load Image File Pin
Luc Pattyn16-Jan-08 14:24
sitebuilderLuc Pattyn16-Jan-08 14:24 
GeneralRe: Load Image File Pin
MasterSharp16-Jan-08 14:29
MasterSharp16-Jan-08 14:29 
GeneralRe: Load Image File Pin
MasterSharp16-Jan-08 14:33
MasterSharp16-Jan-08 14:33 

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.