Ayuda con sentencia IF...THEN...VB
Hola! Tengo el siguiente programa:
Dim ObjCarpeta1 As Object
Dim Carpeta1 As Object
ObjCarpeta1 = CreateObject("Scripting.FileSystemObject.
Carpeta1 = ObjCarpeta1.GetFolder("C:\R")
Label1.Text = Carpeta1.files.count
C2.Text = C2.Text + 0.1
If C2.Text = Label4.Text Then 'label4.text=3
If Carpeta1.files.count = True Then
C1.BackColor = Color.Red
C2.Text = 0
Else
C1.BackColor = Color.Pink
C2.Text = 0
End If
End If
Se supone que cuando esté contando se ponga rojo el label CRISTOBAL pero se pone en rosado y se queda así aunque sí se esté añadiendo archivos a la carpeta... ¿me ayudan pliss..?
Dim ObjCarpeta1 As Object
Dim Carpeta1 As Object
ObjCarpeta1 = CreateObject("Scripting.FileSystemObject.
Carpeta1 = ObjCarpeta1.GetFolder("C:\R")
Label1.Text = Carpeta1.files.count
C2.Text = C2.Text + 0.1
If C2.Text = Label4.Text Then 'label4.text=3
If Carpeta1.files.count = True Then
C1.BackColor = Color.Red
C2.Text = 0
Else
C1.BackColor = Color.Pink
C2.Text = 0
End If
End If
Se supone que cuando esté contando se ponga rojo el label CRISTOBAL pero se pone en rosado y se queda así aunque sí se esté añadiendo archivos a la carpeta... ¿me ayudan pliss..?
1 respuesta
Respuesta de Roberto Alvarado
1