When creating a reservation in the R6 Resource.nsf, the default time is 30 minutes. Our users would like this to default to 60 minutes. Is this something that we can change? I traced through the debugger and think i tracked it to a thing called m_BEObject.InitDateTimeItems(m_BEObject.CalendarInstance), but i dont have a clue where this lives or how to change it.Any help is appreciated!
Subject: Reservation default time
According to Rod Whiteleyhttps://www-10.lotus.com/ldd/46dom.nsf/55c38d716d632d9b8525689b005ba1c0/c1f6fec59a2973d180256cca0042816d?OpenDocument
I have modified in the following and tested in R6.5.3 and works like a charm~
Under CSEvent Library-Declaration
’ Replace Orig–If (bInitDates = True) Then Call m_BEObject.InitDateTimeItems(m_BEObject.CalendarInstance)
''17Jan06-Increase default StartTime-EndTime Interval from 30mins to 1 hr
If (bInitDates = True) Then
m_BEObject.nitDateTimeItems(m_BEObject.CalendarInstance)
m_note.EndTime = m_note.StartTime(0) + 1/24
End If
HTH