473,387 Members | 1,742 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

unbound hyperlink field...

Hello.

I've converted a bound Access 2000 form which displays data retrieved from
an Access 2000 database to an unbound form. Now my hyperlinks don't work.
I'm assuming it's because the form isn't bound anymore. I didn't even have
that field's data type as hpyerlink - just test. I did have the form
control's "hyperlink" property set to true and it worked fine in bound mode.
The fields stores paths to pdf files. How can I make the hyperlink work in
an unboud form? (Going back to bound is NOT an option).

Thank You.

Matthew Wells
MW****@FirstByte.net
Mar 29 '06 #1
10 3195
"Matthew Wells" <MW****@FirstByte.net> wrote in message
news:zy*******************@newsread3.news.atl.eart hlink.net...
Hello.

I've converted a bound Access 2000 form which displays data retrieved from
an Access 2000 database to an unbound form. Now my hyperlinks don't work.
Am I missing something here? How do you expect an unbound form to display
data? Is is bound at run-time by using VBA/SQL queries? Can you give more
info?
I'm assuming it's because the form isn't bound anymore. I didn't even
have
that field's data type as hpyerlink - just test.
Test?
I did have the form
control's "hyperlink" property set to true and it worked fine in bound
mode.
As you'd expect it to, yes.
The fields stores paths to pdf files. How can I make the hyperlink work
in
an unboud form? (Going back to bound is NOT an option).


As I say, unless I'm missing something (which is distinctly possible) it's
not gonna happen. Why do you need to have the form unbound?

Keith.
www.keithwilby.com
Mar 29 '06 #2
Hi, Matthew.
I'm assuming it's because the form isn't bound anymore.
Correct.
How can I make the hyperlink work in
an unboud form?
Instead of an unbound text box, use an unattached label – which _can_ use
the Hyperlink functionality.

HTH.
Gunny

See http://www.QBuilt.com for all your database needs.
See http://www.Access.QBuilt.com for Microsoft Access tips and tutorials.
http://www.Access.QBuilt.com/html/ex...ributors2.html for contact
info.
"Matthew Wells" <MW****@FirstByte.net> wrote in message
news:zy*******************@newsread3.news.atl.eart hlink.net... Hello.

I've converted a bound Access 2000 form which displays data retrieved from
an Access 2000 database to an unbound form. Now my hyperlinks don't work.
I'm assuming it's because the form isn't bound anymore. I didn't even
have
that field's data type as hpyerlink - just test. I did have the form
control's "hyperlink" property set to true and it worked fine in bound
mode.
The fields stores paths to pdf files. How can I make the hyperlink work
in
an unboud form? (Going back to bound is NOT an option).

Thank You.

Matthew Wells
MW****@FirstByte.net

Mar 29 '06 #3
I have functions that retrieve the data and display it in the text boxes.
It's much faster.

"Keith Wilby" <he**@there.com> wrote in message
news:44**********@glkas0286.greenlnk.net...
"Matthew Wells" <MW****@FirstByte.net> wrote in message
news:zy*******************@newsread3.news.atl.eart hlink.net...
Hello.

I've converted a bound Access 2000 form which displays data retrieved from an Access 2000 database to an unbound form. Now my hyperlinks don't
work.
Am I missing something here? How do you expect an unbound form to display
data? Is is bound at run-time by using VBA/SQL queries? Can you give more info?
I'm assuming it's because the form isn't bound anymore. I didn't even
have
that field's data type as hpyerlink - just test.


Test?
I did have the form
control's "hyperlink" property set to true and it worked fine in bound
mode.


As you'd expect it to, yes.
The fields stores paths to pdf files. How can I make the hyperlink work
in
an unboud form? (Going back to bound is NOT an option).


As I say, unless I'm missing something (which is distinctly possible) it's
not gonna happen. Why do you need to have the form unbound?

Keith.
www.keithwilby.com

Mar 29 '06 #4
Hi, Matthew.
I have functions that retrieve the data and display it in the text boxes.
It's much faster.
Have you considered binding the form to a query that retrieves only one
record at a time, not the entire table?

HTH.
Gunny

See http://www.QBuilt.com for all your database needs.
See http://www.Access.QBuilt.com for Microsoft Access tips and tutorials.
http://www.Access.QBuilt.com/html/ex...ributors2.html for contact
info.
"Matthew Wells" <MW****@FirstByte.net> wrote in message
news:5m******************@newsread2.news.atl.earth link.net...I have functions that retrieve the data and display it in the text boxes.
It's much faster.

"Keith Wilby" <he**@there.com> wrote in message
news:44**********@glkas0286.greenlnk.net...
"Matthew Wells" <MW****@FirstByte.net> wrote in message
news:zy*******************@newsread3.news.atl.eart hlink.net...
> Hello.
>
> I've converted a bound Access 2000 form which displays data retrieved from > an Access 2000 database to an unbound form. Now my hyperlinks don't

work.

Am I missing something here? How do you expect an unbound form to
display
data? Is is bound at run-time by using VBA/SQL queries? Can you give

more
info?
> I'm assuming it's because the form isn't bound anymore. I didn't even
> have
> that field's data type as hpyerlink - just test.


Test?
> I did have the form
> control's "hyperlink" property set to true and it worked fine in bound
> mode.


As you'd expect it to, yes.
> The fields stores paths to pdf files. How can I make the hyperlink
> work
> in
> an unboud form? (Going back to bound is NOT an option).
>


As I say, unless I'm missing something (which is distinctly possible)
it's
not gonna happen. Why do you need to have the form unbound?

Keith.
www.keithwilby.com


Mar 29 '06 #5
Unbound forms are faster in all cases. I have calss modules that handle all
the data verification and updating.

"'69 Camaro" <Fo**************************@Spameater.orgZERO_SP AM> wrote in
message news:Ar********************@adelphia.com...
Hi, Matthew.
I have functions that retrieve the data and display it in the text boxes.
It's much faster.


Have you considered binding the form to a query that retrieves only one
record at a time, not the entire table?

HTH.
Gunny

See http://www.QBuilt.com for all your database needs.
See http://www.Access.QBuilt.com for Microsoft Access tips and tutorials.
http://www.Access.QBuilt.com/html/ex...ributors2.html for contact
info.
"Matthew Wells" <MW****@FirstByte.net> wrote in message
news:5m******************@newsread2.news.atl.earth link.net...
I have functions that retrieve the data and display it in the text boxes.
It's much faster.

"Keith Wilby" <he**@there.com> wrote in message
news:44**********@glkas0286.greenlnk.net...
"Matthew Wells" <MW****@FirstByte.net> wrote in message
news:zy*******************@newsread3.news.atl.eart hlink.net...
> Hello.
>
> I've converted a bound Access 2000 form which displays data retrieved

from
> an Access 2000 database to an unbound form. Now my hyperlinks don't

work.

Am I missing something here? How do you expect an unbound form to
display
data? Is is bound at run-time by using VBA/SQL queries? Can you give

more
info?

> I'm assuming it's because the form isn't bound anymore. I didn't even > have
> that field's data type as hpyerlink - just test.

Test?

> I did have the form
> control's "hyperlink" property set to true and it worked fine in bound > mode.

As you'd expect it to, yes.

> The fields stores paths to pdf files. How can I make the hyperlink
> work
> in
> an unboud form? (Going back to bound is NOT an option).
>

As I say, unless I'm missing something (which is distinctly possible)
it's
not gonna happen. Why do you need to have the form unbound?

Keith.
www.keithwilby.com



Mar 29 '06 #6
That worked great!!!

Thank you.

"'69 Camaro" <Fo**************************@Spameater.orgZERO_SP AM> wrote in
message news:FI********************@adelphia.com...
Hi, Matthew.
I'm assuming it's because the form isn't bound anymore.


Correct.
How can I make the hyperlink work in
an unboud form?


Instead of an unbound text box, use an unattached label - which _can_ use
the Hyperlink functionality.

HTH.
Gunny

See http://www.QBuilt.com for all your database needs.
See http://www.Access.QBuilt.com for Microsoft Access tips and tutorials.
http://www.Access.QBuilt.com/html/ex...ributors2.html for contact
info.
"Matthew Wells" <MW****@FirstByte.net> wrote in message
news:zy*******************@newsread3.news.atl.eart hlink.net...
Hello.

I've converted a bound Access 2000 form which displays data retrieved from an Access 2000 database to an unbound form. Now my hyperlinks don't work. I'm assuming it's because the form isn't bound anymore. I didn't even
have
that field's data type as hpyerlink - just test. I did have the form
control's "hyperlink" property set to true and it worked fine in bound
mode.
The fields stores paths to pdf files. How can I make the hyperlink work
in
an unboud form? (Going back to bound is NOT an option).

Thank You.

Matthew Wells
MW****@FirstByte.net


Mar 29 '06 #7
Hi, Matthew.
Unbound forms are faster in all cases. I have calss modules that handle
all
the data verification and updating.
And do as good a job as the database engine at handling record locks, write
conflicts, and guaranteeing referential integrity? That's a lot of coding
to gain marginally faster speed compared to retrieving a single bound record
from the table. But having a bound form open with only record isn't always
feasible in every application, so an unbound form that handles one record at
a time is a viable alternative. It's just a lot of work to get it right
when the business logic side is doing the work of the database engine.

HTH.
Gunny

See http://www.QBuilt.com for all your database needs.
See http://www.Access.QBuilt.com for Microsoft Access tips and tutorials.
http://www.Access.QBuilt.com/html/ex...ributors2.html for contact
info.
"Matthew Wells" <MW****@FirstByte.net> wrote in message
news:D8*******************@newsread3.news.atl.eart hlink.net... Unbound forms are faster in all cases. I have calss modules that handle
all
the data verification and updating.

"'69 Camaro" <Fo**************************@Spameater.orgZERO_SP AM> wrote
in
message news:Ar********************@adelphia.com...
Hi, Matthew.
>I have functions that retrieve the data and display it in the text
>boxes.
> It's much faster.


Have you considered binding the form to a query that retrieves only one
record at a time, not the entire table?

HTH.
Gunny

See http://www.QBuilt.com for all your database needs.
See http://www.Access.QBuilt.com for Microsoft Access tips and tutorials.
http://www.Access.QBuilt.com/html/ex...ributors2.html for contact
info.
"Matthew Wells" <MW****@FirstByte.net> wrote in message
news:5m******************@newsread2.news.atl.earth link.net...
>I have functions that retrieve the data and display it in the text
>boxes.
> It's much faster.
>
> "Keith Wilby" <he**@there.com> wrote in message
> news:44**********@glkas0286.greenlnk.net...
>> "Matthew Wells" <MW****@FirstByte.net> wrote in message
>> news:zy*******************@newsread3.news.atl.eart hlink.net...
>> > Hello.
>> >
>> > I've converted a bound Access 2000 form which displays data
>> > retrieved
> from
>> > an Access 2000 database to an unbound form. Now my hyperlinks don't
> work.
>>
>> Am I missing something here? How do you expect an unbound form to
>> display
>> data? Is is bound at run-time by using VBA/SQL queries? Can you give
> more
>> info?
>>
>> > I'm assuming it's because the form isn't bound anymore. I didn't even >> > have
>> > that field's data type as hpyerlink - just test.
>>
>> Test?
>>
>> > I did have the form
>> > control's "hyperlink" property set to true and it worked fine in bound >> > mode.
>>
>> As you'd expect it to, yes.
>>
>> > The fields stores paths to pdf files. How can I make the hyperlink
>> > work
>> > in
>> > an unboud form? (Going back to bound is NOT an option).
>> >
>>
>> As I say, unless I'm missing something (which is distinctly possible)
>> it's
>> not gonna happen. Why do you need to have the form unbound?
>>
>> Keith.
>> www.keithwilby.com
>>
>>
>
>



Mar 29 '06 #8
You're welcome! Glad it helped.

Gunny

See http://www.QBuilt.com for all your database needs.
See http://www.Access.QBuilt.com for Microsoft Access tips and tutorials.
http://www.Access.QBuilt.com/html/ex...ributors2.html for contact
info.
"Matthew Wells" <MW****@FirstByte.net> wrote in message
news:S8******************@newsread3.news.atl.earth link.net...
That worked great!!!

Thank you.

"'69 Camaro" <Fo**************************@Spameater.orgZERO_SP AM> wrote
in
message news:FI********************@adelphia.com...
Hi, Matthew.
> I'm assuming it's because the form isn't bound anymore.


Correct.
> How can I make the hyperlink work in
> an unboud form?


Instead of an unbound text box, use an unattached label - which _can_ use
the Hyperlink functionality.

HTH.
Gunny

See http://www.QBuilt.com for all your database needs.
See http://www.Access.QBuilt.com for Microsoft Access tips and tutorials.
http://www.Access.QBuilt.com/html/ex...ributors2.html for contact
info.
"Matthew Wells" <MW****@FirstByte.net> wrote in message
news:zy*******************@newsread3.news.atl.eart hlink.net...
> Hello.
>
> I've converted a bound Access 2000 form which displays data retrieved from > an Access 2000 database to an unbound form. Now my hyperlinks don't work. > I'm assuming it's because the form isn't bound anymore. I didn't even
> have
> that field's data type as hpyerlink - just test. I did have the form
> control's "hyperlink" property set to true and it worked fine in bound
> mode.
> The fields stores paths to pdf files. How can I make the hyperlink
> work
> in
> an unboud form? (Going back to bound is NOT an option).
>
> Thank You.
>
> Matthew Wells
> MW****@FirstByte.net
>
>



Mar 29 '06 #9
Not at all. I keep a single ADO connection object open to use through the
entire system. I have scripts that create the class modules and the form
code - all of it including navigation buttons - so the form is ready to use
in two minutes. All I do is give the table name and some other basic info
and 95% of the code is done in 30 seconds. There is always a little
tweaking. The business logic is all handled in one validte function.
That's the only real code I have to write.I have a front end in Miami and a
back end in New Jersey. It was taking 5 minutes to retrieve a record, now
it takes 5 seconds. (Yes I know there's a network problem somewhere, but
this is a Johnson & Johnson comapny so I can't mess with it.)

"'69 Camaro" <Fo**************************@Spameater.orgZERO_SP AM> wrote in
message news:K7********************@adelphia.com...
Hi, Matthew.
Unbound forms are faster in all cases. I have calss modules that handle
all
the data verification and updating.
And do as good a job as the database engine at handling record locks,

write conflicts, and guaranteeing referential integrity? That's a lot of coding
to gain marginally faster speed compared to retrieving a single bound record from the table. But having a bound form open with only record isn't always feasible in every application, so an unbound form that handles one record at a time is a viable alternative. It's just a lot of work to get it right
when the business logic side is doing the work of the database engine.

HTH.
Gunny

See http://www.QBuilt.com for all your database needs.
See http://www.Access.QBuilt.com for Microsoft Access tips and tutorials.
http://www.Access.QBuilt.com/html/ex...ributors2.html for contact
info.
"Matthew Wells" <MW****@FirstByte.net> wrote in message
news:D8*******************@newsread3.news.atl.eart hlink.net...
Unbound forms are faster in all cases. I have calss modules that handle
all
the data verification and updating.

"'69 Camaro" <Fo**************************@Spameater.orgZERO_SP AM> wrote
in
message news:Ar********************@adelphia.com...
Hi, Matthew.

>I have functions that retrieve the data and display it in the text
>boxes.
> It's much faster.

Have you considered binding the form to a query that retrieves only one
record at a time, not the entire table?

HTH.
Gunny

See http://www.QBuilt.com for all your database needs.
See http://www.Access.QBuilt.com for Microsoft Access tips and tutorials. http://www.Access.QBuilt.com/html/ex...ributors2.html for contact
info.
"Matthew Wells" <MW****@FirstByte.net> wrote in message
news:5m******************@newsread2.news.atl.earth link.net...
>I have functions that retrieve the data and display it in the text
>boxes.
> It's much faster.
>
> "Keith Wilby" <he**@there.com> wrote in message
> news:44**********@glkas0286.greenlnk.net...
>> "Matthew Wells" <MW****@FirstByte.net> wrote in message
>> news:zy*******************@newsread3.news.atl.eart hlink.net...
>> > Hello.
>> >
>> > I've converted a bound Access 2000 form which displays data
>> > retrieved
> from
>> > an Access 2000 database to an unbound form. Now my hyperlinks don't > work.
>>
>> Am I missing something here? How do you expect an unbound form to
>> display
>> data? Is is bound at run-time by using VBA/SQL queries? Can you give > more
>> info?
>>
>> > I'm assuming it's because the form isn't bound anymore. I didn't

even
>> > have
>> > that field's data type as hpyerlink - just test.
>>
>> Test?
>>
>> > I did have the form
>> > control's "hyperlink" property set to true and it worked fine in

bound
>> > mode.
>>
>> As you'd expect it to, yes.
>>
>> > The fields stores paths to pdf files. How can I make the hyperlink >> > work
>> > in
>> > an unboud form? (Going back to bound is NOT an option).
>> >
>>
>> As I say, unless I'm missing something (which is distinctly possible) >> it's
>> not gonna happen. Why do you need to have the form unbound?
>>
>> Keith.
>> www.keithwilby.com
>>
>>
>
>



Mar 29 '06 #10
"Matthew Wells" <MW****@FirstByte.net> wrote in message
news:5m******************@newsread2.news.atl.earth link.net...
I have functions that retrieve the data and display it in the text boxes.
It's much faster.


That sounds rather beyond my field of expertise so I was indeed missing
something!

Keith.
Mar 30 '06 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Stephan | last post by:
Hi, I'm using Visual Studio 2003 (C#) with the integrated Crystal Report software and have the following question: How can I assign a value (string) to an unbound (string) field in Crystal...
3
by: Dos Lil | last post by:
I have a unbound field in the subform(for calculating the datediff) which has the control property ==DateDiff("n",,). I have another unbound field in the main form which is for displaying the...
3
by: Pat | last post by:
Hello, I've used Sum() to total bound fields on a continuous form with no problem. However, I now have a continuous form, on which I use an unbound field to calculate the number of hours between...
0
by: Bob Bykerk | last post by:
Hyperlinks work fine when using bound controls but when I try to get one to work on an unbound control (with hyperlink? = true) I can't insert a hyperlink or use the data as a hyperlink. I have...
4
by: Tero Partanen | last post by:
Hello! I'm writing about a rather peculiar problem I'm having with Access2000. I have a table in which I have created one hyperlink-type field. I have given the field a default value which is...
4
by: Andreas Meffert | last post by:
Hello, How can I change the Type of a field in a table from Memo to hyperlink? I import a table from Oracle to Access 2003. After that, the field type of some hyperlink-fields is "Memo". How...
1
by: dpark29 | last post by:
Access 2000 - If a textbox control is bound to a hyperlink field in an Access database table, the textbox appears formatted as hyperlink and when the user right-clicks the field, the Hyperlink option...
5
LAD
by: LAD | last post by:
Using Access 2003 on Windows 2000. My Skill Level: Med Low (Some VBA, okay with Access) Form: Single View - based on Query of single Table to sort by field. Application: Dealers email 'contract...
1
SBCUser666
by: SBCUser666 | last post by:
Form field (Text66) defined as Hyperlink. Access 2003 table field defined as Hyperlink. Using VBA I build the hyperlink and poke it into the form field. The field displays like it is a hyperlink...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.