I am trying to convert the CreateAndSendInvitation to vb.net rather than C#. All of my references are good after adding the checkbox.dll to my web solution. However, I'm getting errors with certain method calls. Here are my list of errors.
1.Dim rtData As DataSet = ResponseTemplateManager.GetAvailableResponseTempla tes("Form.Administer")
--------
Error 83 Overload resolution failed because no accessible 'GetAvailableResponseTemplates' accepts this number of arguments.
2. invitation.Save()
---------
Error 84 Argument not specified for parameter 'principal' of 'Public Sub Save(principal As Prezza.Framework.Security.Principal.ExtendedPrinci pal)'.
3. EmailListPanel.GetAvailableEmailLists()
----------
Error 85 Overload resolution failed because no accessible 'GetAvailableEmailLists' accepts this number of arguments.
4. Dim userGroups As Group() = Group.GetGroups(PermissionJoin.Any, "Group.View")
----------
Error 86 Value of type 'Checkbox.Security.PermissionJoin' cannot be converted to 'Prezza.Framework.Security.Principal.ExtendedPrinc ipal'.
|