Hello Roger and thanks for replying. I, too, assumed that's what would be required, but sadly it doesn't install any of the ascx.vb modules, only the ascx along with the dll. Probably due to the fact that the .DNN manifest in the Source zip doesn't make any mention of the ascx.vb files which is understandable?
I tried copying the ascx.vb modules into the Desktopmodules/Events folder but it doesn't go to the breakpoint. Then I realised that the two Event dll's (DotNetNuke.Events.ScheduleControl and DotNetNuke.Events.WebControls) had to be excluded from the project. I did that, and rebuilt the project and now it steps through stops suitably enough in debug at the requisite BreakPoints. So now we're cooking on gas!!!
BUT..... when I looked at the Project Event certain very important vb source files had been omitted from the Events by the Install Source PA operation:
- DataProvider.vb
- EventBase.vb
- EventControleer.vb
- EventInfo.vb
- EventNotification.vb
- Providers/DataProviders/SqlDataProvider/SqlDataProvider.vb
So I placed these in a Folder called Events and placed this folder in App_Code. So far so good(ish).
I Built the Application again and now have only 6 errors over 3 statements.
- 'ThemeSetting ' is not defined IN EventsBase.vb
(Ln 225) themeSettings = New ThemeSetting()
2. 'EventIcons' is not defined IN EventsBase.vb
(Ln 369) Public Sub SetUpIconBar(ByVal EventIcons As EventIcons, ByVal EventIcons2 As EventIcons)
3. 'SelectCategory' is not a member of 'Dotnentnuke.Modules.Events.EventMonth'
(Ln 90) Me.SelectCategory.Visible = False
Can anyone help me to resolve these?