Microsoft error

  • Thread starter Thread starter alvin Kuiper
  • Start date Start date
A

alvin Kuiper

Hi!
I have this code:
Private Sub ComboBox3_Click()
Range("priskalk!$L$12").Value = ComboBox3.Value
pr_ekstrapris
pr_pakkepris
pr_hotelpris
If hotelpris <> "" Then
txt_hotel.Text = hotelpris
txt_hotel.Enabled = False
End If
End Sub
And its working

But if i change the code into a IF then i get this Microsoft error
and excel crass

The code i use is:
Private Sub ComboBox3_Click()

Range("priskalk!$L$12").Value = ComboBox3.Value
If fradato.Text <> "" And Tildato.Text <> "" Then
pr_ekstrapris
pr_pakkepris
pr_hotelpris
If hotelpris <> "" Then
txt_hotel.Text = hotelpris
txt_hotel.Enabled = False
End If
End If
End Sub
And the only diff between the first code and yhe next is:

If fradato.Text <> "" And Tildato.Text <> "" Then

I don't understand why ?
 
Let us know what the error is and in which line

Few suggestions
1. Declare your variables and use 'Option Explicit' statement
2. Getinto break mode F8 and anlayse in which line in breaks

If this post helps click Yes
 
Yes but thats the problem
I don't get what error, i just get this microsoft error, where i can say yes
to send the error.

But i solve it this way:
If fradato.Text <> "" And Tildato.Text <> "" Then
i change to
If formname.fradato.Text <> "" And formname.Tildato.Text <> "" Then

Alvin

"Jacob Skaria" skrev:
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top