Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
Look here http://www.rondebruin.nl/calendar.htm -- Regards Ron de Bruin http://www.rondebruin.nl "Pasting column width and row heights" soft.com wrote in message ... I am trying to use the Activex control for calendar. How to I active it. Does anyone the the VB for behind this? Or am asking for two much. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I also have a macro that pops up the calendar, select a date and the date is pasted into the selected cell. I want to be able to either click in the cell or click a drop down, and then activate the calendar. How do I do that? I created a frmCalendar in personal.xls with the following code: Private Sub Calendar1_Click() ActiveCell.Value = Calendar1.Value Unload Me End Sub Private Sub cmdClose_Click() Unload Me End Sub Private Sub UserForm_Initialize() If IsDate(ActiveCell.Value) Then Calendar1.Value = DateValue(ActiveCell.Value) Else Calendar1.Value = Date End If End Sub Module 1 then shows the frmCalendar. I would really appreciate any help. "Ron de Bruin" wrote: Hi Look here http://www.rondebruin.nl/calendar.htm -- Regards Ron de Bruin http://www.rondebruin.nl "Pasting column width and row heights" soft.com wrote in message ... I am trying to use the Activex control for calendar. How to I active it. Does anyone the the VB for behind this? Or am asking for two much. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how do i export excel calendar info to outlook calendar? | Excel Discussion (Misc queries) | |||
excel calendar - list of names displayed on calendar | Excel Worksheet Functions | |||
Format entire column with Calendar activex control? | Excel Discussion (Misc queries) | |||
how do you use the ActiveX Calendar control in an Excel Worksheet. | Excel Worksheet Functions | |||
ActiveX Error w/Calendar Control | Excel Programming |