Questions tagged as 'visual-basic-6'

4
answers

Switch / case very interesting in Swift - What other languages support this?

The Swift language has a very interesting and intuitive way to work with switch-case breaks, with partial-matching, pattern-matching, etc. techniques, see these examples: let age = 33 switch(age){ case let x where x >= 0 && x <=...
asked by 30.06.2016 / 02:44
1
answer

What are the main differences between VB.NET, VB6 and VBA?

What are the main differences between VB.NET, VB6 and VBA?     
asked by 18.09.2016 / 22:59
1
answer

Sending NFe to MG in Version 3.10

To send the XML from an NFe to MG in version 2.0 I do it as follows: Public Function enviaNFe2(ByVal NumeroDoLote As Integer, ByVal ListiView As ListView, ByVal Label As ToolStripStatusLabel) As Boolean Dim ret As Boolean = False Dim x...
asked by 25.01.2015 / 20:28
1
answer

VB6 always executes the 2nd function even the 1st being False

The if in VB6 always executes the 2nd function even if the 1st is False , C # does not execute the 2nd function if the 1st is already false. How can I put vb6 running the 2nd function, only if the 1st is true? C # code: if...
asked by 12.03.2018 / 10:50
1
answer

Creating Properties, Summary, and Custom Colors for Methods and Types

Is there any way or attribute that places it on a Class, Method, Structure, or anything else that changes its color? Example of function CType : Noticethatitiscolored,anditsargumentsinsteadofCType(Expression,TypeName)AsTypegetsCType(<ex...
asked by 07.05.2015 / 22:14
3
answers

What does "Dim" mean in Basic?

OK, most programmers (I think the biggest of the majority) of Basic (popular Visual Basic compiler) know what the use of Dim is, but I also believe they do not know What does that word mean ... The keywords in Basic are so obvious (ot...
asked by 30.06.2016 / 07:20
1
answer

Help with RGB color in 16bit Hexadecimal

So, I'm creating an editor for a PS2 football game in C #. And the "color system" of the game is RGB, and so far everything was going very well, because I was encountering with "normal" Hex codes in the game how to choose the color R: 255 G: 255...
asked by 03.04.2017 / 21:20
1
answer

About the difference between Visual Basic and Basic

I was told that:    Visual Basic is the compiler ...       ... and Basic is the language After all, in visual studio, am I editing the Basic or Visual Basic language?     
asked by 23.05.2015 / 06:31
1
answer

How to get an image of a resource

I want to call a picture with a button in Visual Basic 2010 Express , in Visual Basic 2008 , I used this code: picMyimage.image = My.resource.onomedaimagen Until then it worked as it wished, however in Visual Basic 2010 is not working, w...
asked by 08.02.2016 / 11:49
2
answers

Find equal ranges in a list

I am a beginner user and have tried almost everything but I have not been able to resolve the issue and would like to know if anyone could help me. In a column I have numerical values and would like to compare the ranges of four cells "A2: A5...
asked by 02.10.2016 / 20:31