1f56e Hyperlink Assistance Required
Sign Up |  Live StatsLive Stats    Articles 37,330| Comments 177,249| Members 19,411, Newest Mongaloidicspasm| Online 376
Home Contact
 (Forgotten?): 
    Sikhism
    For best SPN experience, use Firefox Internet Browser!


                                                                   Your Banner Here!    




Click Here to Register/Sign Up Daily Hukamnama Member Blogs Downloads Website Navigation Help Fonts Tags

Hyperlink Assistance Required

Our Donation Goal : Why Donate? : Donate Today! : Donate Anonymously (ਗੁਪਤ) : Our Family of Supporters
Goal this month: 500 USD, Received: 115 USD (23%)
Please Donate...
     
Related Topics...
Thread Thread Starter Forum Replies Last Post
Translation Assistance Ajuni Questions and Answers 4 17-Sep-2012 00:53 AM
Hyperlink Error Message Required Sue Wilkes Information Technology 0 28-Jul-2006 08:37 AM
Access97 Assistance Richard194 Information Technology 3 28-Jul-2006 08:37 AM
Coding assistance required DarranG Information Technology 1 28-Jul-2006 08:28 AM
Form Problem Assistance Please Jeff Information Technology 2 28-Jul-2006 08:13 AM


Tags
hyperlink, assistance, required
Reply Post New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!
  #1 (permalink)  
Old 28-Jul-2006, 08:22 AM
Klingon Coder's Avatar Klingon Coder
Guest
 
Posts: n/a
   
   
Hyperlink Assistance Required

  Donate Today!   Email to Friend  Tell a Friend   Show Printable Version  Print   Contact sikhphilosophy.net Administraion for any Suggestions, Ideas, Feedback.  Feedback  

Register to Remove Advertisements
I'm hoping someone can shed some light on a problem I'm having. I have a
form that is used to input data on tasks. The table that the form is linked
to has several fields used to store hyperlinks to source files pertaining to
these tasks. Instead of having the user type in the corresponding text boxes
on the form, I have placed command buttons that allow them to open the insert
hyperlink dialogue window, from which they navigate to the proper folder and
select the file they want to link to. The link is then stored in the proper
text box which has been set to invisible.

All of this is working fine, the problem lies in the fact that the database
has been split. The back end resides on a network drive while the mde file
resides on the user's "C:" drive. The issue I'm having difficulty with is
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/information-technology/11670-hyperlink-assistance-required.html
that when they click on the command button, the hyperlink window opens and is
defaulted to the folder that the mde resides in. I would like to set it so
that it opens to the folder that the back end is located on. I have tried
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11670
setting the hyperlink base to the correct location, but this had no effect.
Can anyone explain how to get around this situation?


--
Cheers

Klingon Coder

"Ancient Klingon Proverb - Act and you shall have dinner, Think and you
shall be dinner"


Got anything to share on This Topic? Why not share your immediate thoughts/reaction with us! Login Now! or Sign Up Today! to share your views... Gurfateh!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 28-Jul-2006, 08:22 AM
Cilla's Avatar Cilla
Guest
 
Posts: n/a
   
   
Re: Hyperlink Assistance Required


Klingon Coder wrote:
> I'm hoping someone can shed some light on a problem I'm having. I have a
> form that is used to input data on tasks. The table that the form is linked
> to has several fields used to store hyperlinks to source files pertaining to
> these tasks. Instead of having the user type in the corresponding text boxes
> on the form, I have placed command buttons that allow them to open the insert
> hyperlink dialogue window, from which they navigate to the proper folder and
> select the file they want to link to. The link is then stored in the proper
> text box which has been set to invisible.
>
> All of this is working fine, the problem lies in the fact that the database
> has been split. The back end resides on a network drive while the mde file
> resides on the user's "C:" drive. The issue I'm having difficulty with is
> that when they click on the command button, the hyperlink window opens and is
> defaulted to the folder that the mde resides in. I would like to set it so
> that it opens to the folder that the back end is located on. I have tried
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11670
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11670
> setting the hyperlink base to the correct location, but this had no effect.
> Can anyone explain how to get around this situation?
>
>


For a quick solution:

Under the File Database Properties Setting under the summary tab is the
option to enter a hyperlink base:. Enter the network path you wish to
start in.

When the use clicks the edit hyperlink option it will still look in the
database original path however if the user clicks the Browse for file
button on the dialog box (Last button next to look in) it will open to
the default settings in the database properties.

> --
> Cheers
>
> Klingon Coder
>
> "Ancient Klingon Proverb - Act and you shall have dinner, Think and you
> shall be dinner"


Reply With Quote
  #3 (permalink)  
Old 28-Jul-2006, 08:22 AM
Klingon Coder's Avatar Klingon Coder
Guest
 
Posts: n/a
   
   
Re: Hyperlink Assistance Required

Hi Cilla, thanks for responding. As I mentioned in my original post I did
put the path in the hyperlink base. The problem is that the user never gets
to type in the textbox that stores the hyperlink as it is set to invisible.
The only way they can add a hyperlink is to click on the command button.
Here is the code I am using:

Private Sub cmdAnnexALink_Click()
Dim response, myString
On Error GoTo cmdAnnexAlink_Click_Error

If ValidLink(Me![txtAnnexAlink]) = False Then
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70

response = MsgBox("Annex A file not found. Would you like to add
one now?", vbYesNo, "Add Annex A")

If response = vbYes Then
txtAnnexAlink.Visible = True
txtAnnexAlink.SetFocus
DoCmd.RunCommand acCmdInsertHyperlink
cmdAnnexALink.SetFocus
txtAnnexAlink.Visible = False
Hyper_Colours
Else
myString = "No"
End If
End If

exit_cmdAnnexAlink_Click:
Exit Sub

cmdAnnexAlink_Click_Error:
If Err <> 2501 Then
MsgBox Err & ": " & Err.Description
Resume exit_cmdAnnexAlink_Click
End If
End Sub

What I need is a way to point the hyperlink window to the backend so that
the user doesn't have to search for the network drive and then the
appropriate folder. The irony of it all is I have a function that will
search the back end for a specific file, but not just a directory, and I
haven't been able to figure out how to utilize that ability to work here.
Any other suggestions/ideas?

--
Cheers

Klingon Coder

Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11670
"Ancient Klingon Proverb - Act and you shall have dinner, Think and you
shall be dinner"


"Cilla" wrote:

>
> Klingon Coder wrote:
> > I'm hoping someone can shed some light on a problem I'm having. I have a
> > form that is used to input data on tasks. The table that the form is linked
> > to has several fields used to store hyperlinks to source files pertaining to
> > these tasks. Instead of having the user type in the corresponding text boxes
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11670
> > on the form, I have placed command buttons that allow them to open the insert
> > hyperlink dialogue window, from which they navigate to the proper folder and
> > select the file they want to link to. The link is then stored in the proper
> > text box which has been set to invisible.
> >
> > All of this is working fine, the problem lies in the fact that the database
> > has been split. The back end resides on a network drive while the mde file
> > resides on the user's "C:" drive. The issue I'm having difficulty with is
> > that when they click on the command button, the hyperlink window opens and is
> > defaulted to the folder that the mde resides in. I would like to set it so
> > that it opens to the folder that the back end is located on. I have tried
> > setting the hyperlink base to the correct location, but this had no effect.
> > Can anyone explain how to get around this situation?
> >
> >

>
> For a quick solution:
>
> Under the File Database Properties Setting under the summary tab is the
> option to enter a hyperlink base:. Enter the network path you wish to
> start in.
>
> When the use clicks the edit hyperlink option it will still look in the
> database original path however if the user clicks the Browse for file
> button on the dialog box (Last button next to look in) it will open to
> the default settings in the database properties.
>
> > --
> > Cheers
> >
> > Klingon Coder
> >
> > "Ancient Klingon Proverb - Act and you shall have dinner, Think and you
> > shall be dinner"

>
>

Reply With Quote
  #4 (permalink)  
Old 28-Jul-2006, 08:22 AM
Klingon Coder's Avatar Klingon Coder
Guest
 
Posts: n/a
   
   
Re: Hyperlink Assistance Required

Hi Cilla, thanks for responding. As I mentioned in my original post I did
put the path in the hyperlink base. The problem is that the user never gets
to type in the textbox that stores the hyperlink as it is set to invisible.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11670
The only way they can add a hyperlink is to click on the command button.
Here is the code I am using:

Private Sub cmdAnnexALink_Click()
Dim response, myString
On Error GoTo cmdAnnexAlink_Click_Error

If ValidLink(Me![txtAnnexAlink]) = False Then
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70

response = MsgBox("Annex A file not found. Would you like to add
one now?", vbYesNo, "Add Annex A")

If response = vbYes Then
txtAnnexAlink.Visible = True
txtAnnexAlink.SetFocus
DoCmd.RunCommand acCmdInsertHyperlink
cmdAnnexALink.SetFocus
txtAnnexAlink.Visible = False
Hyper_Colours
Else
myString = "No"
End If
End If

exit_cmdAnnexAlink_Click:
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11670
Exit Sub

cmdAnnexAlink_Click_Error:
If Err <> 2501 Then
MsgBox Err & ": " & Err.Description
Resume exit_cmdAnnexAlink_Click
End If
End Sub

What I need is a way to point the hyperlink window to the backend so that
the user doesn't have to search for the network drive and then the
appropriate folder. The irony of it all is I have a function that will
search the back end for a specific file, but not just a directory, and I
haven't been able to figure out how to utilize that ability to work here.
Any other suggestions/ideas?

--
Cheers

Klingon Coder

"Ancient Klingon Proverb - Act and you shall have dinner, Think and you
shall be dinner"


"Cilla" wrote:

>
> Klingon Coder wrote:
> > I'm hoping someone can shed some light on a problem I'm having. I have a
> > form that is used to input data on tasks. The table that the form is linked
> > to has several fields used to store hyperlinks to source files pertaining to
> > these tasks. Instead of having the user type in the corresponding text boxes
> > on the form, I have placed command buttons that allow them to open the insert
> > hyperlink dialogue window, from which they navigate to the proper folder and
> > select the file they want to link to. The link is then stored in the proper
> > text box which has been set to invisible.
> >
> > All of this is working fine, the problem lies in the fact that the database
> > has been split. The back end resides on a network drive while the mde file
> > resides on the user's "C:" drive. The issue I'm having difficulty with is
> > that when they click on the command button, the hyperlink window opens and is
> > defaulted to the folder that the mde resides in. I would like to set it so
> > that it opens to the folder that the back end is located on. I have tried
> > setting the hyperlink base to the correct location, but this had no effect.
> > Can anyone explain how to get around this situation?
> >
> >

>
> For a quick solution:
>
> Under the File Database Properties Setting under the summary tab is the
> option to enter a hyperlink base:. Enter the network path you wish to
> start in.
>
> When the use clicks the edit hyperlink option it will still look in the
> database original path however if the user clicks the Browse for file
> button on the dialog box (Last button next to look in) it will open to
> the default settings in the database properties.
>
> > --
> > Cheers
> >
> > Klingon Coder
> >
> > "Ancient Klingon Proverb - Act and you shall have dinner, Think and you
> > shall be dinner"

>
>

Reply With Quote
  #5 (permalink)  
Old 28-Jul-2006, 08:22 AM
Klingon Coder's Avatar Klingon Coder
Guest
 
Posts: n/a
   
   
Re: Hyperlink Assistance Required

Hi Cilla, thanks for responding. As I mentioned in my original post I did
put the path in the hyperlink base. The problem is that the user never gets
to type in the textbox that stores the hyperlink as it is set to invisible.
The only way they can add a hyperlink is to click on the command button.
Here is the code I am using:

Private Sub cmdAnnexALink_Click()
Dim response, myString
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11670
On Error GoTo cmdAnnexAlink_Click_Error

If ValidLink(Me![txtAnnexAlink]) = False Then
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70

response = MsgBox("Annex A file not found. Would you like to add
one now?", vbYesNo, "Add Annex A")

If response = vbYes Then
txtAnnexAlink.Visible = True
txtAnnexAlink.SetFocus
DoCmd.RunCommand acCmdInsertHyperlink
cmdAnnexALink.SetFocus
txtAnnexAlink.Visible = False
Hyper_Colours
Else
myString = "No"
End If
End If

exit_cmdAnnexAlink_Click:
Exit Sub

cmdAnnexAlink_Click_Error:
If Err <> 2501 Then
MsgBox Err & ": " & Err.Description
Resume exit_cmdAnnexAlink_Click
End If
End Sub

What I need is a way to point the hyperlink window to the backend so that
the user doesn't have to search for the network drive and then the
appropriate folder. The irony of it all is I have a function that will
search the back end for a specific file, but not just a directory, and I
haven't been able to figure out how to utilize that ability to work here.
Any other suggestions/ideas?


--
Cheers

Klingon Coder

"Ancient Klingon Proverb - Act and you shall have dinner, Think and you
shall be dinner"


"Cilla" wrote:

Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11670
>
> Klingon Coder wrote:
> > I'm hoping someone can shed some light on a problem I'm having. I have a
> > form that is used to input data on tasks. The table that the form is linked
> > to has several fields used to store hyperlinks to source files pertaining to
> > these tasks. Instead of having the user type in the corresponding text boxes
> > on the form, I have placed command buttons that allow them to open the insert
> > hyperlink dialogue window, from which they navigate to the proper folder and
> > select the file they want to link to. The link is then stored in the proper
> > text box which has been set to invisible.
> >
> > All of this is working fine, the problem lies in the fact that the database
> > has been split. The back end resides on a network drive while the mde file
> > resides on the user's "C:" drive. The issue I'm having difficulty with is
> > that when they click on the command button, the hyperlink window opens and is
> > defaulted to the folder that the mde resides in. I would like to set it so
> > that it opens to the folder that the back end is located on. I have tried
> > setting the hyperlink base to the correct location, but this had no effect.
> > Can anyone explain how to get around this situation?
> >
> >

>
> For a quick solution:
>
> Under the File Database Properties Setting under the summary tab is the
> option to enter a hyperlink base:. Enter the network path you wish to
> start in.
>
> When the use clicks the edit hyperlink option it will still look in the
> database original path however if the user clicks the Browse for file
> button on the dialog box (Last button next to look in) it will open to
> the default settings in the database properties.
>
> > --
> > Cheers
> >
> > Klingon Coder
> >
> > "Ancient Klingon Proverb - Act and you shall have dinner, Think and you
> > shall be dinner"

>
>

Reply With Quote
  #6 (permalink)  
Old 28-Jul-2006, 08:22 AM
Klingon Coder's Avatar Klingon Coder
Guest
 
Posts: n/a
   
   
Re: Hyperlink Assistance Required

Hi Cilla, thanks for responding. As I mentioned in my original post I did
put the path in the hyperlink base. The problem is that the user never gets
to type in the textbox that stores the hyperlink as it is set to invisible.
The only way they can add a hyperlink is to click on the command button.
Here is the code I am using:

Private Sub cmdAnnexALink_Click()
Dim response, myString
On Error GoTo cmdAnnexAlink_Click_Error

If ValidLink(Me![txtAnnexAlink]) = False Then
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70

response = MsgBox("Annex A file not found. Would you like to add
one now?", vbYesNo, "Add Annex A")

If response = vbYes Then
txtAnnexAlink.Visible = True
txtAnnexAlink.SetFocus
DoCmd.RunCommand acCmdInsertHyperlink
cmdAnnexALink.SetFocus
txtAnnexAlink.Visible = False
Hyper_Colours
Else
myString = "No"
End If
End If

exit_cmdAnnexAlink_Click:
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11670
Exit Sub

cmdAnnexAlink_Click_Error:
If Err <> 2501 Then
MsgBox Err & ": " & Err.Description
Resume exit_cmdAnnexAlink_Click
End If
End Sub

What I need is a way to point the hyperlink window to the backend so that
the user doesn't have to search for the network drive and then the
appropriate folder. The irony of it all is I have a function that will
search the back end for a specific file, but not just a directory, and I
haven't been able to figure out how to utilize that ability to work here.
Any other suggestions/ideas?


--
Cheers

Klingon Coder

"Ancient Klingon Proverb - Act and you shall have dinner, Think and you
shall be dinner"


"Cilla" wrote:

>
> Klingon Coder wrote:
> > I'm hoping someone can shed some light on a problem I'm having. I have a
> > form that is used to input data on tasks. The table that the form is linked
> > to has several fields used to store hyperlinks to source files pertaining to
> > these tasks. Instead of having the user type in the corresponding text boxes
> > on the form, I have placed command buttons that allow them to open the insert
> > hyperlink dialogue window, from which they navigate to the proper folder and
> > select the file they want to link to. The link is then stored in the proper
> > text box which has been set to invisible.
> >
> > All of this is working fine, the problem lies in the fact that the database
> > has been split. The back end resides on a network drive while the mde file
> > resides on the user's "C:" drive. The issue I'm having difficulty with is
> > that when they click on the command button, the hyperlink window opens and is
> > defaulted to the folder that the mde resides in. I would like to set it so
> > that it opens to the folder that the back end is located on. I have tried
> > setting the hyperlink base to the correct location, but this had no effect.
> > Can anyone explain how to get around this situation?
> >
> >

>
> For a quick solution:
>
> Under the File Database Properties Setting under the summary tab is the
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11670
> option to enter a hyperlink base:. Enter the network path you wish to
> start in.
>
> When the use clicks the edit hyperlink option it will still look in the
> database original path however if the user clicks the Browse for file
> button on the dialog box (Last button next to look in) it will open to
> the default settings in the database properties.
>
> > --
> > Cheers
> >
> > Klingon Coder
> >
> > "Ancient Klingon Proverb - Act and you shall have dinner, Think and you
> > shall be dinner"

>
>

Reply With Quote
  #7 (permalink)  
Old 28-Jul-2006, 08:22 AM
Cilla's Avatar Cilla
Guest
 
Posts: n/a
   
   
Re: Hyperlink Assistance Required


Klingon Coder wrote:
> Hi Cilla, thanks for responding. As I mentioned in my original post I did
> put the path in the hyperlink base. The problem is that the user never gets
> to type in the textbox that stores the hyperlink as it is set to invisible.
> The only way they can add a hyperlink is to click on the command button.
> Here is the code I am using:
>
> Private Sub cmdAnnexALink_Click()
> Dim response, myString
> On Error GoTo cmdAnnexAlink_Click_Error
>
> If ValidLink(Me![txtAnnexAlink]) = False Then
> DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70
>
> response = MsgBox("Annex A file not found. Would you like to add
> one now?", vbYesNo, "Add Annex A")
>
> If response = vbYes Then
> txtAnnexAlink.Visible = True
> txtAnnexAlink.SetFocus
> DoCmd.RunCommand acCmdInsertHyperlink
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11670
> cmdAnnexALink.SetFocus
> txtAnnexAlink.Visible = False
> Hyper_Colours
> Else
> myString = "No"
> End If
> End If
>
> exit_cmdAnnexAlink_Click:
> Exit Sub
>
> cmdAnnexAlink_Click_Error:
> If Err <> 2501 Then
> MsgBox Err & ": " & Err.Description
> Resume exit_cmdAnnexAlink_Click
> End If
> End Sub
>
> What I need is a way to point the hyperlink window to the backend so that
> the user doesn't have to search for the network drive and then the
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11670
> appropriate folder. The irony of it all is I have a function that will
> search the back end for a specific file, but not just a directory, and I
> haven't been able to figure out how to utilize that ability to work here.
> Any other suggestions/ideas?
>
>
> --
> Cheers
>
> Klingon Coder
>
> "Ancient Klingon Proverb - Act and you shall have dinner, Think and you
> shall be dinner"
>
>
> "Cilla" wrote:
>
> >
> > Klingon Coder wrote:
> > > I'm hoping someone can shed some light on a problem I'm having. I have a
> > > form that is used to input data on tasks. The table that the form is linked
> > > to has several fields used to store hyperlinks to source files pertaining to
> > > these tasks. Instead of having the user type in the corresponding text boxes
> > > on the form, I have placed command buttons that allow them to open the insert
> > > hyperlink dialogue window, from which they navigate to the proper folder and
> > > select the file they want to link to. The link is then stored in the proper
> > > text box which has been set to invisible.
> > >
> > > All of this is working fine, the problem lies in the fact that the database
> > > has been split. The back end resides on a network drive while the mde file
> > > resides on the user's "C:" drive. The issue I'm having difficulty with is
> > > that when they click on the command button, the hyperlink window opens and is
> > > defaulted to the folder that the mde resides in. I would like to set it so
> > > that it opens to the folder that the back end is located on. I have tried
> > > setting the hyperlink base to the correct location, but this had no effect.
> > > Can anyone explain how to get around this situation?
> > >
> > >

> >
> > For a quick solution:
> >
> > Under the File Database Properties Setting under the summary tab is the
> > option to enter a hyperlink base:. Enter the network path you wish to
> > start in.
> >
> > When the use clicks the edit hyperlink option it will still look in the
> > database original path however if the user clicks the Browse for file
> > button on the dialog box (Last button next to look in) it will open to
> > the default settings in the database properties.
> >
> > > --
> > > Cheers
> > >
> > > Klingon Coder
> > >
> > > "Ancient Klingon Proverb - Act and you shall have dinner, Think and you
> > > shall be dinner"

> >

> Hi,


I took you code and placed it into one of my forms. (Modified the form
to make it work of course) and got the hyperlink dialog box when the
field was null. It gave me the same choice buttons on the hyperlink
dialog box and I could click the Browse for File button which brought
me to the hyperlink base I have set in the database properties. It
seemed to work fine for me.

You could also create your own browser to act the same way as the
hyperlink and place the default path within the brower you created. If
you want the code let me know

Reply With Quote
  #8 (permalink)  
Old 28-Jul-2006, 08:22 AM
Klingon Coder's Avatar Klingon Coder
Guest
 
Posts: n/a
   
   
Re: Hyperlink Assistance Required

Actually I would very much like the code for that.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11670

But I do have a question, is your front end located in a different location
than the backend? Because we never noticed the problem until we split the
database and relocated the front end from the server to the user's PC
..
--
Cheers

Klingon Coder

"Ancient Klingon Proverb - Act and you shall have dinner, Think and you
shall be dinner"


"Cilla" wrote:

> Hi,
>
> I took you code and placed it into one of my forms. (Modified the form
> to make it work of course) and got the hyperlink dialog box when the
> field was null. It gave me the same choice buttons on the hyperlink
> dialog box and I could click the Browse for File button which brought
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11670
> me to the hyperlink base I have set in the database properties. It
> seemed to work fine for me.
>
> You could also create your own browser to act the same way as the
> hyperlink and place the default path within the brower you created. If
> you want the code let me know
>
>

Reply With Quote
  #9 (permalink)  
Old 28-Jul-2006, 08:23 AM
Cilla's Avatar Cilla
Guest
 
Posts: n/a
   
   
Re: Hyperlink Assistance Required

  Donate Today!  

Klingon Coder wrote:
> Actually I would very much like the code for that.
>
> But I do have a question, is your front end located in a different location
> than the backend? Because we never noticed the problem until we split the
> database and relocated the front end from the server to the user's PC
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11670
> .
> --
> Cheers
>
> Klingon Coder
>
> "Ancient Klingon Proverb - Act and you shall have dinner, Think and you
> shall be dinner"
>
>
> "Cilla" wrote:
>
> > Hi,
> >
> > I took you code and placed it into one of my forms. (Modified the form
> > to make it work of course) and got the hyperlink dialog box when the
> > field was null. It gave me the same choice buttons on the hyperlink
> > dialog box and I could click the Browse for File button which brought
> > me to the hyperlink base I have set in the database properties. It
> > seemed to work fine for me.
> >
> > You could also create your own browser to act the same way as the
> > hyperlink and place the default path within the brower you created. If
> > you want the code let me know
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11670
> >
> >


Yes I am using a split database. Send me you email to
ppollock@computemps.net and I will send you the code for the browser

Reply With Quote
   Click Here to Donate Now!

Support Us!
Become a Promoter!
Gurfateh ji, you can become a SPN Promoter by Donating as little as $10 each month. With limited resources & high operational costs, your donations make it possible for us to deliver a quality website and spread the teachings of the Sri Guru Granth Sahib Ji, to serve & uplift humanity. Every contribution counts. Donate Generously. Gurfateh!
ReplyPost New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!

Bookmarks


(View-All Members who have read this thread : 0
There are no names to display.

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Tools Search
Search:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On

» Active Discussions
Black Sikhs?
Today 06:33 AM
20 Replies, 5,736 Views
Man Driving Without...
Today 05:06 AM
5 Replies, 109 Views
Request for assistance...
Today 04:24 AM
8 Replies, 69 Views
Losing My Religion: Why...
Today 03:03 AM
13 Replies, 310 Views
Health Exercise And...
Today 02:10 AM
1 Replies, 71 Views
Sikh Spokesman (ਪੰਜਾਬੀ...
Today 02:10 AM
176 Replies, 4,497 Views
How Religions Change...
Today 02:07 AM
1 Replies, 97 Views
Keeping Amrit Vela
Today 01:57 AM
11 Replies, 887 Views
Rozana Reports (ਪੰਜਾਬੀ...
Today 01:52 AM
313 Replies, 7,573 Views
Do you believe in...
Today 00:25 AM
192 Replies, 4,015 Views
How does Sikhi help you...
Yesterday 22:54 PM
22 Replies, 889 Views
Panjabi
By Ishna
Yesterday 17:56 PM
12 Replies, 264 Views
Parkash Guru Amar Das ji...
Yesterday 17:07 PM
3 Replies, 49 Views
Serious challenges to...
Yesterday 16:49 PM
0 Replies, 108 Views
Sikh man fights for his...
Yesterday 16:46 PM
0 Replies, 79 Views
» Books You Should Read...
Powered by vBadvanced CMPS v3.2.3
All times are GMT +6.5. The time now is 06:59 AM.
Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2013, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2 Copyright © 2004-12, All Rights Reserved. Sikh Philosophy Network


Page generated in 0.83302 seconds with 32 queries
0