PC Review


Reply
Thread Tools Rate Thread

Calender does not desapear

 
 
=?Utf-8?B?bWFwZXJhbGlh?=
Guest
Posts: n/a
 
      14th Jun 2007
I inserted a calender option in the cell "C12". It is working very good,
however, the calender does not desapear it is there all the time. I just want
the calender to appear when the cell "C12" is selected. Also, I would like to
calender desapear as soon the date is selected (without pressing enter).
Thanks in advance.
Maperalia
 
Reply With Quote
 
 
 
 
Ron de Bruin
Guest
Posts: n/a
 
      14th Jun 2007
Do you use the code from my site ?


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"maperalia" <(E-Mail Removed)> wrote in message news:6B5E76CE-8571-4929-9081-(E-Mail Removed)...
>I inserted a calender option in the cell "C12". It is working very good,
> however, the calender does not desapear it is there all the time. I just want
> the calender to appear when the cell "C12" is selected. Also, I would like to
> calender desapear as soon the date is selected (without pressing enter).
> Thanks in advance.
> Maperalia

 
Reply With Quote
 
=?Utf-8?B?bWFwZXJhbGlh?=
Guest
Posts: n/a
 
      14th Jun 2007
Yes I do..

"Ron de Bruin" wrote:

> Do you use the code from my site ?
>
>
> --
>
> Regards Ron de Bruin
> http://www.rondebruin.nl/tips.htm
>
>
> "maperalia" <(E-Mail Removed)> wrote in message news:6B5E76CE-8571-4929-9081-(E-Mail Removed)...
> >I inserted a calender option in the cell "C12". It is working very good,
> > however, the calender does not desapear it is there all the time. I just want
> > the calender to appear when the cell "C12" is selected. Also, I would like to
> > calender desapear as soon the date is selected (without pressing enter).
> > Thanks in advance.
> > Maperalia

>

 
Reply With Quote
 
Ron de Bruin
Guest
Posts: n/a
 
      14th Jun 2007
You can add one line

Private Sub Calendar1_Click()
ActiveCell.Value = CDbl(Calendar1.Value)
ActiveCell.NumberFormat = "mm/dd/yyyy"
ActiveCell.Select
Calendar1.Visible = False
End Sub



--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"maperalia" <(E-Mail Removed)> wrote in message news:98988BDE-B4AD-4598-BCB7-(E-Mail Removed)...
> Yes I do..
>
> "Ron de Bruin" wrote:
>
>> Do you use the code from my site ?
>>
>>
>> --
>>
>> Regards Ron de Bruin
>> http://www.rondebruin.nl/tips.htm
>>
>>
>> "maperalia" <(E-Mail Removed)> wrote in message news:6B5E76CE-8571-4929-9081-(E-Mail Removed)...
>> >I inserted a calender option in the cell "C12". It is working very good,
>> > however, the calender does not desapear it is there all the time. I just want
>> > the calender to appear when the cell "C12" is selected. Also, I would like to
>> > calender desapear as soon the date is selected (without pressing enter).
>> > Thanks in advance.
>> > Maperalia

>>

 
Reply With Quote
 
=?Utf-8?B?bWFwZXJhbGlh?=
Guest
Posts: n/a
 
      15th Jun 2007
Ron;
Thanks very much it is working perfectly!!.
However, I found that when I use it in another computer I have the following
error message:
Run-Time error ‘424’
Object Required
So, I went to Insert/Object at the tools menu and I found that the calendar
is not there.
In addition, I check that Microsoft Access is installed. So and do not how
to get the calendar now. Could you please tell me how to get the calendar?

Thanks in advance.
Maperalia


"Ron de Bruin" wrote:

> You can add one line
>
> Private Sub Calendar1_Click()
> ActiveCell.Value = CDbl(Calendar1.Value)
> ActiveCell.NumberFormat = "mm/dd/yyyy"
> ActiveCell.Select
> Calendar1.Visible = False
> End Sub
>
>
>
> --
>
> Regards Ron de Bruin
> http://www.rondebruin.nl/tips.htm
>
>
> "maperalia" <(E-Mail Removed)> wrote in message news:98988BDE-B4AD-4598-BCB7-(E-Mail Removed)...
> > Yes I do..
> >
> > "Ron de Bruin" wrote:
> >
> >> Do you use the code from my site ?
> >>
> >>
> >> --
> >>
> >> Regards Ron de Bruin
> >> http://www.rondebruin.nl/tips.htm
> >>
> >>
> >> "maperalia" <(E-Mail Removed)> wrote in message news:6B5E76CE-8571-4929-9081-(E-Mail Removed)...
> >> >I inserted a calender option in the cell "C12". It is working very good,
> >> > however, the calender does not desapear it is there all the time. I just want
> >> > the calender to appear when the cell "C12" is selected. Also, I would like to
> >> > calender desapear as soon the date is selected (without pressing enter).
> >> > Thanks in advance.
> >> > Maperalia
> >>

>

 
Reply With Quote
 
Ron de Bruin
Guest
Posts: n/a
 
      15th Jun 2007

Hi maperalia

You can find a link on my page where you can download the control and
also instructions how to install it.
http://www.rondebruin.nl/calendar.htm


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"maperalia" <(E-Mail Removed)> wrote in message news:2187AD0B-0CF1-4C23-930C-(E-Mail Removed)...
> Ron;
> Thanks very much it is working perfectly!!.
> However, I found that when I use it in another computer I have the following
> error message:
> Run-Time error ‘424’
> Object Required
> So, I went to Insert/Object at the tools menu and I found that the calendar
> is not there.
> In addition, I check that Microsoft Access is installed. So and do not how
> to get the calendar now. Could you please tell me how to get the calendar?
>
> Thanks in advance.
> Maperalia
>
>
> "Ron de Bruin" wrote:
>
>> You can add one line
>>
>> Private Sub Calendar1_Click()
>> ActiveCell.Value = CDbl(Calendar1.Value)
>> ActiveCell.NumberFormat = "mm/dd/yyyy"
>> ActiveCell.Select
>> Calendar1.Visible = False
>> End Sub
>>
>>
>>
>> --
>>
>> Regards Ron de Bruin
>> http://www.rondebruin.nl/tips.htm
>>
>>
>> "maperalia" <(E-Mail Removed)> wrote in message news:98988BDE-B4AD-4598-BCB7-(E-Mail Removed)...
>> > Yes I do..
>> >
>> > "Ron de Bruin" wrote:
>> >
>> >> Do you use the code from my site ?
>> >>
>> >>
>> >> --
>> >>
>> >> Regards Ron de Bruin
>> >> http://www.rondebruin.nl/tips.htm
>> >>
>> >>
>> >> "maperalia" <(E-Mail Removed)> wrote in message news:6B5E76CE-8571-4929-9081-(E-Mail Removed)...
>> >> >I inserted a calender option in the cell "C12". It is working very good,
>> >> > however, the calender does not desapear it is there all the time. I just want
>> >> > the calender to appear when the cell "C12" is selected. Also, I would like to
>> >> > calender desapear as soon the date is selected (without pressing enter).
>> >> > Thanks in advance.
>> >> > Maperalia
>> >>

>>


 
Reply With Quote
 
=?Utf-8?B?bWFwZXJhbGlh?=
Guest
Posts: n/a
 
      15th Jun 2007
Ron;
Thanks very much I will do it and let you know the results.

Maperalia

"Ron de Bruin" wrote:

>
> Hi maperalia
>
> You can find a link on my page where you can download the control and
> also instructions how to install it.
> http://www.rondebruin.nl/calendar.htm
>
>
> --
>
> Regards Ron de Bruin
> http://www.rondebruin.nl/tips.htm
>
>
> "maperalia" <(E-Mail Removed)> wrote in message news:2187AD0B-0CF1-4C23-930C-(E-Mail Removed)...
> > Ron;
> > Thanks very much it is working perfectly!!.
> > However, I found that when I use it in another computer I have the following
> > error message:
> > Run-Time error ‘424’
> > Object Required
> > So, I went to Insert/Object at the tools menu and I found that the calendar
> > is not there.
> > In addition, I check that Microsoft Access is installed. So and do not how
> > to get the calendar now. Could you please tell me how to get the calendar?
> >
> > Thanks in advance.
> > Maperalia
> >
> >
> > "Ron de Bruin" wrote:
> >
> >> You can add one line
> >>
> >> Private Sub Calendar1_Click()
> >> ActiveCell.Value = CDbl(Calendar1.Value)
> >> ActiveCell.NumberFormat = "mm/dd/yyyy"
> >> ActiveCell.Select
> >> Calendar1.Visible = False
> >> End Sub
> >>
> >>
> >>
> >> --
> >>
> >> Regards Ron de Bruin
> >> http://www.rondebruin.nl/tips.htm
> >>
> >>
> >> "maperalia" <(E-Mail Removed)> wrote in message news:98988BDE-B4AD-4598-BCB7-(E-Mail Removed)...
> >> > Yes I do..
> >> >
> >> > "Ron de Bruin" wrote:
> >> >
> >> >> Do you use the code from my site ?
> >> >>
> >> >>
> >> >> --
> >> >>
> >> >> Regards Ron de Bruin
> >> >> http://www.rondebruin.nl/tips.htm
> >> >>
> >> >>
> >> >> "maperalia" <(E-Mail Removed)> wrote in message news:6B5E76CE-8571-4929-9081-(E-Mail Removed)...
> >> >> >I inserted a calender option in the cell "C12". It is working very good,
> >> >> > however, the calender does not desapear it is there all the time. I just want
> >> >> > the calender to appear when the cell "C12" is selected. Also, I would like to
> >> >> > calender desapear as soon the date is selected (without pressing enter).
> >> >> > Thanks in advance.
> >> >> > Maperalia
> >> >>
> >>

>
>

 
Reply With Quote
 
=?Utf-8?B?bWFwZXJhbGlh?=
Guest
Posts: n/a
 
      15th Jun 2007
Ron;
I downloaded the program you have in your web. However, I got the the
following message when I open it:
Could not open because the object is not in this machine.
So, how can I load the calender object in this machine?

Thanks.
Maperalia
"Ron de Bruin" wrote:

>
> Hi maperalia
>
> You can find a link on my page where you can download the control and
> also instructions how to install it.
> http://www.rondebruin.nl/calendar.htm
>
>
> --
>
> Regards Ron de Bruin
> http://www.rondebruin.nl/tips.htm
>
>
> "maperalia" <(E-Mail Removed)> wrote in message news:2187AD0B-0CF1-4C23-930C-(E-Mail Removed)...
> > Ron;
> > Thanks very much it is working perfectly!!.
> > However, I found that when I use it in another computer I have the following
> > error message:
> > Run-Time error ‘424’
> > Object Required
> > So, I went to Insert/Object at the tools menu and I found that the calendar
> > is not there.
> > In addition, I check that Microsoft Access is installed. So and do not how
> > to get the calendar now. Could you please tell me how to get the calendar?
> >
> > Thanks in advance.
> > Maperalia
> >
> >
> > "Ron de Bruin" wrote:
> >
> >> You can add one line
> >>
> >> Private Sub Calendar1_Click()
> >> ActiveCell.Value = CDbl(Calendar1.Value)
> >> ActiveCell.NumberFormat = "mm/dd/yyyy"
> >> ActiveCell.Select
> >> Calendar1.Visible = False
> >> End Sub
> >>
> >>
> >>
> >> --
> >>
> >> Regards Ron de Bruin
> >> http://www.rondebruin.nl/tips.htm
> >>
> >>
> >> "maperalia" <(E-Mail Removed)> wrote in message news:98988BDE-B4AD-4598-BCB7-(E-Mail Removed)...
> >> > Yes I do..
> >> >
> >> > "Ron de Bruin" wrote:
> >> >
> >> >> Do you use the code from my site ?
> >> >>
> >> >>
> >> >> --
> >> >>
> >> >> Regards Ron de Bruin
> >> >> http://www.rondebruin.nl/tips.htm
> >> >>
> >> >>
> >> >> "maperalia" <(E-Mail Removed)> wrote in message news:6B5E76CE-8571-4929-9081-(E-Mail Removed)...
> >> >> >I inserted a calender option in the cell "C12". It is working very good,
> >> >> > however, the calender does not desapear it is there all the time. I just want
> >> >> > the calender to appear when the cell "C12" is selected. Also, I would like to
> >> >> > calender desapear as soon the date is selected (without pressing enter).
> >> >> > Thanks in advance.
> >> >> > Maperalia
> >> >>
> >>

>
>

 
Reply With Quote
 
Peo Sjoblom
Guest
Posts: n/a
 
      15th Jun 2007
Did you go here and follow the instructions?

http://www.fontstuff.com/vba/vbatut07.htm



--
Regards,

Peo Sjoblom


"maperalia" <(E-Mail Removed)> wrote in message
news:8568F7FD-E0FD-413F-8563-(E-Mail Removed)...
> Ron;
> I downloaded the program you have in your web. However, I got the the
> following message when I open it:
> Could not open because the object is not in this machine.
> So, how can I load the calender object in this machine?
>
> Thanks.
> Maperalia
> "Ron de Bruin" wrote:
>
>>
>> Hi maperalia
>>
>> You can find a link on my page where you can download the control and
>> also instructions how to install it.
>> http://www.rondebruin.nl/calendar.htm
>>
>>
>> --
>>
>> Regards Ron de Bruin
>> http://www.rondebruin.nl/tips.htm
>>
>>
>> "maperalia" <(E-Mail Removed)> wrote in message
>> news:2187AD0B-0CF1-4C23-930C-(E-Mail Removed)...
>> > Ron;
>> > Thanks very much it is working perfectly!!.
>> > However, I found that when I use it in another computer I have the
>> > following
>> > error message:
>> > Run-Time error '424'
>> > Object Required
>> > So, I went to Insert/Object at the tools menu and I found that the
>> > calendar
>> > is not there.
>> > In addition, I check that Microsoft Access is installed. So and do not
>> > how
>> > to get the calendar now. Could you please tell me how to get the
>> > calendar?
>> >
>> > Thanks in advance.
>> > Maperalia
>> >
>> >
>> > "Ron de Bruin" wrote:
>> >
>> >> You can add one line
>> >>
>> >> Private Sub Calendar1_Click()
>> >> ActiveCell.Value = CDbl(Calendar1.Value)
>> >> ActiveCell.NumberFormat = "mm/dd/yyyy"
>> >> ActiveCell.Select
>> >> Calendar1.Visible = False
>> >> End Sub
>> >>
>> >>
>> >>
>> >> --
>> >>
>> >> Regards Ron de Bruin
>> >> http://www.rondebruin.nl/tips.htm
>> >>
>> >>
>> >> "maperalia" <(E-Mail Removed)> wrote in message
>> >> news:98988BDE-B4AD-4598-BCB7-(E-Mail Removed)...
>> >> > Yes I do..
>> >> >
>> >> > "Ron de Bruin" wrote:
>> >> >
>> >> >> Do you use the code from my site ?
>> >> >>
>> >> >>
>> >> >> --
>> >> >>
>> >> >> Regards Ron de Bruin
>> >> >> http://www.rondebruin.nl/tips.htm
>> >> >>
>> >> >>
>> >> >> "maperalia" <(E-Mail Removed)> wrote in message
>> >> >> news:6B5E76CE-8571-4929-9081-(E-Mail Removed)...
>> >> >> >I inserted a calender option in the cell "C12". It is working very
>> >> >> >good,
>> >> >> > however, the calender does not desapear it is there all the time.
>> >> >> > I just want
>> >> >> > the calender to appear when the cell "C12" is selected. Also, I
>> >> >> > would like to
>> >> >> > calender desapear as soon the date is selected (without pressing
>> >> >> > enter).
>> >> >> > Thanks in advance.
>> >> >> > Maperalia
>> >> >>
>> >>

>>
>>



 
Reply With Quote
 
=?Utf-8?B?bWFwZXJhbGlh?=
Guest
Posts: n/a
 
      15th Jun 2007
Peo;
Thanks veru much I followed the instructions and and it is working
perfectly!!!.

Thanks again.
Maperalia

"Peo Sjoblom" wrote:

> Did you go here and follow the instructions?
>
> http://www.fontstuff.com/vba/vbatut07.htm
>
>
>
> --
> Regards,
>
> Peo Sjoblom
>
>
> "maperalia" <(E-Mail Removed)> wrote in message
> news:8568F7FD-E0FD-413F-8563-(E-Mail Removed)...
> > Ron;
> > I downloaded the program you have in your web. However, I got the the
> > following message when I open it:
> > Could not open because the object is not in this machine.
> > So, how can I load the calender object in this machine?
> >
> > Thanks.
> > Maperalia
> > "Ron de Bruin" wrote:
> >
> >>
> >> Hi maperalia
> >>
> >> You can find a link on my page where you can download the control and
> >> also instructions how to install it.
> >> http://www.rondebruin.nl/calendar.htm
> >>
> >>
> >> --
> >>
> >> Regards Ron de Bruin
> >> http://www.rondebruin.nl/tips.htm
> >>
> >>
> >> "maperalia" <(E-Mail Removed)> wrote in message
> >> news:2187AD0B-0CF1-4C23-930C-(E-Mail Removed)...
> >> > Ron;
> >> > Thanks very much it is working perfectly!!.
> >> > However, I found that when I use it in another computer I have the
> >> > following
> >> > error message:
> >> > Run-Time error '424'
> >> > Object Required
> >> > So, I went to Insert/Object at the tools menu and I found that the
> >> > calendar
> >> > is not there.
> >> > In addition, I check that Microsoft Access is installed. So and do not
> >> > how
> >> > to get the calendar now. Could you please tell me how to get the
> >> > calendar?
> >> >
> >> > Thanks in advance.
> >> > Maperalia
> >> >
> >> >
> >> > "Ron de Bruin" wrote:
> >> >
> >> >> You can add one line
> >> >>
> >> >> Private Sub Calendar1_Click()
> >> >> ActiveCell.Value = CDbl(Calendar1.Value)
> >> >> ActiveCell.NumberFormat = "mm/dd/yyyy"
> >> >> ActiveCell.Select
> >> >> Calendar1.Visible = False
> >> >> End Sub
> >> >>
> >> >>
> >> >>
> >> >> --
> >> >>
> >> >> Regards Ron de Bruin
> >> >> http://www.rondebruin.nl/tips.htm
> >> >>
> >> >>
> >> >> "maperalia" <(E-Mail Removed)> wrote in message
> >> >> news:98988BDE-B4AD-4598-BCB7-(E-Mail Removed)...
> >> >> > Yes I do..
> >> >> >
> >> >> > "Ron de Bruin" wrote:
> >> >> >
> >> >> >> Do you use the code from my site ?
> >> >> >>
> >> >> >>
> >> >> >> --
> >> >> >>
> >> >> >> Regards Ron de Bruin
> >> >> >> http://www.rondebruin.nl/tips.htm
> >> >> >>
> >> >> >>
> >> >> >> "maperalia" <(E-Mail Removed)> wrote in message
> >> >> >> news:6B5E76CE-8571-4929-9081-(E-Mail Removed)...
> >> >> >> >I inserted a calender option in the cell "C12". It is working very
> >> >> >> >good,
> >> >> >> > however, the calender does not desapear it is there all the time.
> >> >> >> > I just want
> >> >> >> > the calender to appear when the cell "C12" is selected. Also, I
> >> >> >> > would like to
> >> >> >> > calender desapear as soon the date is selected (without pressing
> >> >> >> > enter).
> >> >> >> > Thanks in advance.
> >> >> >> > Maperalia
> >> >> >>
> >> >>
> >>
> >>

>
>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Desapear Mandy Microsoft Excel Crashes 0 25th Mar 2008 01:31 PM
Control don't desapear gatarossi@ig.com.br Microsoft Access 5 8th Jul 2007 03:04 PM
Directory/folder desapear... =?Utf-8?B?Sko=?= Windows XP General 0 20th Sep 2006 12:17 AM
Folder desapear... =?Utf-8?B?Sko=?= Windows XP Accessibility 0 19th Sep 2006 10:23 PM
help please, my antivirus icon desapear Betty Windows XP General 2 15th Jun 2004 09:48 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 04:52 PM.