Advertisement
Guest User

Untitled

a guest
Apr 16th, 2014
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. Constructor on type "###" not found
  2. ### here is name of my parent usercontrol:
  3.  
  4. Public Class UC_Url
  5. Inherits Master
  6.  
  7. Public Sub New(ByVal meter As UMeter)
  8. MyBase.New(meter)
  9. ' This call is required by the designer.
  10. InitializeComponent()
  11. ' Add any initialization after the InitializeComponent() call.
  12. End Sub
  13.  
  14. End Class
  15.  
  16. Public Class Master
  17. Implements ICloneable
  18.  
  19. Public Sub New(ByVal meter As AMeter)
  20.  
  21. ' This call is required by the designer.
  22. InitializeComponent()
  23. lblName.Text = meter.Caption
  24. End Sub
  25.  
  26. End Class
  27.  
  28. Public Sub New(ByVal meter As UMeter)
  29. MyBase.New(meter)
  30. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement