Questions tagged as 'visual-basic-6'

1
answer

How to get the next month and year in classic ASP?

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...
asked by 24.03.2015 / 23:34
1
answer

convert a string to vb.net - convert.toDouble

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...
asked by 06.04.2015 / 09:02
1
answer

Change color of a Row when VB .Net expires

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...
asked by 29.04.2015 / 20:36
0
answers

Bug intellisense VB6 (Visual Basic 6) when referencing DLL C #

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...
asked by 23.05.2015 / 14:41
2
answers

How to draw a variable from others?

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...
asked by 04.09.2017 / 16:48
2
answers

How to do a zip search in VB

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...
asked by 21.04.2014 / 19:41
2
answers

Differences between array declarations

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...
asked by 26.06.2015 / 23:09
2
answers

Get two snippets of a confusing string

* 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...
asked by 12.05.2015 / 00:00
2
answers

How to call a javascript function from an external file?

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...
asked by 09.12.2014 / 14:20
3
answers

Webbrowser - Click on elements of a site

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...
asked by 20.07.2015 / 23:39