Re: [optimization] calendar week ISO 8601 / DIN 1355

2010-03-30 Thread Robert Cole
-Brill revolut...@derbrill.de wrote: Hi all, I needed to calculate the calendar week from a given date (as we do it in germany and I think also in the rest of europe). I quickly hacked together a function implementing some of the info found here: http://en.wikipedia.org/wiki/ISO_8601#Week_dates

[optimization] calendar week ISO 8601 / DIN 1355

2010-03-28 Thread Malte Pfaff-Brill
Hi all, I needed to calculate the calendar week from a given date (as we do it in germany and I think also in the rest of europe). I quickly hacked together a function implementing some of the info found here: http://en.wikipedia.org/wiki/ISO_8601#Week_dates If anyone has any pointers on how

Re: [optimization] calendar week ISO 8601 / DIN 1355

2010-03-28 Thread Sarah Reichelt
needed to calculate the calendar week from a given date (as we do it in germany and I think also in the rest of europe). I quickly hacked together a function implementing some of the info found here: http://en.wikipedia.org/wiki/ISO_8601#Week_dates If anyone has any pointers on how to make

Re: [optimization] calendar week ISO 8601 / DIN 1355

2010-03-28 Thread Malte Pfaff-Brill
Thanks for pointing me to your lib Sarah. Lots of useful stuff in there. If only gems like these were a little easier to find. *sigh* Cheers, Malte ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe,

Re: [optimization] calendar week ISO 8601 / DIN 1355

2010-03-28 Thread Sarah Reichelt
On Mon, Mar 29, 2010 at 8:00 AM, Malte Pfaff-Brill revolut...@derbrill.de wrote: Thanks for pointing me to your lib Sarah. Lots of useful stuff in there. If only gems like these were a little easier to find. *sigh* I'm terrible at putting things on RevOnline - I have a publishing system set up

Re: an annual calendar somewhere? (done)

2010-03-02 Thread Andre.Bisseret
Bonjour, Thanks a lot to Robert, Zrypt, Richard, Bernd who provided very helpful material and the others who chimed in helping to push along :-) I have now an annual calendar with 12 lines, one for each month. The days of weeks are in a separate field at the top of the display

Re: an annual calendar somewhere?

2010-03-01 Thread Andre.Bisseret
Bonjour Zryip, Le 27 févr. 10 à 20:21, zryip theSlug a écrit : … … To fix this bug, replace the pad part by this new portion: -- Pad beginning with empty days: put createDate(tYear,tMonthNumber,1) into tStartDay convert tStartDay to dateitems get last item of tStartDay if

Re: an annual calendar somewhere?

2010-03-01 Thread Andre.Bisseret
Bonjour Robert, Le 28 févr. 10 à 23:26, Robert Cole a écrit : André: I continue to have fun with your calendar question. Am very glad to hear that :-) I just uploaded another stack called Calendar Lines that produces a one-line-per-month format. I downloaded it; really nice look

Re: an annual calendar somewhere?

2010-03-01 Thread BNig
André, I haven't tried to select a range of dates, yet. I tried but seems not possible in a table field (?) in the property inspector for the field of stack calendar lines go to tables, unselect crevTable, than in the basic properties make shure lock text is true and traversal on is checked

Re: an annual calendar somewhere?

2010-03-01 Thread Andre.Bisseret
Le 1 mars 10 à 12:06, BNig a écrit : André, I haven't tried to select a range of dates, yet. I tried but seems not possible in a table field (?) in the property inspector for the field of stack calendar lines go to tables, unselect crevTable, than in the basic properties make shure

Re: an annual calendar somewhere?

2010-02-28 Thread Robert Cole
André: I continue to have fun with your calendar question. I just uploaded another stack called Calendar Lines that produces a one-line-per-month format. It also allows you to transpose the calendar into a one-column-per- month. I wrote a transpose function that uses the split command

Re: an annual calendar somewhere?

2010-02-27 Thread Andre.Bisseret
Bonjour, 2010/2/26 Richard Gaskin ambassa...@fourthworld.com: FWIW, here's a a function I pulled out of my archives which is a sort of variant of Cal in native RevTalk, making a single month from a date passed to it. I'll leave it as an exercise to the user to make a year out of it if

Re: an annual calendar somewhere?

2010-02-27 Thread Andre.Bisseret
to improve the Richard's solution like this: function Cal pDate, pFirstDayWeek set useSystemDate to true -- Returns a plain-text calendar representation of -- the month the date specified in pDate is in. -- If no month is provided it uses the current -- month. Month and day names use

Re: an annual calendar somewhere?

2010-02-27 Thread zryip theSlug
2010/2/27 Andre.Bisseret andre.bisse...@inria.fr: Bonjour Zryip, Starting from your very nice script, I am modifying it so that I obtain one month per line. I managed to get the days of weeks repeated five times separated by tab in the first line of the field (with tab stops in it)  I

Re: an annual calendar somewhere? - French Version

2010-02-26 Thread Francis Nugent Dixon
Hi from Beautiful Brittany, I played with zryip theSlug's code for all of 30 seconds, replace ncal command by cal 2010, corrected the line ending errors, corrected the month of August, and it all works fine for me. I'm on 10.5.8. Merci Monsieur zryip theSlug Francis on mouseUp local

Re: an annual calendar somewhere?

2010-02-26 Thread Andre.Bisseret
Thank you much Bob for this nice calendar. Also, thanks to the others who added comments, results of trials and elaborated. I was not waiting for such a rush on this topic ;-)) However, my problem is not solved with this kind of layout. Mostly I need that the user be able to highlight

Re: an annual calendar somewhere?

2010-02-26 Thread Richard Gaskin
-- Returns a plain-text calendar representation of -- the month the date specified in pDate is in. -- If no month is provided it uses the current -- month. Month and day names use the user's current -- system settings. -- -- Use current date as default: if pDate is empty then put the date

Re: an annual calendar somewhere?

2010-02-26 Thread zryip theSlug
2010/2/26 Brian Yennie bri...@qldlearning.com: According to the ncal docs, the country code has nothing to do with language, just Gregorian dates:    -s country_code            Assume the switch from Julian to Gregorian Calendar at the date            associated with the country_code

Re: an annual calendar somewhere?

2010-02-26 Thread zryip theSlug
language. Plus, a second difficulty exists: the week don't starts necessary a Sunday but a Monday. So I try to improve the Richard's solution like this: function Cal pDate, pFirstDayWeek set useSystemDate to true  -- Returns a plain-text calendar representation of  -- the month the date

Re: an annual calendar somewhere?

2010-02-26 Thread zryip theSlug
2010/2/26 Andre.Bisseret andre.bisse...@inria.fr: Thank you much Bob for this nice calendar. Also, thanks to the others who added comments, results of trials and elaborated. I was not waiting for such a rush on this topic ;-)) However, my problem is not solved with this kind of layout

an annual calendar somewhere?

2010-02-25 Thread Andre.Bisseret
Bonjour, I need an annual calendar, one which could be display entirely on one card of a stack. Something like 12 rows, one for each months. Does someone know if that has already been done with runrev and if it is possible to get it somewhere? Thanks a lot in advance for any clue Best

RE: an annual calendar somewhere?

2010-02-25 Thread Robert Cole
André: On Mac OS X, I use a simple shell command to put the calendar into a field . put shell(cal 2010) into field Calendar Field Be sure to use a monospace font like Courier in the field Bob - - - - - - - Bonjour, I need an annual calendar, one which could be display entirely on one card

Re: an annual calendar somewhere?

2010-02-25 Thread J. Landman Gay
Robert Cole wrote: André: On Mac OS X, I use a simple shell command to put the calendar into a field . put shell(cal 2010) into field Calendar Field Be sure to use a monospace font like Courier in the field !!! Had no idea. That is too cool. -- Jacqueline Landman Gay | jac

Re: an annual calendar somewhere?

2010-02-25 Thread zryip theSlug
2010/2/25 Robert Cole bobc...@earthlink.net: André: On Mac OS X, I use a simple shell command to put the calendar into a field .     put shell(cal 2010) into field Calendar Field Be sure to use a monospace font like Courier in the field Bob Thanks for the tip, Bob ;) More infos for using

Re: an annual calendar somewhere?

2010-02-25 Thread Yves COPPE
Le 25-févr.-10 à 20:45, Robert Cole a écrit : André: On Mac OS X, I use a simple shell command to put the calendar into a field . put shell(cal 2010) into field Calendar Field Be sure to use a monospace font like Courier in the field Bob - - - - - - - Re, ye ! one question

Re: an annual calendar somewhere?

2010-02-25 Thread zryip theSlug
2010/2/25 Yves COPPE yvesco...@skynet.be: Re, ye ! one question : is it possible to get the calendar in the chosen language in the preferences system (in my case : french) ? Greetings. Yves COPPE yvesco...@skynet.be Yves, Not sure that the calendar is stored in different

Re: an annual calendar somewhere?

2010-02-25 Thread Richmond Mathewson
AND . . . it works on Linux as well . . . :) Presumably this is because of the common UNIXy base of both Mac OS X and Linux. So, to get hold of a Julian calendar would involve mucking around with the data that arrived in the display field. And an Islamic, Jewish, Buddhist or Hindu

Re: an annual calendar somewhere?

2010-02-25 Thread Yves COPPE
Le 25-févr.-10 à 21:56, zryip theSlug a écrit : 2010/2/25 Yves COPPE yvesco...@skynet.be: one question : is it possible to get the calendar in the chosen language in the preferences system (in my case : french) ? Not sure that the calendar is stored in different languages. For french

Re: an annual calendar somewhere?

2010-02-25 Thread Richmond Mathewson
For an understanding of the parameters of the calendar do this: put shell (call -500) into fld Calendar Field that will generate an error (hard luck Herodotus!) and details of all the parameters . . . ___ use-revolution mailing list use-revolution

Re: an annual calendar somewhere?

2010-02-25 Thread zryip theSlug
2010/2/25 Yves COPPE yvesco...@skynet.be: Le 25-févr.-10 à 21:56, zryip theSlug a écrit : 2010/2/25 Yves COPPE yvesco...@skynet.be: one question : is it possible to get the calendar in the chosen language in the preferences system (in my case : french) ? Not sure that the calendar

Re: an annual calendar somewhere?

2010-02-25 Thread J. Landman Gay
zryip theSlug wrote: put tTheCal into fld Calendar Field end mouseUp And now? When I tried to use ncal on OS X, the command wasn't found. It seems it is unsupported there. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http

Re: an annual calendar somewhere?

2010-02-25 Thread zryip theSlug
2010/2/25 J. Landman Gay jac...@hyperactivesw.com: zryip theSlug wrote:   put tTheCal into fld Calendar Field end mouseUp And now? When I tried to use ncal on OS X, the command wasn't found. It seems it is unsupported there. -- Jacqueline Landman Gay         |     jac

Re: an annual calendar somewhere?

2010-02-25 Thread Yves COPPE
(item x of tTheMonth) with (item x of tTheFrenchMonth) in tTheCal end repeat -- Translate day repeat with x = 1 to number of items in tTheDay replace (item x of tTheDay) with (item x of tTheFrenchDay) in tTheCal end repeat put tTheCal into fld Calendar Field end mouseUp

Re: an annual calendar somewhere?

2010-02-25 Thread Yves COPPE
Le 25-févr.-10 à 22:51, zryip theSlug a écrit : I'm on OS X too, and it seems that the ncal and cal commands are linked. When you type: put shell(man ncal) into fld Calendar Field What do you get? re, I get this : No manual entry for ncal Greetings. Yves COPPE yvesco...@skynet.be

Re: an annual calendar somewhere?

2010-02-25 Thread zryip theSlug
of items in tTheMonth     replace (item x of tTheMonth) with (item x of tTheFrenchMonth) in tTheCal  end repeat  -- Translate day  repeat with x = 1 to number of items in tTheDay     replace (item x of tTheDay) with (item x of tTheFrenchDay) in tTheCal  end repeat  put tTheCal into fld Calendar

Re: an annual calendar somewhere?

2010-02-25 Thread zryip theSlug
) in tTheCal  end repeat  put tTheCal into fld Calendar Field end mouseUp And now? Re  put shell(ncal -s FR 2010) into tTheCal error  : /bin/sh: line 1: ncal: command not found In the manual for the cal command, I found this: HISTORY A cal command appeared in Version 5 ATT UNIX

Re: an annual calendar somewhere?

2010-02-25 Thread J. Landman Gay
zryip theSlug wrote: Maybe you are in 10.4? It does seem to be OS-related. On my Snow Leopard machine, ncal is supported. On my plain Leopard Mac, it is not. But even on Snow Leopard I don't see French, the calendar is returned in English. -- Jacqueline Landman Gay | jac

Re: an annual calendar somewhere?

2010-02-25 Thread zryip theSlug
2010/2/25 J. Landman Gay jac...@hyperactivesw.com: zryip theSlug wrote: Maybe you are in 10.4? It does seem to be OS-related. On my Snow Leopard machine, ncal is supported. On my plain Leopard Mac, it is not. But even on Snow Leopard I don't see French, the calendar is returned in English

Re: an annual calendar somewhere?

2010-02-25 Thread Brian Yennie
According to the ncal docs, the country code has nothing to do with language, just Gregorian dates: -s country_code Assume the switch from Julian to Gregorian Calendar at the date associated with the country_code. If not specified, ncal tries to guess

Re: an annual calendar somewhere?

2010-02-25 Thread Robert Cole
I created a small stack to show how I use a monthly calendar (using the shell command) and the mouseText function to pick a date. I just uploaded Calendar Picker to RevOnLine where it is now available for download. Please feel free to use this stack and refine the visual appearance. It can

Re: an annual calendar somewhere?

2010-02-25 Thread Yves COPPE
Le 25-févr.-10 à 23:05, zryip theSlug a écrit : put shell(ncal -s FR 2010) into tTheCal error : /bin/sh: line 1: ncal: command not found Greetings. Yves COPPE yvesco...@skynet.be Maybe you are in 10.4? Re, no, 10.5.7 Greetings. Yves COPPE yvesco...@skynet.be

Revolution iCal calendar

2009-07-06 Thread Mark Schonewille
Hello, I have added Malte's webinar to the Revolution iCal calendar. You can add the Revolution calendar to iCal by clicking the link webcal://runrev.info/ical/revolution.ics . You can also copy this link, choose Subscribe... from the Calendar menu in iCal and paste it into the dialog

Revolution Calendar

2009-03-24 Thread Mark Schonewille
Hi, I have put a Revolution calendar online. You can subscribe to the following URL: webcal://runrev.info/ical/revolution.ics using iCal or compatible software. For now, it has only one event, but you can let me know about important future Revolution-related events and I will add them

Re: Finding and replacing numbers in calendar day field

2008-11-29 Thread Mark MacKenzie
Hi Joe and Sarah. I had been working with the find and then replace functions but kept getting an insurmountable pattern error message. Sarah, your suggestion worked like a charm. the code snippet is as follows: on WriteEvent put the number of lines of field Month Events List into tFieldLines

Finding and replacing numbers in calendar day field

2008-11-28 Thread Mark MacKenzie
Hi all. I have been playing with the tutorial calendar and am having trouble adding a to me useful feature. I have a list field where day events are put along with the short date. I can grab the day number from this short date, line by line. Where I am having trouble is after finding

Re: Finding and replacing numbers in calendar day field

2008-11-28 Thread Joe Lewis Wilkins
MacKenzie wrote: Hi all. I have been playing with the tutorial calendar and am having trouble adding a to me useful feature. I have a list field where day events are put along with the short date. I can grab the day number from this short date, line by line. Where I am having trouble

Re: Finding and replacing numbers in calendar day field

2008-11-28 Thread Sarah Reichelt
I have been playing with the tutorial calendar and am having trouble adding a to me useful feature. I have a list field where day events are put along with the short date. I can grab the day number from this short date, line by line. Where I am having trouble is after finding the needed

problem with calendar tutorial

2008-11-25 Thread Mark Smith
Before I begin, Jacqueline suggested I let the other Mark Smith in this list know that I am not a doppleganger. We probably look nothing alike :-) That said, I am very new to this and just fooling around with some of the tutorial examples, in this case the first one, the calendar. All goes well

Re: problem with calendar tutorial

2008-11-25 Thread Sarah Reichelt
I import the image ok using the File menu command import as control (at least I think that is what I am to do). And then the image shows up. But I've not been able to figure out how you move it into the background group using the edit group control. When I select the image the edit group

Re: problem with calendar tutorial

2008-11-25 Thread Mark Smith
am very new to this and just fooling around with some of the tutorial examples, in this case the first one, the calendar. All goes well until I get to this point: You can create a background image in any graphic editing application such as Gimp or Photoshop then import it into Revolution

Re: problem with calendar tutorial

2008-11-25 Thread J. Landman Gay
Mark Smith wrote: Before I begin, Jacqueline suggested I let the other Mark Smith in this list know that I am not a doppleganger. We probably look nothing alike :-) Yay! You came! :) Personally I think we should give both of you pet names. I import the image ok using the File menu command

OT: Mark well [was: problem with calendar tutorial]

2008-11-25 Thread J. Landman Gay
Mark Smith wrote: I said only recently on this list, that one day all people will be called Mark. I didn't let on that all people would be called Mark Smith, as I felt that these things should be done in stages - but I see the plan is further along than I'd thought! I just googled Mark

Re: OT: Mark well [was: problem with calendar tutorial]

2008-11-25 Thread Joe Lewis Wilkins
Hey all, Any name is better than one of my lady friends whose last name is Penix (smile) Google that if you will. Joe Wilkins On Nov 25, 2008, at 7:48 PM, J. Landman Gay wrote: Mark Smith wrote: I said only recently on this list, that one day all people will be called Mark. I didn't

Re: Learning Rev3 - Calendar Tutorial Questions

2008-10-23 Thread rchilderic
Revolution use-revolution@lists.runrev.com Subject: Re: Learning Rev3 - Calendar Tutorial Questions Mark Srebnik wrote: 2. Good Way to Edit Background Group Across Multiple Cards Found myself editing February card and then realizing that this was probably a mistake, as I'd need to make

Re: Learning Rev3 - Calendar Tutorial Questions

2008-10-23 Thread rchilderic
. Fields in background groups have a property called sharedText which determines whether the text is the same on all cards or varies for each card. For labels and such, you usually want them shared. For other things (like the calendar dates) you don't. In this tutorial, you want to share field

Learning Rev3 - Calendar Tutorial Questions

2008-10-20 Thread Mark Srebnik
off of old floppy disk, tutorials are outdated, and other issues...but wading through it all Meanwhile, trying to get through calendar tutorial that comes with Rev and have some questions please 1. Right Way to Copy Background Group to Other Cards I made first the calendar background

Re: Learning Rev3 - Calendar Tutorial Questions

2008-10-20 Thread Judy Perry
of old floppy disk, tutorials are outdated, and other issues...but wading through it all Meanwhile, trying to get through calendar tutorial that comes with Rev and have some questions please 1. Right Way to Copy Background Group to Other Cards I made first the calendar background using

Re: Learning Rev3 - Calendar Tutorial Questions

2008-10-20 Thread Joe Lewis Wilkins
to use! B. Tutorials Have been trying to go through several tutorials, but have hit a few snags here and theretrying to get old HC files off of old floppy disk, tutorials are outdated, and other issues...but wading through it all Meanwhile, trying to get through calendar tutorial

Re: Learning Rev3 - Calendar Tutorial Questions

2008-10-20 Thread Joe Lewis Wilkins
Yeah, Mark, I forgot that since it wasn't in front of me. Thanks, Judy. Joe Wilkins On Oct 20, 2008, at 11:42 AM, Judy Perry wrote: Mark, For those items that are largely unchanged across the various months/cards, did you check the little tick for behave like a background in the properties

Re: Learning Rev3 - Calendar Tutorial Questions

2008-10-20 Thread Mark Srebnik
of the week table. Thanks, Mark -Original Message- From: Joe Lewis Wilkins [EMAIL PROTECTED] Sent: Oct 20, 2008 11:51 AM To: How to use Revolution use-revolution@lists.runrev.com Subject: Re: Learning Rev3 - Calendar Tutorial Questions Yeah, Mark, I forgot that since it wasn't in front

Re: Learning Rev3 - Calendar Tutorial Questions

2008-10-20 Thread J. Landman Gay
Mark Srebnik wrote: Then followed the instructions, adding navigation buttons at bottom of card and added them to background group. Then I created a new card and changed the text heading from January to February. That's when I noticed that the days of the week were not showing up in the days of

Re: Learning Rev3 - Calendar Tutorial Questions

2008-10-20 Thread J. Landman Gay
sharedText which determines whether the text is the same on all cards or varies for each card. For labels and such, you usually want them shared. For other things (like the calendar dates) you don't. In this tutorial, you want to share field text for things like the days of the week

Re: Learning Rev3 - Calendar Tutorial Questions

2008-10-20 Thread Mark Srebnik
: Learning Rev3 - Calendar Tutorial Questions Mark Srebnik wrote: 2. Good Way to Edit Background Group Across Multiple Cards Found myself editing February card and then realizing that this was probably a mistake, as I'd need to make the same corrections to about 9-10 more cards...one

Sarah's Calendar

2008-06-25 Thread Jim Sims
I cannot load Sarah's web page (http://www.troz.net/) to check the version of her Calendar object. Would some kind person tell me if the latest version of her Calendar is v1.4? sims ___ use-revolution mailing list use-revolution@lists.runrev.com

Re: Sarah's Calendar

2008-06-25 Thread Devin Asay
On Jun 25, 2008, at 6:32 AM, Jim Sims wrote: I cannot load Sarah's web page (http://www.troz.net/) to check the version of her Calendar object. Would some kind person tell me if the latest version of her Calendar is v1.4? The latest one I see is v. 1.5. The download link is http

Re: Sarah's Calendar

2008-06-25 Thread Jim Sims
On Jun 25, 2008, at 4:15 PM, Devin Asay wrote: The latest one I see is v. 1.5. The download link is http://www.troz.net/Rev/libraries/Calendar.rev.gz . Regards, Devin Thanks Devin! sims ___ use-revolution mailing list

Re: google calendar API

2007-08-22 Thread BILL HUMPHREY
Does anyone know how to post to a google calendar using RunRev on Mac OS X instead of Win XP? _ Thanks a lot, Mark! Using curl does the trick. However, I would appreciate if this worked without an external shell command. BTW, I have Rev 2.8.0 studio and the docs lack a hint to the missing

google calendar API

2007-06-05 Thread william humphrey
Hi Has anyone been accessing google calendar, inserting events, using runrev from macos? I'd like to copy someone's code for doing this. Thanks, Bill _ Thanks a lot, Mark! Using curl does the trick. However, I would appreciate if this worked without an external shell command. BTW, I

Calendar stacks fix

2007-05-07 Thread Sarah Reichelt
Hi All, The new date time features of the Rev 2.8.1 betas have revealed a bug in my Calendar stacks. I'm not quite sure how they worked before as I had a line that converted a date from short english date to long system date. The supplied date was actually in date items format, so it really

Re: calendar function anyone ?

2007-02-14 Thread jbv
Hi all, Thanks for your reply. Converting the date to dateItems actually crossed my mind, but are you sure the convert function is 100% bug free ? AFAIR, last time I used it in a cgi script, there was a 60 min difference in some conversions (unfortunately I don't remember in which cases, but I

Re: calendar function anyone ?

2007-02-14 Thread hibis . jmr
I also notice a difference of 60 min only at a few dates (Mac OS X). I have found that it happens when changing from winter date to summer date (in France) The foreign system dates seems not to be well managed by revolution Jean-Marc Le 14 févr. 2007, à 11:43, jbv a écrit : Hi all, Thanks

Re: calendar function anyone ?

2007-02-14 Thread Sarah Reichelt
When you are working with dates only, the dateItems will usually show the hour as 2 am, but sometimes as 1 am depending on daylight savings. To avoid any potential cross-overs, when working with dates alone, I tend to supply a default time of midday. The convert command will not mess this up by

calendar function anyone ?

2007-02-13 Thread jbv
Hi all, Does anyone know of a function to find out, for instance, which day of the week was sept. 18th 1918 or which day of week will be dec. 5th 2025 ? Thanks, JB ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url

Re: calendar function anyone ?

2007-02-13 Thread Gordon Tillman
JB you can try something like this... for example, in the message box: convert 1918,9,18,0,0,0,0 from dateItems to dateItems put it This returns: 1918,9,18,1,0,0,4 Note how it fixes the day of the week in the date items to 4 (Wednesday) Alternatively you can specify the output as

Re: calendar function anyone ?

2007-02-13 Thread Sarah Reichelt
Does anyone know of a function to find out, for instance, which day of the week was sept. 18th 1918 or which day of week will be dec. 5th 2025 ? If you convert a date to dateItems, it becomes a comma-delimited list of 7 items. The last one is a number indicating the day of the week. Then you

Re: calendar function anyone ?

2007-02-13 Thread Richard Gaskin
jbv wrote: Does anyone know of a function to find out, for instance, which day of the week was sept. 18th 1918 or which day of week will be dec. 5th 2025 ? function GetWeekday pDate set the centurycutoff to (char -2 to -1 of pDate)-1 convert pDate to dateitems return line (last item of

Re: calendar function anyone ?

2007-02-13 Thread Chipp Walters
the weekdayNames ?? Good one, have to remember that :-) ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: [ANN] altAnswerDate wrapper for Sean Shao's calendar

2006-08-10 Thread Peter Brigham
Thanks to both of you -- Chip Ken. I started using calendarWidget100 and then I discovered a missing close-quote in my original little script, so I corrected that and tried it again in the msg box. This time I got no error message but nothing happened. When I put it into a button it

Re: [ANN] altAnswerDate wrapper for Sean Shao's calendar

2006-08-09 Thread Peter Brigham
calendar show, then return the selected date to one of my handlers, without showing either the full altAnswerDateHarness or calendarWidget100 windows. So how do I do that? Obviously, I'm missing something obvious -- Peter Peter M. Brigham [EMAIL PROTECTED] http://home.comcast.net

Re: [ANN] altAnswerDate wrapper for Sean Shao's calendar

2006-08-09 Thread Ken Ray
On 8/9/06 9:24 AM, Peter Brigham [EMAIL PROTECTED] wrote: in the multiline message box, but it returns an error: Message execution error: Error description: Handler: can't find handler Peter, try it in a button - there are some times when the Message Box has trouble executing stuff that

Re: [ANN] altAnswerDate wrapper for Sean Shao's calendar

2006-08-09 Thread Chipp Walters
Peter, You need to start using calendarWidget100 (you don't need the altAnswerDateHarness-- it's just for the demo) Try that and see if it doesn't work. -Chipp ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to

Re: [ANN] altAnswerDate wrapper for Sean Shao's calendar widget

2006-08-07 Thread Devin Asay
Extremely cool! Thanks Sean and Chipp! Devin On Aug 5, 2006, at 6:39 PM, Chipp Walters wrote: altAnswerDate This is a free wrapper for Sean Shao's fine calendarWidget which can be called simply like an answer dialog box. (Thanks again Sean for a great calendar widget) Instructions

[ANN] altAnswerDate wrapper for Sean Shao's calendar widget

2006-08-05 Thread Chipp Walters
altAnswerDate This is a free wrapper for Sean Shao's fine calendarWidget which can be called simply like an answer dialog box. (Thanks again Sean for a great calendar widget) Instructions on use are found on the stack. Not tested on Mac yet, but it should work fine (let me know if it doesn't

Re: [ANN] altAnswerDate wrapper for Sean Shao's calendar widget

2006-08-05 Thread Sean Shao
This is a free wrapper for Sean Shao's fine calendarWidget umm.. It's Shao Sean (I'm a traditionalist ;-) but otherwise thanks for the useful add-on (again :-) Not tested on Mac yet, but it Works fine on my PPC eMac I just might make a business out of leveraging Sean's code! hehe..

Re: [ANN] Time Widget 1.0.0 and Calendar Widget 1.0.0

2006-07-24 Thread Malte Brill
Very nice! Many thanks for these. All the best, Malte ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: [ANN] Time Widget 1.0.0 and Calendar Widget 1.0.0

2006-07-24 Thread Klaus Major
Hi Sean, Time Widget is an object that allows a user to enter in a time visually. Calendar Widget is an object that allows a user to enter in a date visually. Both are available at www.shaosean.tk very, very nice and extremely useful! Thanks a lot for sharing this. Best from very hot

[ANN] Time Widget 1.0.0 and Calendar Widget 1.0.0

2006-07-23 Thread Sean Shao
Time Widget is an object that allows a user to enter in a time visually. Calendar Widget is an object that allows a user to enter in a date visually. Both are available at www.shaosean.tk _ Express yourself instantly with MSN

Shao Sean Calendar Object Question

2006-04-18 Thread Jeff Honken
Is anyone using Shao Sean's Calendar Object ? I've downloaded it but in the stack I keep getting a Can't find handler Error when I change months. It's for the object calendarNextMonth. Is there something I'm missing? I can't find a doc file for the stack so I'm slightly in the dark

Re: Shao Sean Calendar Object Question

2006-04-18 Thread sims
Is anyone using Shao Sean's Calendar Object ? I've downloaded it but in the stack I keep getting a Can't find handler Error when I change months. It's for the object calendarNextMonth. Is there something I'm missing? I can't find a doc file for the stack so I'm slightly in the dark

Re: Shao Sean Calendar Object Question

2006-04-18 Thread Karen
On 18 Apr 2006, at 18:00, Jeff Honken wrote: Message: 6 Date: Tue, 18 Apr 2006 10:33:39 -0700 From: Jeff Honken [EMAIL PROTECTED] Subject: Shao Sean Calendar Object Question Is anyone using Shao Sean's Calendar Object ? I've downloaded it but in the stack I keep getting a Can't find handler

Calendar fix, etc

2006-04-18 Thread Marty Knapp
I just fixed a couple of bugs in my calendar stack and uploaded to my user space (MartyKnapp). While I was at it I uploaded a new version my my custom slider stack. It has a few refinements and a new gear shift knob icon. If you need to roll your own sliders, either for look or functionality

Re: Shao Sean Calendar Object Question

2006-04-18 Thread Sean Shao
I will attempt to make an updated version in the future, but for now that should be able to fulfill your needs (or you can modify it to fulfill them =) -the ghost of sean _ Is your PC infected? Get a FREE online computer virus

Re: Shao Sean Calendar Object Question

2006-04-18 Thread Sarah Reichelt
Is anyone using Shao Sean's Calendar Object ? I've downloaded it but in the stack I keep getting a Can't find handler Error when I change months. It's for the object calendarNextMonth. Is there something I'm missing? I can't find a doc file for the stack so I'm slightly in the dark

Please: Porting the old Hypercard Calendar to Rev,- help needed!

2006-02-01 Thread Kresten Bjerg
Hi Concerning calendars and widgets : We have tried to convert the old hypercard calendar to rev, which implied splitting the two backgrounds into two stacks. It works OK with the Weekly part, which plays a central role in our freeware diary Phenomenalog,which is approaching publication

Re: Synching Calendar Events Between Rev and Outlook

2006-01-31 Thread Jim Carwardine
it's own calendar in it. Is there a way to access the Outlook database and synchronize events between my calendar and Outlook? Jim Yes, you can use VB Script to communicate to Outlook; I have an example that works with Excel that you can adapt: http://www.sonsothunder.com/devres

Re: Synching Calendar Events Between Rev and Outlook

2006-01-31 Thread Ken Ray
On 1/26/06 10:54 AM, Jim Carwardine [EMAIL PROTECTED] wrote: That's really great. Thanks, Ken. Can I imply from your post that this is a good way to communication with any MS Office app. Would that include MS Project?... Jim Yes, in fact I just posted a new tip that is specifically for

Porting HC Calendar to Rev,- help needed!

2006-01-30 Thread Kresten Bjerg
Hi Concerning calendars and widgets : We have tried to convert the old hypercard calendar to rev, which implied splitting it into two stacks. . It works OK with the Weekly part, which plays a central role in our freeware diary Phenomenalog, which is approaching publication. But the SixMonthly

Re: Synching Calendar Events Between Rev and Outlook

2006-01-26 Thread Jim Carwardine
it's own calendar in it. Is there a way to access the Outlook database and synchronize events between my calendar and Outlook? Jim Yes, you can use VB Script to communicate to Outlook; I have an example that works with Excel that you can adapt: http://www.sonsothunder.com/devres

Re: Synching Calendar Events Between Rev and Outlook

2006-01-26 Thread Ken Ray
On 1/26/06 6:05 PM, Jim Carwardine [EMAIL PROTECTED] wrote: That's really great. Thanks, Ken. Can I imply from your post that this is a good way to communication with any MS Office app. Would that include MS Project?... Jim Yup - anything that responds to VB Scripting from the outside will

Re: Calendar widget

2006-01-26 Thread Dan Shafer
I used ShaoSean's objCalendar in my To Do app in my book. Really nice. On 1/25/06, Marty Knapp [EMAIL PROTECTED] wrote: Hey Devin, ShaoSean also has an excellent one, objCalendar, that I've used. His web site is http://www.shaosean.tk/ , but I couldn't find it there. Anyone have a link

  1   2   >