Most voted "basic" questions
BASIC is a high-level, third-generation imperative language, originally compiled (although its implementations on microcomputers have disseminated the interpreted version) and unstructured, as it was heavily based on Fortran II. If your doubt is not directly linked to "basic" do not use this tag even if your project makes use of this language.
Learn more…8 questions
Sort by count of
-
6
votes1
answer270
viewsVisual Basic Excel - Delete an array name
I’m here with some problems, I never touched Visual Basic and I was wondering if it would help me to make a list I have in Excel faster (Through Visual Basic Excel). It’s very simple, I just want to…
-
6
votes3
answers5277
viewsWhat does "Dim" mean in Basic?
Okay, most programmers (I think most of them) of Basic (popular; Visual Basic compiler) know what the use of Dim, but I also think you don’t know what that word means... Basic Keywords are so…
-
2
votes1
answer34
viewsInsert objects into an Array without copying them
Is there any way I can put the items in one Array without multiplying them? I am trying the following. I want to add the list items MethodList on the list toAdd, but without repeating what is on the…
-
1
votes0
answers13
viewsMotion control in VB
This is the movement code: Private Sub Form5_KeyDown(sender As Object, e As KeyEventArgs) Handles MyBase.KeyDown If e.KeyCode = Keys.W Then Label46.Top = Label46.Top - 6 End If If e.KeyCode = Keys.A…
-
1
votes1
answer601
viewsHow to print Qrcode on Epson TM T20 VB.NET printer
I’m trying to print a QR Code on the Epson TM-T20 printer using the VB.NET language and it is returning several characters on the electronic tax coupon reel, could someone help me? Follow the code…
-
0
votes0
answers13
viewsInterpret file . uni with VB.net
I have a file . ini with the following structure: [00000000000] parâmetro1=xxxxxxxxxxxxxxx parâmetro2=xxxxxxxx parâmetro3=xxxxxxxxxx and this pattern repeats itself for about 2000 times. I would…
-
-1
votes1
answer100
viewsSyntax error in a beast program in Python
modo = int(input("Selecionar modo de jogo: ")) if modo == 1 print("deu 1") if modo == 2 print("deu 2") I just wanted to test if the user, when typing 2 the program prints 2 and the same pro 1, but…
-
-2
votes1
answer1375
viewsHow to convert a project from VB6 (.vbp) to VB.NET (.vbproj)?
I decompiled an application in VB, only it wasn’t . NET, it was VB6. I would like to know how to convert as I already used Vbto Converter and it crashed into one of the files. I am waiting quickly…