Posts by Vinicius V • 163 points
5 posts
-
0
votes1
answer37
viewsQ: When using tag div inside a parent element that has padding, the left padding is shown
When using <div> within an element <figcaption> with padding: 10px and putting the div with bottom: 0px relating to <figcaption>, the right padding of <figcaption> does not…
-
1
votes3
answers871
viewsQ: Use more than one language in the same project?
I am participating in a project that will need two parts: 1) Extração de dados da internet 2) Criação da Interface Gráfica para Desktop For the first, I thought of using Python for reading that it…
-
0
votes2
answers56
viewsQ: Widening conversions and option Strict on
I’m learning about conversions and reading that article: Widening Conversions (I don’t know the term in English) The following conversions may lose precision: Integer to Single Long to Single or…
-
0
votes1
answer51
viewsQ: Protected Friend in Vb.Net: the field is also visible in other projects
I am studying access modifiers in Vb.net and I came up with a question in Protected Friend According to the website macoratti.net: Protected: hides members of a class and "members marked with the…
vb.netasked Vinicius V 163 -
5
votes3
answers139
viewsQ: Lists within lists: Even when sliced, there is connection between lists
I’m studying lists and there’s a behavior I don’t understand. I know that when I equate one list with another, a connection between them is created. And that when I slice a list, I create a copy of…