Posts by user7752 • 35 points
8 posts
-
0
votes2
answers1443
viewsA: Move images on VB6
For what I wanted this would look like this: Option Compare Database Dim i As Integer Private Sub Command1_Click() For i = 1 To 900 Me.Width = 1000 Let Image3.left = Image3.left - 5 DoEvents Next…
-
0
votes0
answers32
viewsQ: Move images vb6, Msaccess.vba
I added an image and a Button to a form, created this code: Option Compare Database Private Sub Command0_Click() Do Until Me.Width < 4000 Let Image1.Left = Image1.Left - 5 DoEvents Loop End Sub…
-
0
votes1
answer3120
viewsQ: Validate field in VBA
In Mozambique there is a unique tax identification number (Nuit), and this number takes 9 digits. How an application would look to validate the Nuit meeting the following conditions? If there are…
-
0
votes2
answers1443
viewsQ: Move images on VB6
Option Compare Database Private Sub Command0_Click() Do Until Me.Width < 4000 Let Image1.Left = Image1.Left - 5 DoEvents Loop End Sub Just like this allows you to move the image from the right…
-
0
votes1
answer154
viewsQ: Connect VB6 to Msaccess
I created a Msaccess Database and created a connection module. However, when the executable gives connection error. Someone has another example of how to connect VB6 to Msacess? The code to my…
-
0
votes1
answer301
viewsQ: Subroutines in the vb6
I have a form and added to it , a button and an image ,I wonder if it is possible to create a subroutine where by clicking the button the image moves from one side to the other? if it is possible as…
visual-basic-6asked user7752 35 -
0
votes1
answer202
viewsQ: Create a subroutine in VB6
I am trying to create a subroutine capable of reading the entire alphabet from A to Z and storing/displaying the letters read in duplicate (AA, BB, CC, ...) in VB6 but it hasn’t worked out yet. My…
visual-basic-6asked user7752 35 -
1
votes1
answer437
viewsQ: Consolidation of tables in Msaccess and VBA
I have the following access database: mov_atm n_mov conta data valor mov_sc 100 200 1/8/2014 500 n_mov conta data valor 101 900 5/8/2014 800 200 900 5/8/2014 800 102 100 1/8/2014 500 109 100…