Posts by Ícaro Lima • 48 points
4 posts
-
0
votes4
answers103
viewsA: Extracting json value from page
According to the errors that appears: You need to define myStoredVariable before. Utilize myStoredVariable["proxy"] instead of myStoredVariable['proxy']. How would it look: url :=…
golanganswered Ícaro Lima 48 -
0
votes1
answer38
viewsQ: Relate disciplines and students of a pre-registration system
I’m doing a pre-registration system, and I came across a problem that bothers me a little bit: As you can see in the picture, Curso has Disciplinas and Estudantes, only that each student needs to…
-
1
votes1
answer105
viewsA: Coloring word "up" a limiter
If I understand what you want, here it is: private void richTextBox1_TextChanged(object sender, EventArgs e) { int current = richTextBox1.SelectionStart; for(int i = 0; i <…
-
2
votes1
answer45
viewsQ: The interface freezes while loading an event
I did an event with a lot of time consuming operations and I need to keep describing the operations in a Richtextbox, so I use Richtextbox.Appendtext("Something"), only what I wrote only appears…