Posts by Robison Aleixo • 139 points
7 posts
-
2
votes1
answer1337
viewsQ: Pass Array as parameter in VBA (Excel)
How do I pass an Array as a parameter to a function in VBA? Detail if I define a type of variable like String, Integer, etc... works, however a type defined by me, does not work! For example: Type…
excel-vbaasked Robison Aleixo 139 -
1
votes1
answer63
viewsQ: Layout: Onepage only with HTML and CSS (with Transition)
I’m creating a layout "Onepage", however I would like to do it only with CSS and HTML. The idea is when the user click next the same will be moved to "Section 01", this already done, but I’m not…
-
0
votes1
answer692
viewsQ: Font Awesome in select box
I’m having trouble displaying some 'icones' from Fontawesome as in the example, note that an icon is displayed however the second not, and when I click the select box the first option also does not…
-
2
votes1
answer122
viewsQ: Obfuscate part of the background-image, and make other parts clear
I’m trying to reproduce this "example" of Dribble, however I’m not getting it. My current progress is this (using SCSS), however as can be verified I duplicated the background to achieve this…
-
1
votes1
answer37
viewsQ: Word split with find_if
How is this string(i, j) mounted? the first string inserted in the vector is "Robison" and is correct, but to have this result the value of i should be 0 and j = 7, no? #include <iostream>…
c++asked Robison Aleixo 139 -
2
votes1
answer785
viewsQ: Take an element attribute
How do I select the background color of the div element? Note: Using javascript var cor; cor = document.getElementById(id).style.backgroundColor; #bloco1 { width: 280px; height: 120px; border: 1px…
-
5
votes2
answers339
viewsQ: How to avoid very big win condition in old woman’s game?
I made an old game that checks the user’s win conditions with if, however did not find an elegant solution. I am trying to develop a method to verify the condition of victory with array, but I’m not…