Posts by António Gonçalves • 49 points
2 posts
-
-1
votes2
answers40
viewsA: Error "The call thread cannot access this object because it belongs to a different thread."
I guess that’s how it is: txt_transcriber.Invoke((Action)(() => txt_transcriber.Text = e.Result.Text);
-
5
votes3
answers1637
viewsA: How to iterate with two-dimensional array?
Check whether this information helps : https://www.geeksforgeeks.org/multidimensional-arrays-in-java/ for (int i = 0; i < 2; i++) for (int j = 0; j < 2; j++) System.out.println("arr[" + i +…