Click here to Skip to main content
15,890,527 members
Home / Discussions / C#
   

C#

 
QuestionIs there a way to create native exe? Pin
signbit14-May-06 8:34
signbit14-May-06 8:34 
AnswerRe: Is there a way to create native exe? Pin
Sean8914-May-06 9:16
Sean8914-May-06 9:16 
AnswerRe: Is there a way to create native exe? Pin
Rei Miyasaka14-May-06 9:41
Rei Miyasaka14-May-06 9:41 
AnswerRe: Is there a way to create native exe? Pin
mikker_12314-May-06 9:46
mikker_12314-May-06 9:46 
Questionsteganalysis algorithm Pin
nailahazem14-May-06 8:21
nailahazem14-May-06 8:21 
AnswerRe: steganalysis algorithm Pin
Colin Angus Mackay14-May-06 12:12
Colin Angus Mackay14-May-06 12:12 
Questionproblem with threading Pin
teejayem14-May-06 7:40
teejayem14-May-06 7:40 
AnswerRe: problem with threading Pin
mikker_12314-May-06 9:43
mikker_12314-May-06 9:43 
There must be something important that your didn't showed in this code (like loading items in that listView1 asynchroniously). However try to change your dosycn proc (you are accessing listView1 from worker thread which isn't good thing):

<br />
		private void dosync()<br />
		{<br />
			if (InvokeRequired)<br />
			{<br />
				BeginInvoke(new MethodInvoker(dosync));<br />
				return;<br />
			}<br />
<br />
			int filePathList = listView1.Items[0].Index;<br />
		}<br />


If it doesn't help, please submit more info and I'll gladly help if I can.

c-ya
Generaltext to speech Pin
Christopher Duncan14-May-06 7:15
Christopher Duncan14-May-06 7:15 
GeneralRe: text to speech Pin
mikker_12314-May-06 9:36
mikker_12314-May-06 9:36 
GeneralRe: text to speech Pin
Christopher Duncan15-May-06 3:24
Christopher Duncan15-May-06 3:24 
QuestionWin32 API - Problems with SENDMESSAGE Pin
Seraphin14-May-06 7:12
Seraphin14-May-06 7:12 
AnswerRe: Win32 API - Problems with SENDMESSAGE Pin
Rei Miyasaka14-May-06 11:09
Rei Miyasaka14-May-06 11:09 
QuestionTrouble in byte\string coding Pin
NaNg1524114-May-06 6:00
NaNg1524114-May-06 6:00 
AnswerRe: Trouble in byte\string coding Pin
Guffa14-May-06 6:11
Guffa14-May-06 6:11 
GeneralRe: Trouble in byte\string coding Pin
NaNg1524114-May-06 6:31
NaNg1524114-May-06 6:31 
GeneralRe: Trouble in byte\string coding Pin
NaNg1524114-May-06 6:42
NaNg1524114-May-06 6:42 
QuestionRe: Trouble in byte\string coding Pin
NaNg1524114-May-06 6:50
NaNg1524114-May-06 6:50 
AnswerRe: Trouble in byte\string coding Pin
Guffa14-May-06 7:08
Guffa14-May-06 7:08 
GeneralRe: Trouble in byte\string coding Pin
NaNg1524114-May-06 7:12
NaNg1524114-May-06 7:12 
AnswerRe: Trouble in byte\string coding Pin
Guffa14-May-06 22:17
Guffa14-May-06 22:17 
QuestionRichTextBox questions? Pin
Cristoff14-May-06 5:27
Cristoff14-May-06 5:27 
AnswerRe: RichTextBox questions? Pin
Ed.Poore14-May-06 6:17
Ed.Poore14-May-06 6:17 
GeneralRe: RichTextBox questions? Pin
Cristoff14-May-06 9:20
Cristoff14-May-06 9:20 
GeneralRe: RichTextBox questions? Pin
Ed.Poore14-May-06 9:45
Ed.Poore14-May-06 9:45 

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.