Thanks Matthew and Steve.  On a side note, when it was file.url that was
"saved as" to the users desktop, it just launched a new window...we are
attempting on a few more machines to insure this wasn't some weird behavior
on these machines...either way, this was great to see that we weren't in
left field.  We'll get it ironed out...thanks for the  pointers.

Regards,

Eric J. Hoffman
Director of Internet Development
DataStream Connexion, LLC
(formerly Small Dog Design)

-----Original Message-----
From: Steve Oliver [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 08, 2002 8:43 AM
To: CF-Talk
Subject: RE: Desktop Icon Creation


You just want a shortcut to a webpage on the desktop?

Just paste this in a text file

[DEFAULT]
BASEURL=http://someserver.com/
[InternetShortcut]
URL=http://someserver.com/

Then change it from file.txt to file.url


_____________________________
steve oliver
senior internet developer
atnet solutions, inc.
http://www.atnetsolutions.com


-----Original Message-----
From: Matthew R. Small [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 08, 2002 9:35 AM
To: CF-Talk
Subject: RE: Desktop Icon Creation


I have something for you...

Save the following in a .vbs file, with appropriate changes.  Then
change the icon for this particular file by going to
folder options -> file types -> .vbs -> etc.


'************************************************
' File:    OpenPage.vbs
' Author:  Max Hamby (12/7/2002)
'
'
'************************************************
Option Explicit

Dim oIE,Page

Page = "servername/"

Set oIE = CreateObject("InternetExplorer.Application")
With oIE
        .ToolBar = 0
        .MenuBar = 0
        .StatusBar = 0
        .Height = 575
        .Width = 800
        '.Resizable = 0
        .Visible = 1
        '.FullScreen = 1
        .Left = 0
        .Top = 0
End With

oIE.navigate Page

'*** End


Max Hamby on the CFDJList wrote this little script for me.  Thank you,
Max.

- Matt Small




-----Original Message-----
From: Eric J Hoffman [mailto:[EMAIL PROTECTED]]
Sent: Thursday, March 07, 2002 8:22 PM
To: CF-Talk
Subject: Desktop Icon Creation

We have a project for a client that we are trying to make an shortcut on
the
users desktop.  We are having all sorts of trouble figuring it out, and
wonder if anyone knows of a tutorial somewhere for this or has a quick
pointer?

The idea is a unique url is turned into a internet icon shortcut on the
desktop....so far when you try to save the icon to the desktop, another
browser window opens up going to that link.  Doh!

Regards,

Eric J. Hoffman
Director of Internet Development
DataStream Connexion, LLC
(formerly Small Dog Design)





______________________________________________________________________
Why Share?
  Dedicated Win 2000 Server � PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation � $99/Month � Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to