Click here to Skip to main content
15,914,452 members
Home / Discussions / C#
   

C#

 
GeneralRe: Special characters in XML properties Pin
lmoelleb14-Dec-06 21:06
lmoelleb14-Dec-06 21:06 
Questionassociation rule mining Pin
pardis13-Dec-06 22:54
pardis13-Dec-06 22:54 
AnswerRe: association rule mining Pin
Pete O'Hanlon14-Dec-06 0:26
mvePete O'Hanlon14-Dec-06 0:26 
AnswerRe: association rule mining Pin
Pete O'Hanlon14-Dec-06 0:27
mvePete O'Hanlon14-Dec-06 0:27 
QuestionInvoke a controls property Pin
anderslundsgard13-Dec-06 22:48
anderslundsgard13-Dec-06 22:48 
AnswerRe: Invoke a controls property Pin
leppie14-Dec-06 2:04
leppie14-Dec-06 2:04 
GeneralRe: Invoke a controls property Pin
anderslundsgard14-Dec-06 2:25
anderslundsgard14-Dec-06 2:25 
GeneralRe: Invoke a controls property Pin
Eric Dahlvang14-Dec-06 5:43
Eric Dahlvang14-Dec-06 5:43 
delegate void dAddListItem(string cItem);

private void StartThreadHere()
{
    string cListItem="Item2";

    if (this.listView1.InvokeRequired)
    {
        dAddListItem delAddItem = new dAddListItem(AddListItem);
        this.listView1.Invoke(delAddItem, cListItem);
    }
    else
    {
        this.listView1.Items.Add(cListItem);
    }
}

private void AddListItem(string cItemToAdd)
{
    this.listView1.Items.Add(cItemToAdd);
}

private void Form1_Load(object sender, EventArgs e)
{

    this.listView1.Items.Add("Item1");

    Thread t = new Thread(new ThreadStart(StartThreadHere));
    t.Start();
}


--EricDV Sig---------
Some problems are so complex that you have to be highly intelligent and well informed just to be undecided about them.
- Laurence J. Peters

QuestionCalling an executable from Internet Explorer as a script? Pin
ghost120713-Dec-06 22:33
ghost120713-Dec-06 22:33 
AnswerRe: Calling an executable from Internet Explorer as a script? Pin
SpartanSoft14-Dec-06 8:52
SpartanSoft14-Dec-06 8:52 
GeneralRe: Calling an executable from Internet Explorer as a script? Pin
ghost120714-Dec-06 20:43
ghost120714-Dec-06 20:43 
GeneralRe: Calling an executable from Internet Explorer as a script? Pin
ghost120718-Dec-06 2:40
ghost120718-Dec-06 2:40 
Questionprblm connecting to database Pin
Osama12313-Dec-06 21:04
Osama12313-Dec-06 21:04 
AnswerRe: prblm connecting to database Pin
chravisankar13-Dec-06 21:10
chravisankar13-Dec-06 21:10 
AnswerRe: prblm connecting to database Pin
jdkulkarni13-Dec-06 21:50
jdkulkarni13-Dec-06 21:50 
GeneralRe: prblm connecting to database Pin
chravisankar13-Dec-06 22:01
chravisankar13-Dec-06 22:01 
QuestionGrab Value from text box Pin
sajid.salim.khan13-Dec-06 20:42
sajid.salim.khan13-Dec-06 20:42 
AnswerRe: Grab Value from text box Pin
chravisankar13-Dec-06 21:08
chravisankar13-Dec-06 21:08 
GeneralRe: Grab Value from text box Pin
sajid.salim.khan13-Dec-06 22:04
sajid.salim.khan13-Dec-06 22:04 
GeneralRe: Grab Value from text box Pin
quiteSmart13-Dec-06 22:23
quiteSmart13-Dec-06 22:23 
AnswerRe: Grab Value from text box Pin
nmason14-Dec-06 5:09
nmason14-Dec-06 5:09 
QuestionChanging Form Layout Pin
sajid.salim.khan13-Dec-06 20:24
sajid.salim.khan13-Dec-06 20:24 
QuestionC++ delegate to C#... Pin
Shy Agam13-Dec-06 20:20
Shy Agam13-Dec-06 20:20 
AnswerRe: C++ delegate to C#... Pin
Eric Dahlvang14-Dec-06 4:47
Eric Dahlvang14-Dec-06 4:47 
QuestionUpdate a DataRow in a DataTable; Pin
swjam13-Dec-06 20:07
swjam13-Dec-06 20:07 

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.