AJUDINHA QUI
Ola me ajudem com esses erros primeiro
Amigo, mostre o código fonte pra gente poder te ajudar, pelo menos a parte onde está dando erro...
Option Explicit
Dim gas As String
Dim eta As String
Dim die As String
Dim soma As Integer
-----------------------------------------------------------------------------------------------------------------------
Private Sub lst1_Click()
gas = 2.89999
eta = 1.89999
die = 1.97999
If lst1.Text = [Ô]Gasolina[Ô] Then
lblvalor.Caption = gas
End If
If lst1.Text = [Ô]Etanol[Ô] Then
lblvalor.Caption = eta
End If
If lst1.Text = [Ô]Diesel[Ô] Then
lblvalor.Caption = die
End If
lbltotalpagar = lblvalor.Caption * txtlitros.Text
End Sub
-------------------------------------------------------------------------------------------------------
Private Sub mnueta_Click()
frmEtanol.Show
End Sub
Dim gas As String
Dim eta As String
Dim die As String
Dim soma As Integer
-----------------------------------------------------------------------------------------------------------------------
Private Sub lst1_Click()
gas = 2.89999
eta = 1.89999
die = 1.97999
If lst1.Text = [Ô]Gasolina[Ô] Then
lblvalor.Caption = gas
End If
If lst1.Text = [Ô]Etanol[Ô] Then
lblvalor.Caption = eta
End If
If lst1.Text = [Ô]Diesel[Ô] Then
lblvalor.Caption = die
End If
lbltotalpagar = lblvalor.Caption * txtlitros.Text
End Sub
-------------------------------------------------------------------------------------------------------
Private Sub mnueta_Click()
frmEtanol.Show
End Sub
Aqui esta
Nesta linha:
lbltotalpagar = lblvalor.Caption * txtlitros.Text
Se não tiver nada na caixa de texto [Ô]txtlitros[Ô] vai dar esse erro...
Pode mudar para:
If txtlitros.text = [Ô][Ô] then
msgbox [Ô]Digite quantos litros...[Ô]
else
lbltotalpagar = lblvalor.Caption * txtlitros.Text
end if
Vale lembrar que seria bom tratar também se o valor de txtlitros é número
lbltotalpagar = lblvalor.Caption * txtlitros.Text
Se não tiver nada na caixa de texto [Ô]txtlitros[Ô] vai dar esse erro...
Pode mudar para:
If txtlitros.text = [Ô][Ô] then
msgbox [Ô]Digite quantos litros...[Ô]
else
lbltotalpagar = lblvalor.Caption * txtlitros.Text
end if
Vale lembrar que seria bom tratar também se o valor de txtlitros é número
Aqui esta
Leu o que escrevi ali em cima???
Aee blz nossa tao facil kkkkkk brigadão
mais uma coisinha fiz um menu e nesse menu tem editar serve pra mudar o preço dos combustiveis tendeu só que não sei como fazer isso editar o valor.
mais uma coisinha fiz um menu e nesse menu tem editar serve pra mudar o preço dos combustiveis tendeu só que não sei como fazer isso editar o valor.
troque a linha em amarelo pelo o texto abaixo:
[txt-color=#e80000]lbltotalpagar.caption= ccur(lblvalor.caption)*ccur(txtlitros.text)[/txt-color]
[txt-color=#e80000]lbltotalpagar.caption= ccur(lblvalor.caption)*ccur(txtlitros.text)[/txt-color]
??????????????????
Option Explicit
[txt-color=#0000f0]Dim gas As Double
Dim eta As Double
Dim die As Double
Dim soma As Double[/txt-color]
-----------------------------------------------------------------------------------------------------------------------
Private Sub lst1_Click()
gas = 2.89999
eta = 1.89999
die = 1.97999
If lst1.Text = [Ô]Gasolina[Ô] Then
lblvalor.Caption = gas
End If
If lst1.Text = [Ô]Etanol[Ô] Then
lblvalor.Caption = eta
End If
If lst1.Text = [Ô]Diesel[Ô] Then
lblvalor.Caption = die
End If
[txt-color=#0000f0]lbltotalpagar = CDbl(lblvalor.Caption) * CDbl(txtlitros.Text)[/txt-color]
End Sub
-------------------------------------------------------------------------------------------------------
Private Sub mnueta_Click()
frmEtanol.Show
End Sub
tente ai
[txt-color=#0000f0]Dim gas As Double
Dim eta As Double
Dim die As Double
Dim soma As Double[/txt-color]
-----------------------------------------------------------------------------------------------------------------------
Private Sub lst1_Click()
gas = 2.89999
eta = 1.89999
die = 1.97999
If lst1.Text = [Ô]Gasolina[Ô] Then
lblvalor.Caption = gas
End If
If lst1.Text = [Ô]Etanol[Ô] Then
lblvalor.Caption = eta
End If
If lst1.Text = [Ô]Diesel[Ô] Then
lblvalor.Caption = die
End If
[txt-color=#0000f0]lbltotalpagar = CDbl(lblvalor.Caption) * CDbl(txtlitros.Text)[/txt-color]
End Sub
-------------------------------------------------------------------------------------------------------
Private Sub mnueta_Click()
frmEtanol.Show
End Sub
tente ai
Tópico encerrado , respostas não são mais permitidas