Login | |
|
 |
RE: Family Calendar - 11/8/2007 2:35:33 PM
|
|
 |
|
| |
Meg
Posts: 125
Score: 2
Joined: 7/13/2006
From: Australia
Status: offline
|
That's great !
|
|
| |
|
|
|
 |
RE: Family Calendar - 11/9/2007 9:08:54 PM
|
|
 |
|
| |
wanghuok
Posts: 17
Score: 0
Joined: 10/13/2005
Status: offline
|
this script cant run successfully on my computer. is there no CalendarACTIVEX on my computer. and where i can download it.
_____________________________
I come from China,This is a very beautiful country. Welcome to China.
|
|
| |
|
|
|
 |
RE: Family Calendar - 11/9/2007 11:04:42 PM
|
|
 |
|
| |
Meg
Posts: 125
Score: 2
Joined: 7/13/2006
From: Australia
Status: offline
|
Have you copied the script into a file with a HTA extention? i.e. calendar.hta I noticed you get an activeX warning when it is run from html
|
|
| |
|
|
|
 |
RE: Family Calendar - 11/10/2007 1:18:18 AM
|
|
 |
|
| |
wanghuok
Posts: 17
Score: 0
Joined: 10/13/2005
Status: offline
|
I run the script with a HTA extention for sure. and it gives me a warning indicate that Object does not support this attribute or method "calendar1.value" when i run it .
_____________________________
I come from China,This is a very beautiful country. Welcome to China.
|
|
| |
|
|
|
 |
RE: Family Calendar - 11/10/2007 1:20:57 AM
|
|
 |
|
| |
Meg
Posts: 125
Score: 2
Joined: 7/13/2006
From: Australia
Status: offline
|
Sorry I don't know, I only can test with XP, maybe it works funny on a different operating system. Good Luck.
|
|
| |
|
|
|
 |
RE: Family Calendar - 11/13/2007 5:31:52 AM
|
|
 |
|
| |
mcds99
Posts: 424
Score: 4
Joined: 2/28/2006
Status: offline
|
Google mscal.ocx this is the active X control the runs the calendar. Down load and put it in to the C:\Windows folder. Run this command "regsvr32 mscal.ocx /s" this will register the active X control, without any popups, "/s for silent". It should work after that.
_____________________________
Sam Keep it Simple Make it Fun KiSMiF
|
|
| |
|
|
|
 |
RE: Family Calendar - 11/19/2007 12:45:51 AM
|
|
 |
|
| |
mbouchard
Posts: 1862
Score: 14
Joined: 5/15/2003
From: USA
Status: offline
|
Just took a look at this and it looks cool, but I do have a stupid question. Why not just use Google Calendar? Myself, my wife and 2 kids each have a calendar, I can edit all calendars and my wife can edit hers and the kids. Each one is color coded so it is easy to see who each entry is for.
_____________________________
Mike For useful Scripting links see the Read Me First stickey! Always remember Search is your friend.
|
|
| |
|
|
|
 |
RE: Family Calendar - 11/21/2007 6:55:20 AM
|
|
 |
|
| |
mcds99
Posts: 424
Score: 4
Joined: 2/28/2006
Status: offline
|
I guess I just don't like having my family data on googles email/calendar system. Once you put something on a computer system you don't own and have in your house it belongs to them (whoever they are). They can do anything they want to do with the information stored on their systems. I know this sounds paranoid but it gives me the hebegebes to know someone else know where my kids are at any given time. I own the server I put my stuff on and it is in my house. It would also imply that we let our kids use email, we restrict the use of technology including TV at home because it's not just fun and games. My kids have their own computers in their rooms. The doors are open and we can pop in at any time, it's about our kids trusting our judgement in what they do not about us trusting them to do the right thing. Kids make mistakes they click on everything. quote:
ORIGINAL: mbouchard Just took a look at this and it looks cool, but I do have a stupid question. Why not just use Google Calendar? Myself, my wife and 2 kids each have a calendar, I can edit all calendars and my wife can edit hers and the kids. Each one is color coded so it is easy to see who each entry is for.
_____________________________
Sam Keep it Simple Make it Fun KiSMiF
|
|
| |
|
|
|
 |
RE: Family Calendar - 11/23/2007 7:15:15 AM
|
|
 |
|
| |
Fredledingue
Posts: 337
Score: 0
Joined: 5/9/2005
From:
Status: offline
|
Line 23: SET dir = fsObj.GetFolder("D:\_Script\_vbscript\_Scripts\Calendar\DateData\") Hard coded path: Doesn't exists on my computer Line 31 to 41 Sub GetResolution strComputer = "." Set objWMIService = GetObject("winmgmts:" & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colItems = objWMIService.ExecQuery ("Select * from Win32_DisplayConfiguration") For Each objItem In colItems HRez = objItem.PelsWidth VRez = objItem.PelsHeight Next If HRez > 1280 Then HRez = 1280 If VRez > 1024 Then VRez = 1024 End Sub This is completely useless, please use this instead: HRez = window.screen.width VRez = window.screen.height
_____________________________
Fred
|
|
| |
|
|
|
|
|