Posts by Gustavo Queiroz • 45 points
4 posts
-
1
votes1
answer50
viewsQ: Lagrange interpolation - ERROR in [do while]
I’m creating a method to catch n values, adding them in an array, and from these values apply the Lagrange interpolation method to find a polynomial. Soon after, find an estimated value of x for the…
javaasked Gustavo Queiroz 45 -
2
votes1
answer1214
viewsQ: Is VBA object oriented?
VBA can be considered an object-oriented language? Despite having getters and setters (or Letters… rsrsrs), implementation of classes, methods and attributes, lacks the concepts of encapsulation,…
-
0
votes1
answer2247
viewsQ: How to make a robot take data from a table in an HTML website
I’m trying to create a database with stock histories extracted from a website. Below is an example of what I’m trying to do. package com.gustavo.seleniumTest; import org.openqa.selenium.By; import…
-
1
votes2
answers51
viewsA: Check whether certain parts of a spreadsheet have data
You can use the for each, as follows: Private Sub CommandButton1_Click() Dim rng As Range Dim sh1 As Worksheet: Set sh1 = ThisWorkbook.Worksheets(1) Dim sh2 As Worksheet: Set sh2 =…