Class Get Compile Error

PanzerRanger

New Member
Joined
Jan 3, 2018
Messages
20
Im Trying to learn how to use classes. The first one works like as charm but the second one is a real pain and I cant figure ot the issue. For som reason it works if I remove the technican1 get property. But I need to write and read from the class.

It returns :
Definition of the propertyprocedure for the same property is inconsistant, or the propertyprocedure has a variant parameter, paramarry or a invalid set final parameter

The class looks as follows:

Private pTechnican1 As String


Public Property Let Technican1(val As String)
pTechnican1 = val
End Property


Public Property Get Technican1()
Technican1 = pTechnican1
End Property


Public Property Let PlanResource(val As Boolean)
If val = True Then
Call AsignValues
End If
End Property


Private Sub AsignValues()
Technican1 = Tryout_class.tech
End Sub

and the modul accessing it

Public tech As String
Sub test()
Dim PP As Projectplaning
Set PP = New Projectplaning
tech = "Martin"
PP.PlanResource = True


End Sub
 
Last edited:

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.

Forum statistics

Threads
1,214,979
Messages
6,122,550
Members
449,088
Latest member
davidcom

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top