Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default How do I use ActiveX calendar in an excel?

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default How do I use ActiveX calendar in an excel?

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
how do i export excel calendar info to outlook calendar? Maggie Excel Discussion (Misc queries) 1 December 31st 07 10:27 PM
excel calendar - list of names displayed on calendar Brian'88 Excel Worksheet Functions 3 November 17th 06 10:31 PM
Format entire column with Calendar activex control? chantal0123 Excel Discussion (Misc queries) 3 June 2nd 06 08:51 PM
how do you use the ActiveX Calendar control in an Excel Worksheet. EricF Excel Worksheet Functions 0 November 10th 04 09:39 PM
ActiveX Error w/Calendar Control Ron Armstrong Excel Programming 0 October 24th 03 01:25 AM


All times are GMT +1. The time now is 01:25 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"