What is ME
- From: nujcharee@xxxxxxxxxxxxxx
- Date: Thu, 02 Aug 2007 12:32:06 -0000
Hi Guys
I am a dummy for VBA programming. I notice a lot of codes in VBA using
"ME" reference. For example the code below. What doe ME refer to?
Private Sub HeatPoints_BeforeUpdate(Cancel As Integer)
If (Me.HeatPlace.Value = "1") Then
Me.HeatPoints.Value = "5"
Else
If (Me.HeatPlace.Value = "2") Then
Me.HeatPoints.Value = "4"
Else
If (Me.HeatPlace.Value = "3") Then
Me.HeatPoints.Value = "3"
Else
If (Me.HeatPlace.Value = "4") Then
Me.HeatPoints.Value = "2"
Else
If (Me.HeatPlace.Value = "5") Then
Me.HeatPoints.Value = "1"
Else
If (Me.HeatPlace.Value > "5") Then
Me.HeatPoints.Value = "0"
Else
If (Me.HeatPlace.Value = "DNF") Then
Me.HeatPoints.Value = "0"
Else
If (Me.HeatPlace.Value = "DNS") Then
Me.HeatPoints.Value = "0"
End If
Many thanks
Peddie
.
- Follow-Ups:
- Re: What is ME
- From: Jonathan West
- Re: What is ME
- Prev by Date: Re: Setting a Formula in German Excel
- Next by Date: Re: What is ME
- Previous by thread: Re: Setting a Formula in German Excel
- Next by thread: Re: What is ME
- Index(es):
Relevant Pages
|