Click here to Skip to main content
15,919,479 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to run a dos command from csharp application. Pin
Spunky Coder11-Oct-07 1:39
Spunky Coder11-Oct-07 1:39 
GeneralRe: How to run a dos command from csharp application. Pin
tech_the_fighter11-Oct-07 1:44
tech_the_fighter11-Oct-07 1:44 
AnswerRe: How to run a dos command from csharp application. Pin
tech_the_fighter11-Oct-07 1:49
tech_the_fighter11-Oct-07 1:49 
GeneralRe: How to run a dos command from csharp application. Pin
Spunky Coder11-Oct-07 1:52
Spunky Coder11-Oct-07 1:52 
GeneralRe: How to run a dos command from csharp application. Pin
tech_the_fighter11-Oct-07 2:45
tech_the_fighter11-Oct-07 2:45 
QuestionPassing Parameter Method into a Thread, Help! Pin
Patricio Tapia11-Oct-07 0:24
Patricio Tapia11-Oct-07 0:24 
AnswerRe: Passing Parameter Method into a Thread, Help! Pin
Martin#11-Oct-07 0:33
Martin#11-Oct-07 0:33 
GeneralRe: Passing Parameter Method into a Thread, Help! Pin
Patricio Tapia11-Oct-07 0:46
Patricio Tapia11-Oct-07 0:46 
    public delegate void updatevalores(int total);<br />
<br />
    public partial class FormConexiones : Form<br />
    {<br />
        private int procesosactuales = 0;<br />
        public FormConexiones()<br />
        {<br />
            InitializeComponent();<br />
        }<br />
<br />
        private void FormConexiones_Load(object sender, EventArgs e)<br />
        {<br />
            procesos proces = new procesos();<br />
            Thread pid = new Thread(new ParameterizedThreadStart(proces.iniciar));<br />
            pid.Start(new updatevalores(actualizarv));<br />
        }<br />
        public void actualizarv(int total)<br />
        {<br />
            procesosactuales = total;<br />
        }<br />
    }


Give me an error with

ParameterizedThreadStart(proces.iniciar)
The error is: none overload correspond 'iniciar' match with 'System.Threading.ParameterizedThreadStart' delegate

what the Mad | :mad:
GeneralRe: Passing Parameter Method into a Thread, Help! Pin
Patricio Tapia11-Oct-07 0:49
Patricio Tapia11-Oct-07 0:49 
GeneralRe: Passing Parameter Method into a Thread, Help! Pin
Martin#11-Oct-07 0:52
Martin#11-Oct-07 0:52 
GeneralRe: Passing Parameter Method into a Thread, Help! Pin
Patricio Tapia11-Oct-07 0:56
Patricio Tapia11-Oct-07 0:56 
GeneralRe: Passing Parameter Method into a Thread, Help! Pin
Martin#11-Oct-07 0:58
Martin#11-Oct-07 0:58 
GeneralRe: Passing Parameter Method into a Thread, Help! Pin
KANGAROO_11-Oct-07 2:36
KANGAROO_11-Oct-07 2:36 
Questionwebparts Pin
Aavesh Agarwal11-Oct-07 0:16
Aavesh Agarwal11-Oct-07 0:16 
AnswerRe: webparts Pin
Christian Graus11-Oct-07 0:33
protectorChristian Graus11-Oct-07 0:33 
GeneralRe: webparts Pin
Colin Angus Mackay11-Oct-07 2:52
Colin Angus Mackay11-Oct-07 2:52 
GeneralRe: webparts Pin
led mike11-Oct-07 4:29
led mike11-Oct-07 4:29 
QuestionWrapping a text in listview Pin
anu8111-Oct-07 0:07
anu8111-Oct-07 0:07 
AnswerRe: Wrapping a text in listview Pin
TJoe12-Oct-07 2:16
TJoe12-Oct-07 2:16 
QuestionHow to set ERRORLEVEL in C# ? [modified] Pin
s v joshi11-Oct-07 0:06
s v joshi11-Oct-07 0:06 
AnswerRe: How to set ERRORLEVEL in C# ? Pin
Colin Angus Mackay11-Oct-07 0:26
Colin Angus Mackay11-Oct-07 0:26 
GeneralRe: How to set ERRORLEVEL in C# ? Pin
s v joshi11-Oct-07 1:02
s v joshi11-Oct-07 1:02 
AnswerRe: How to set ERRORLEVEL in C# ? Pin
PIEBALDconsult11-Oct-07 5:32
mvePIEBALDconsult11-Oct-07 5:32 
AnswerRe: How to set ERRORLEVEL in C# ? Pin
forrest feng16-Jan-11 20:50
forrest feng16-Jan-11 20:50 
QuestionProblem with Word.doc generating C# Application, installed on another local computer Pin
Rafferty Uy11-Oct-07 0:05
Rafferty Uy11-Oct-07 0:05 

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.