Click here to Skip to main content
15,881,757 members
Home / Discussions / C#
   

C#

 
AnswerRe: Play Many mpg simultaneously Pin
Christian Graus7-Aug-07 18:14
protectorChristian Graus7-Aug-07 18:14 
QuestionPreview Files Pin
_Arthur7-Aug-07 18:12
_Arthur7-Aug-07 18:12 
AnswerRe: Preview Files Pin
Christian Graus7-Aug-07 18:15
protectorChristian Graus7-Aug-07 18:15 
GeneralRe: Preview Files Pin
_Arthur7-Aug-07 19:12
_Arthur7-Aug-07 19:12 
GeneralRe: Preview Files Pin
ekynox7-Aug-07 19:18
ekynox7-Aug-07 19:18 
QuestionTimer in C# Pin
mimimimilaw7-Aug-07 18:03
mimimimilaw7-Aug-07 18:03 
AnswerRe: Timer in C# Pin
Christian Graus7-Aug-07 18:13
protectorChristian Graus7-Aug-07 18:13 
AnswerRe: Timer in C# Pin
Developer6117-Aug-07 22:17
Developer6117-Aug-07 22:17 
Hi there .
There is an another way to do it .
Try to use Thread in Threading namespace . Something like following code :

<br />
private void StartThread()<br />
{<br />
Thread thd1 = new Thread(new ThreadStart(Your_Function());<br />
thd1.Start();<br />
<br />
// After start thread , your function will be execute on per second.<br />
// You can set your thread start time .<br />
}<br />
<br />
<br />
private void Your_Function()<br />
{<br />
// Do something ...<br />
}<br />


Important : If your function get any parameter Use ParameterizedThreadStart delegate instead of ThreadStart




DMASTER
GeneralRe: Timer in C# Pin
Luc Pattyn7-Aug-07 23:36
sitebuilderLuc Pattyn7-Aug-07 23:36 
Questionstart a form maximized? [modified] Pin
sudany_zool7-Aug-07 17:50
sudany_zool7-Aug-07 17:50 
AnswerRe: start a form maximized? Pin
Christian Graus7-Aug-07 18:16
protectorChristian Graus7-Aug-07 18:16 
QuestionError on ISynchronizeInvoke casting Pin
jacklynn_mei7-Aug-07 16:32
jacklynn_mei7-Aug-07 16:32 
AnswerRe: Error on ISynchronizeInvoke casting Pin
Leslie Sanford7-Aug-07 18:10
Leslie Sanford7-Aug-07 18:10 
GeneralRe: Error on ISynchronizeInvoke casting Pin
jacklynn_mei7-Aug-07 19:45
jacklynn_mei7-Aug-07 19:45 
GeneralRe: Error on ISynchronizeInvoke casting Pin
Leslie Sanford8-Aug-07 4:52
Leslie Sanford8-Aug-07 4:52 
QuestionHelp about Office word In C# Pin
kcynic7-Aug-07 15:31
kcynic7-Aug-07 15:31 
AnswerRe: Help about Office word In C# Pin
tker7-Aug-07 18:16
tker7-Aug-07 18:16 
GeneralRe: Help about Office word In C# Pin
kcynic7-Aug-07 19:16
kcynic7-Aug-07 19:16 
GeneralRe: Help about Office word In C# Pin
tker7-Aug-07 20:12
tker7-Aug-07 20:12 
GeneralRe: Help about Office word In C# Pin
kcynic7-Aug-07 21:33
kcynic7-Aug-07 21:33 
GeneralRe: Help about Office word In C# Pin
tker8-Aug-07 16:31
tker8-Aug-07 16:31 
AnswerRe: Help about Office word In C# Pin
MarkB7777-Aug-07 18:53
MarkB7777-Aug-07 18:53 
GeneralRe: Help about Office word In C# Pin
kcynic7-Aug-07 19:18
kcynic7-Aug-07 19:18 
QuestionGetting reflection permissions with ReflectionPermissionAttribute Pin
Luke Murray7-Aug-07 15:23
Luke Murray7-Aug-07 15:23 
QuestionConsole component Pin
noon427-Aug-07 14:31
noon427-Aug-07 14:31 

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.