Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

VB6 class modules have no parameterized constructors. What solution have you chosen for this? Using facory methods seems like the obvious choice, but surprise me!

share|improve this question
7  
Lack of constructors is not a good way to say it IMO. VB6 does indeed have parameterless constructors (Class_Initialize method). What it doesn't have is parameterized constructors. – Mehrdad Afshari Aug 1 '10 at 17:11
@Mehrdad: point taken! – Dabblernl Aug 1 '10 at 20:53

4 Answers

up vote 4 down vote accepted

I usually stick to factory methods, where I put the "constructors" for related classes in the same module (.BAS extension). Sadly, this is far from optimal since you can't really limit access to the normal object creation in VB6 - you just have to make a point of only creating your objects through the factory. What makes it worse is having to jump between the actual object and your factory method, since organization in the IDE itself is cumbersome at best.

share|improve this answer
Or what about adding the factory method to the class itself? Putting the factory methods in a module makes them application specific. – Dabblernl Aug 1 '10 at 21:00
@Dabblernl - But then you'd have to make them the equivalent of Java's public static, right? VB6 doesn't have static methods. – derekerdmann Aug 1 '10 at 21:55
Well, no need for a static class. You would have to create an instance to access the factory method, but as you do not make use of the object's dependencies that would be acceptable IMHO – Dabblernl Aug 1 '10 at 22:23
@Dabblernl - Ah, I see. That actually sounds like a better solution, I'll have to try it out. – derekerdmann Aug 1 '10 at 23:25
3  
+1. It's worth mentioning a special case. If your class is defined in another component (e.g. ActiveX DLL), you can limit access to normal object creation. Make the class PublicNotCreatable which forces the client to use your factory method. msdn.microsoft.com/en-us/library/aa242107(VS.60).aspx – MarkJ Aug 2 '10 at 9:02
show 1 more comment

How about using the available class initializer? This behaves like a parameterless constructor:

Private Sub Class_Initialize()
    ' do initialization here

End Sub
share|improve this answer
1  
The fact that it doesn't accept any parameters makes it pretty useless as a constructor. It really only lets you set up a few things, but not truly initialize the object's state. – derekerdmann Aug 1 '10 at 17:13
Sorry, my question was unclear. I meant how to solve the problem that there is only a parameterless constructor: Class_Initialize – Dabblernl Aug 1 '10 at 20:58

I use a mix of factory functions (in parent classes) that then create an instance of the object and call a Friend Init() method.

Class CObjects:

Public Function Add(ByVal Param1 As String, ByVal Param2 As Long) As CObject
  Dim Obj As CObject
  Set Obj = New CObject
  Obj.Init Param1, Param2
  Set Add = Obj
End Function

Class CObject:

Friend Sub Init(ByVal Param1 As String, ByVal Param2 As Long)
  If Param1 = "" Then Err.Raise 123, , "Param1 not set"
  If Param2 < 0 Or Param2 > 15 Then Err.Raise 124, , "Param2 out of range"

  'Init object state here
End Sub

I know the Friend scope won't have any effect in the project, but it acts as a warning that this is for internal use only. If these objects are exposed via COM then the Init method can't be called, and setting the class to PublicNotCreatable stops it being created.

share|improve this answer

I have seen folks load up parameters into Environment variables and then read them in the Class_Initialize. BARF!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.