Griffiths, Richard
R.Griffiths at bury.gov.uk
Thu Oct 9 03:47:00 CDT 2003
Hi thanks for the reply, no I don't want to open Excel or another application, however your solution works when I enter the path to the folder e.g. 'C:\MyFolder\MySubfolder\...\...\..\" that I want to move to - i.e. it loads Windows Explorer and initialises on the path entered.Perfect. Richard > -----Original Message----- > From: Stuart McLachlan [SMTP:stuart at lexacorp.com.pg] > Sent: 07 October 2003 23:52 > To: dba-vb at databaseadvisors.com > Subject: Re: [dba-VB] VB6 - hpertext link > > On 7 Oct 2003 at 15:50, Griffiths, Richard wrote: > > > Hi > > > > What I wish to achieve is a label (field or button) that when clicked > will > > act as a hypertext link of favourites type link. > > We have a system that produces a large number of graphs stored down many > > long folder hierarchies , so having produced the graph in excel I want > to be > > able to link directly to Q:\database\systems\hsis\graphs\yy\mm\...\...\\ > and > > so on without having the load Windows Explorer and navigating there. > > > > If I understand you correctly, you want to click on a path/filename > and have the appropriuate application such as Excel open the > document? > > In that case: > > > Public Declare Function ShellExecute Lib "shell32.dll" Alias > "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, > ByVal lpFile As String, ByVal lpParameters As String, ByVal > lpDirectory As String, ByVal nShowCmd As Long) As Long > > > Private Sub myLink_Click() > ShellExecute(0,"Open",myLink.Text,"","",1) > End Sub > > > > > > > -- > Lexacorp Ltd > http://www.lexacorp.com.pg > Information Technology Consultancy, Software Development,System > Support. > > > > _______________________________________________ > dba-VB mailing list > dba-VB at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/dba-vb > http://www.databaseadvisors.com >