Questions tagged as 'visual-basic-6'

1
answer

Buttons, panels and other shapes on the CONSOLE

Well, these days, I'm making a Console, very simple, and I was curious to see some applications made by super advanced third parties, with Menus, panels and even buttons! When you click on them, they give the click effect, a super advanced thing...
asked by 16.05.2015 / 06:54
1
answer

Sub routines in vb6

I have a form and I added to it a button and an image, I want to know if it is possible to create a sub routine where when clicking the button the image will move from side to side? vb6 From now to the help grid of your hugs     
asked by 29.05.2014 / 15:19
1
answer

Create a subroutine in VB6

I'm trying to create a subroutine that can read the entire alphabet from A to Z and save / display letters read in duplicate (AA, BB, CC, ...) in VB6 but it still did not work. My attempt: Do while alfa <> z alfa = alfa +...
asked by 28.05.2014 / 09:40
1
answer

How to change a list view from a Combo in VB6

I made a form with a ListView and a ComboBox , my problem is that according to what is selected in ComboBox I have to change the data of ListView . For example: I have ListView LETRAS (which is already loaded...
asked by 24.04.2014 / 16:05
2
answers

Moving images in VB6

Option Compare Database Private Sub Command0_Click() Do Until Me.Width < 4000 Let Image1.Left = Image1.Left - 5 DoEvents Loop End Sub As this allows you to move the image from right to left, how do the image to rotate t...
asked by 05.06.2014 / 14:00
1
answer

Connect VB6 to MSAccess

I created a database in MSAccess and created a connection module. However, when the execute gives connection error. Does anyone have another example of how to connect VB6 to MSAcess? My module code: Option Compare Database Option Explicit...
asked by 04.06.2014 / 14:29
1
answer

Popular Grid VB6

I have a form that receives information from the user and would like to display them in a datagrid. I already have the DataSource which is a Query that is assigned to a String variable named SQL. It returns the information I need and would like...
asked by 13.02.2014 / 13:08
1
answer

Is there any way to use self Execute functions in vb6?

In javascript we can write this in several ways: (function () { console.log("Olá"); })(); (function () { console.log("Olá"); }()); ! function () { console.log("Olá"); }(); void function () { console.log("Olá"); }(); I'm w...
asked by 17.12.2018 / 17:51
0
answers

Convert RTF to String through SQL?

Well, I have a small problem, I was asked to convert a text made from a RichTextBox (VB 6) to a normal string, but this RichTextBox also works for Chinese characters and is here that the problem exists. I'm already in 2 days, I could not do t...
asked by 07.12.2018 / 11:33
2
answers

Check if internet connection is active

Is there a function that returns if there is an active internet connection? I say, not only the network card connected, but an active connection. Vlw.     
asked by 08.11.2018 / 17:21