joven Posted May 15, 2009 at 09:00 AM Report #264301 Posted May 15, 2009 at 09:00 AM Boas No meu programa está a dar um erro, e gostaria saber se me podiam ajudar. num botão começa uma thred e adiciona items a uma listbox que está no form. e dá o seguinte erro http://img32.imageshack.us/img32/5479/error.th.png se for preciso ponho algum código. Obrigado
M6 Posted May 15, 2009 at 09:22 AM Report #264307 Posted May 15, 2009 at 09:22 AM joven, não há erro nenhum... 😄 Já agora, atenção à ortografia... 10 REM Generation 48K! 20 INPUT "URL:", A$ 30 IF A$(1 TO 4) = "HTTP" THEN PRINT "400 Bad Request": GOTO 50 40 PRINT "404 Not Found" 50 PRINT "./M6 @ Portugal a Programar."
amiloM1425 Posted May 15, 2009 at 09:34 AM Report #264311 Posted May 15, 2009 at 09:34 AM Vais ter de utilizar delegates de modo a que possas fazer o pretendes (cross threading update). Dá uma vista de olhos neste link: http://blogs.msdn.com/csharpfaq/archive/2004/03/17/91685.aspx
joven Posted May 15, 2009 at 09:49 AM Author Report #264314 Posted May 15, 2009 at 09:49 AM uhm parece confuso no form tenho a listbox na thred adiciona um item e depois adiciona outro caso os dados recebidos são válidos. if (listBox1.Items.Count >= 10) listBox1.Items.RemoveAt(0); listBox1.Items.Add(str); a ideia era mostrar os ultimos 10 dados recebido. ?
inginheiiro Posted May 15, 2009 at 09:58 AM Report #264318 Posted May 15, 2009 at 09:58 AM private void AddToListBox(string s) { Invoke(new MethodInvoker(delegate { listBox1.Items.Add(s); })); } przumo ke cheja isto k keres pra rezolber a exceçção. fiz uh esforso pra escreber da merma froma k tú ... não foi fácil!!! I used to have a life ... but i bought a programmable machine in 1982 ...
joven Posted May 29, 2009 at 03:02 PM Author Report #268331 Posted May 29, 2009 at 03:02 PM boas e se pretender de devolva valores? Obrigado
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now