Maybe not. Maybe he just forgot to thank you...
/Al
"David Candy" <.> wrote in message
Guess I wasted my time with this dickwad.
--
----------------------------------------------------------------------------
----------------------
How to lose a war in Iraq
http://webdiary.com.au/cms/?q=node/1335#comment-48641
=================================================
"David Candy" <.> wrote in message
I can tell you the command line for the first dialog you can see.
But that
seems to be it. A briefcase is a ordinary folder with two files in
it.
This code can do it. As it is it enumerates every command. For me
Update All
is 2. So
' objItemVerbs.item(2).doit
will do it if you run the rest of the code. There may be a simplier
way -
see underneath this way (I'll let you experiment).
set objShell = CreateObject("Shell.Application")
set objFolder2 = objShell.Namespace("C:\Documents and Settings\David
Candy\Desktop\New Folder")
set objFolderItem = objFolder2.Self
set objItemVerbs = objFolderItem.Verbs
For i = 0 to objItemVerbs.count -1
A=objItemVerbs.item(i)
msgbox A & vbcrlf & i
' objItemVerbs.item(i).doit
i = i + 1
Next
Or Try these two ways
Set objShell = CreateObject("Shell.Application")
Set MyComp=objShell.NameSpace(17)
Set CD=MyComp.ParseName("E:\")
Set Context=CD.Verbs
CD.InvokeVerb "E&ject"
'This line on are comments only
'Note if a letter is underlined you must insert an ampersand before
it.
'Normally only the first line and the line below is needed for most
verbs.
Eject is different.
'objshell.ShellExecute "e:" ,,,"E&ject"
'object.ShellExecute(sFile [,vArguments] [,vDirectory] [,vOperation]
[,vShow])
--
----------------------------------------------------------------------------
----------------------
How to lose a war in Iraq
http://webdiary.com.au/cms/?q=node/1335#comment-48641
=================================================
David Trimboli said:
To temporarily deal with a network slowness issue, we've set up a
user
with a briefcase to work locally, and to synchronize with his
network
files when he's done. (We're not using Offline Files because he's
not
actually going offline.)
I thought it would help if I could find a way to synchronize the
briefcase automatically, either as a logon and logoff script or as
a
Scheduled Task. Some searching on the Internet leaves me little
hope
that there is a way to do this: others have asked, but I have found
no
responses.
Does anyone here know of a way to script the synchronization of a
briefcase?
David
Stardate 6276.9