Hi Alvin.
I'm interested in the pivot table code for hyperlinks. Is it possible
for
you to present it here?
Regards/Rolf
:
i do have the pivot table code for hyperlinks if you still need it from
Microsoft Product Group
Sorry, i completely forgot about this email.
--
Regards,
Alvin Bruney
what woudl be really nice to get Actions working with Office Web
Components.
no coding, just actions.
"Alvin Bruney [MVP]" <vapor at steaming post office> wrote in message
I've submitted a trouble ticket for this. I'll let you know what i
find
out.
--
Regards,
Alvin Bruney
[ASP.NET MVP
http://mvp.support.microsoft.com/default.aspx]
Got tidbits? Get it here...
http://tinyurl.com/27cok
it's ok, Microsoft is busy working on Office 12 instead of fixing
known
bugs
that are driving developers crazy
don't worry-- everything will still be broken then tho
"Alvin Bruney [MVP]" <vapor at steaming post office> wrote in
message
Jean
FYI:
I didn't exactly give up on this.
I'm beginning to think it is broken functionality. Unless someone
from
MS
takes this up, I'll continue to dig around and then open a
trouble
ticket
to
get to the bottom of this.
--
Regards,
Alvin Bruney
[ASP.NET MVP
http://mvp.support.microsoft.com/default.aspx]
Got tidbits? Get it here...
http://tinyurl.com/27cok
"Alvin Bruney [MVP]" <vapor at steaming post office> wrote in
message
I'm having the same error as you. I do not know what is going.
Maybe
someone with more knowledge can figure this out. Sorry
--
Regards,
Alvin Bruney
[ASP.NET MVP
http://mvp.support.microsoft.com/default.aspx]
Got tidbits? Get it here...
http://tinyurl.com/27cok
Thanks for your reply. Now I knew that the fields object
doesn't
have
hyperlink address property. So I got this object hierarchy by
checking
the
document from MS.
Pivot.ActiveData.RowAxis.RowMember.ChildRowMembers(0).Hyperlink.Address="htt
p://
www.yahoo.com"
However I still got error. I could not find any help or
example
from
microsoft site. If you can list the object for
Hyperlink.Address,
that
will
be a big help.
In fact I want to assign one data field as a hyperlink in a
pivot
table
and
the link will open a new IE window to display a web site. It
looks
like
it
only can open a new window in win 2000 computers, but it could
not
open
a
new
window in XP computers. So I want to use .Hyperlink.Subaddress
=
"blank"
to
open a new window.
Thanks for you help!
:
the fields object collection does not contain a hyperlink
address
property
which is why you are getting an exception. You will need to
use an
appropriate parent object
that exposes the pivothyperlink object. Have a look at the
pivot
table
list
object hierarchy.
--
Regards,
Alvin Bruney
[ASP.NET MVP
http://mvp.support.microsoft.com/default.aspx]
Got tidbits? Get it here...
http://tinyurl.com/27cok
Hello,
I have a object to create a pivot table in a html page to
display
data
in
a
pivot format. My code is:
<OBJECT CLAS
xSID=clsid:0002E552-0000-0000-C000-000000000046
id="Pivot"
VIEWASTEXT></OBJECT>
oView.FieldSets("ProductName").Fields(0).IsHyperlink = True
When I use
oView.FieldSets("ProductName").Fields(0).Hyperlink.SubAddress
=
"top",
I
got
"Object doesn't support this property" error.
How can I set a value to Hyperlink.SubAddress? What object
should
be
for
Hyperlink.Subaddress?
Thanks a lot!