Posts by Talles Santana • 121 points
5 posts
-
0
votes2
answers49
viewsA: C# How to get combobox value?
My suggestion is that you create a class to store Key and Value. Then create a list of objects of this class and assign to the Datasource of your combo. Example of code below that should work in…
-
1
votes2
answers125
viewsA: Exit loop For when typing note 1
To force the output of a while just use the reserved word break. Example: while(condicao){ if (opcao == 1) { // seu codigo aqui break; } }
javaanswered Talles Santana 121 -
8
votes2
answers142
viewsA: What does byte* mean?
Short answer: * means pointer, meaning byte* means pointer to byte. The use of pointers means, shallowly, that you will deal with memory. To understand more in depth just take some content on…
-
1
votes2
answers94
viewsA: Accessible class across C#
Complementing the @maiconmm response you can do this startup in Program.Cs if you are a Winforms or Application console project. You can also read about the pattern Singleton to better understand…
-
2
votes1
answer415
viewsQ: Installation template wrapbootstrap
I bought the Genius Bootstrap template and had a problem using it with Rails. I have taken the following steps: I created a new app( Rails new experiment) [ Rails 3.2.13] I moved the contents of the…