Click here to Skip to main content
15,921,279 members
Home / Discussions / C#
   

C#

 
QuestionThe Form freeze ive tryed using threads but... nothing Pin
crazy friend31-Mar-07 8:07
crazy friend31-Mar-07 8:07 
AnswerRe: The Form freeze ive tryed using threads but... nothing Pin
Stanciu Vlad31-Mar-07 21:35
Stanciu Vlad31-Mar-07 21:35 
GeneralRe: The Form freeze ive tryed using threads but... nothing Pin
crazy friend1-Apr-07 19:14
crazy friend1-Apr-07 19:14 
GeneralRe: The Form freeze ive tryed using threads but... nothing Pin
HexaDeveloper2-Apr-07 12:30
HexaDeveloper2-Apr-07 12:30 
GeneralRe: The Form freeze ive tryed using threads but... nothing Pin
Stanciu Vlad3-Apr-07 3:33
Stanciu Vlad3-Apr-07 3:33 
GeneralRe: The Form freeze ive tryed using threads but... nothing Pin
crazy friend6-Apr-07 17:21
crazy friend6-Apr-07 17:21 
GeneralRe: The Form freeze ive tryed using threads but... nothing Pin
Stanciu Vlad6-Apr-07 23:22
Stanciu Vlad6-Apr-07 23:22 
Questionsteganography implemented in c sharp Pin
dhananjaysonar31-Mar-07 3:56
dhananjaysonar31-Mar-07 3:56 
AnswerRe: steganography implemented in c sharp Pin
Vasudevan Deepak Kumar31-Mar-07 4:25
Vasudevan Deepak Kumar31-Mar-07 4:25 
GeneralRe: steganography implemented in c sharp Pin
dhananjaysonar31-Mar-07 4:45
dhananjaysonar31-Mar-07 4:45 
GeneralRe: steganography implemented in c sharp Pin
Vega0231-Mar-07 6:29
Vega0231-Mar-07 6:29 
GeneralRe: steganography implemented in c sharp Pin
Colin Angus Mackay31-Mar-07 7:17
Colin Angus Mackay31-Mar-07 7:17 
AnswerRe: steganography implemented in c sharp Pin
Stefan Troschuetz31-Mar-07 5:49
Stefan Troschuetz31-Mar-07 5:49 
Questioninvoking a function with string[] Pin
ceken31-Mar-07 3:30
ceken31-Mar-07 3:30 
AnswerRe: invoking a function with string[] Pin
Leslie Sanford31-Mar-07 6:03
Leslie Sanford31-Mar-07 6:03 
GeneralRe: invoking a function with string[] Pin
ceken1-Apr-07 9:46
ceken1-Apr-07 9:46 
GeneralRe: invoking a function with string[] Pin
Leslie Sanford1-Apr-07 11:51
Leslie Sanford1-Apr-07 11:51 
ceken wrote:
object[] veri = new object[] { "data1", "data2" };


This gives you a problem for the same reasons I described in my previous post. You need to wrap your array inside an object array so that it's treated as one object:

string[] veri = { "data1", "data2" };
 
this.BeginInvoke(writeTb, new object { ver });


The string array is placed in an object array. The object array being passed to BeginInvoke only has one element, so it matches the parameter count of your callback when it passes that element to it.
QuestionCalling AddIn functions Pin
swje31-Mar-07 2:55
swje31-Mar-07 2:55 
AnswerRe: Calling AddIn functions Pin
Judah Gabriel Himango31-Mar-07 9:09
sponsorJudah Gabriel Himango31-Mar-07 9:09 
QuestionFileSize on a Website Pin
Kitchen_31-Mar-07 2:16
Kitchen_31-Mar-07 2:16 
AnswerRe: FileSize on a Website Pin
Dave Kreskowiak31-Mar-07 7:50
mveDave Kreskowiak31-Mar-07 7:50 
AnswerRe: FileSize on a Website Pin
Vasudevan Deepak Kumar1-Apr-07 5:32
Vasudevan Deepak Kumar1-Apr-07 5:32 
AnswerRe: FileSize on a Website Pin
Kitchen_1-Apr-07 14:30
Kitchen_1-Apr-07 14:30 
QuestionHow can I intercept a click in a WebBrowser Control? Pin
MaryGeorge31-Mar-07 2:01
MaryGeorge31-Mar-07 2:01 
AnswerRe: How can I intercept a click in a WebBrowser Control? Pin
Vasudevan Deepak Kumar1-Apr-07 5:38
Vasudevan Deepak Kumar1-Apr-07 5:38 

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.