Re: [OT] No global warming since 1995

2010-02-15 Thread Publius Maximus
On of the comments to that article hit it on the head. Consensus has nothing to do with AGW's scientific validity: it's about reproducibility. Missing data invalidates the conclusion, period, unless some other studies can reproduce the same results. - Publius On Sun, Feb 14, 2010 at 8:17 PM, Mich

Re: User sends me Access MDB, but I don't have Access

2010-02-15 Thread Ricardo Aráoz
MB Software Solutions, LLC wrote: > Hmmm...want to open and view screens and data structures, but I don't > have Access. Any alternative way to do this? I mean, is there a cool > utility like vRunFox for Access to achieve my goal of viewing? > > tia! > > Sorry to be so late on this one. Che

[NF] Windows Scripting and/or Windows Scheduled Tasks problem

2010-02-15 Thread Jarvis, Matthew
The dood that sat in this chair before me set up a windows script to copy files from on of our servers to a PC located elsewhere, as part of an emergency planning thing. These are forms the ER and/or hospital would need access to in case of network or other failure... The script works just fine

RE: [NF] Windows Scripting and/or Windows Scheduled Tasks problem

2010-02-15 Thread Dave Crozier
Matthew, Add the mappings into the script. I think that the problem is the mappings will only kick in if the user is logged in and if this is a scheduled task this may not be the case. Dave Crozier -Original Message- From: profox-boun...@leafe.com [mailto:profox-boun...@leafe.com] On Be

Re: [NF] Windows Scripting and/or Windows Scheduled Tasks problem

2010-02-15 Thread Malcolm Greene
Matt, Two ideas: 1. Convert the script to run as a Windows service. 2. Make sure the account that the scheduled task runs under never logs off. Malcolm ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo

Re: [OT] No global warming since 1995

2010-02-15 Thread Michael Madigan
Scientific consensus in 1492 was that the world was flat. Scientific consensus in the 1800s was that the gorilla didn't exist Scientific consensus in the 1930s was that the Coelacanth was extinct for millions of years. --- On Mon, 2/15/10, Publius Maximus wrote: > From: Publius Maximus > Su

RE: [NF] Windows Scripting and/or Windows Scheduled Tasks problem

2010-02-15 Thread Jarvis, Matthew
> -Original Message- > From: profoxtech-boun...@leafe.com [mailto:profoxtech-boun...@leafe.com] > On Behalf Of Dave Crozier > Sent: Monday, February 15, 2010 8:59 AM > To: profoxt...@leafe.com > Subject: RE: [NF] Windows Scripting and/or Windows Scheduled Tasks problem > > Matthew, > Add t

Re: [OT] No global warming since 1995

2010-02-15 Thread Stephen Russell
On Mon, Feb 15, 2010 at 11:28 AM, Michael Madigan wrote: > Scientific consensus in 1492 was that the world was flat. > > Scientific consensus in the 1800s was that the gorilla didn't exist > > Scientific consensus in the 1930s was that the Coelacanth  was extinct for > millions of years. > --

Re: [NF] Windows Scripting and/or Windows Scheduled Tasks problem

2010-02-15 Thread Michael Madigan
Map the drives in the beginning of the script again. If they are already mapped then it will just give you an error you can ignore make sure you are using the correct password in the scheduler so it can run the task. If you've recently changed your password, you have to change the password on

RE: [NF] Windows Scripting and/or Windows Scheduled Tasks problem

2010-02-15 Thread Jarvis, Matthew
> -Original Message- > From: profoxtech-boun...@leafe.com [mailto:profoxtech-boun...@leafe.com] > On Behalf Of Michael Madigan > Sent: Monday, February 15, 2010 9:58 AM > To: profoxt...@leafe.com > Subject: Re: [NF] Windows Scripting and/or Windows Scheduled Tasks problem > > Map the drive

Re: [NF] Windows Scripting and/or Windows Scheduled Tasks problem

2010-02-15 Thread Fred Taylor
IF DIRECTORY("x:\") * exists ELSE * does not exist ENDIF Fred On Mon, Feb 15, 2010 at 12:00 PM, Jarvis, Matthew wrote: > > -Original Message- > > From: profoxtech-boun...@leafe.com > [mailto:profoxtech-boun...@leafe.com] > > On Behalf Of Michael Madigan > > Sent: Monday, February 1

RE: [NF] Windows Scripting and/or Windows Scheduled Tasks problem

2010-02-15 Thread Jarvis, Matthew
> -Original Message- > From: profoxtech-boun...@leafe.com [mailto:profoxtech-boun...@leafe.com] > On Behalf Of Fred Taylor > Sent: Monday, February 15, 2010 11:06 AM > To: profoxt...@leafe.com > Subject: Re: [NF] Windows Scripting and/or Windows Scheduled Tasks problem > > IF DIRECTORY("x:

RE: [NF] Windows Scripting and/or Windows Scheduled Tasks problem

2010-02-15 Thread Tracy Pearson
EnumNetworkDrives Set oDrives = WshNetwork.EnumNetworkDrives WScript.Echo "Network drive mappings:" For i = 0 to oDrives.Count - 1 Step 2 WScript.Echo "Drive " & oDrives.Item(i) & " = " & oDrives.Item(i+1) Next -Original Message- From: prof

RE: [NF] Windows Scripting and/or Windows Scheduled Tasks problem

2010-02-15 Thread Alan Bourke
Regarding mapped drives: net use x: /delete net use x: \\myserver\myshare will reconnect with no errors. But why use network drives in the first place ? All of the CMD.EXE commands will work with UNC paths. -- Alan Bourke alanpbourke (at) fastmail (dot) fm

Re: [OT] No global warming since 1995

2010-02-15 Thread Ricardo Aráoz
Stephen Russell wrote: > On Mon, Feb 15, 2010 at 11:28 AM, Michael Madigan > wrote: > >> Scientific consensus in 1492 was that the world was flat. >> >> Scientific consensus in the 1800s was that the gorilla didn't exist >> >> Scientific consensus in the 1930s was that the Coelacanth was exti

Re: [NF] Windows Scripting and/or Windows Scheduled Tasks problem

2010-02-15 Thread Paul Hill
On Mon, Feb 15, 2010 at 4:58 PM, Dave Crozier wrote: > Matthew, > Add the mappings into the script. I think that the problem is the mappings > will only kick in if the user is logged in and if this is a scheduled task > this may not be the case. Even better, change the mappings to UNC paths. And