For example: this is March 2015. I can get the next month of the current year using month()+1 concatenating with year() , ie the month of April 2015. But let's say we were in December 2015 , how do I automatically get the month of J...
I'm trying to convert a string to double into vb.net:
Dim result as double
Dim ValueString as string = "-42.1942339"
result = Convert.ToDouble(ValueString)
Console.WriteLine(result)
I'm getting the following value -421942339...
I have a database with the following tables: Data Emissão and Data Expira .
So I want that when the date of Data expira is equal to or greater than Data Emissao , row change color to Vermelho and when i...
I have a DLL in C# that is used in VB6 applications, however whenever this DLL is referenced in the project, intellisense is buggy.
See below the difference in the first image without reference to DLL...
My intention is for the code to pass through 9 TextBox checking if they are filled with names or empty.
For each filled TextBox would be added 1 in a count variable and would be allocated the text of the TextBox in another variable (p1, p2, p...
How do I collect address data (Street, City, Neighborhood, Street) for a site, referring to the input Cep using VB ?
I have a similar code in C#
I see two alternatives:
Translate the code to VB
Run the c# c...
What's the difference between declaring an array like this:
'C#
string MinhaMatriz[] = []
'VB
Dim MinhaMatriz() As String = { }
and so:
'C#
string[] MinhaMatriz = []
'VB
Dim MinhaMatriz As String() = { }
or so:
'C#
System.A...
* My question is very simple: How do I get the string Argumento1 and the string Argumento2 , separated into two variables in this code of a language I'm doing:
if Argumento1 = Argumento2 (
--statements;
);
I just want t...
I'm having trouble validating a field by clicking the incluir button, so I click on incluir gives this error below:
Unable to get 'value' property value: object is
null or undefined.
This error appears in this line of...
Hello, everyone!
It's this, I need to make my program click on an element. Here is a photo to make it easier to understand:
link
I have tried many things, but nothing successful so far ...
I want the button to be pressed
My code is li...