Codejock Forums Homepage
Forum Home Forum Home > Codejock Products > ActiveX COM > Report Control
  New Posts New Posts RSS Feed - HyperLink With Attachment Icon
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

HyperLink With Attachment Icon

 Post Reply Post Reply
Author
Message
SHAN View Drop Down
Groupie
Groupie
Avatar

Joined: 17 July 2010
Location: Dubai
Status: Offline
Points: 73
Post Options Post Options   Thanks (0) Thanks(0)   Quote SHAN Quote  Post ReplyReply Direct Link To This Post Topic: HyperLink With Attachment Icon
    Posted: 07 April 2011 at 7:19am
Hi,


 Is that Possible to have Hyperlink with Column Icon...? It works with Text Only...?



Anyone Please help...!



Product: Xtreme SuitePro (ActiveX) version 15.0.2
Platform: Windows 7 Professional
Language: Visual Basic 6.0
Back to Top
jpbro View Drop Down
Senior Member
Senior Member
Avatar

Joined: 12 January 2007
Status: Offline
Points: 1355
Post Options Post Options   Thanks (0) Thanks(0)   Quote jpbro Quote  Post ReplyReply Direct Link To This Post Posted: 07 April 2011 at 8:08am
You can do just about anything using markup ;)

Here's an example: http://forum.codejock.com/forum_posts.asp?TID=14983&PID=52962&title=markup-user-interface-ideas#52962

You should be able to modify the switch UI class example to just be a button that fires a clicked event where you can open a file.
Product: Xtreme SuitePro (ActiveX) version 16.2.6
Platform: Windows XP - SP3

Language: Visual Basic 6.0 SP6

Back to Top
jpbro View Drop Down
Senior Member
Senior Member
Avatar

Joined: 12 January 2007
Status: Offline
Points: 1355
Post Options Post Options   Thanks (0) Thanks(0)   Quote jpbro Quote  Post ReplyReply Direct Link To This Post Posted: 07 April 2011 at 8:17am
Actually, you could just use Markup with the Hyperlink tag.

Something like this:


Option Explicit

Public Sub ClickedAttachment(po_Sender As Object, po_Args As Object)
   MsgBox "Open File: " & Me.ReportControl1.FocusedRow.Record.Item(0).Value
End Sub

Private Sub Form_Load()
   With Me.ReportControl1
      .EnableMarkup = True
      .MarkupContext.SetHandler Me
     
      With .Columns.Add(.Columns.Count, "Test", 100, True)
  
      End With
     
      With .Records.Add
         With .AddItem("C:\SomeFile.txt")
            .Caption = "<TextBlock><Hyperlink Click='ClickedAttachment'><Image Source='file://C:\Five\Icons\Attach.png'/></Hyperlink></TextBlock>"
         End With
      End With
     
      .Populate
   End With
End Sub

Product: Xtreme SuitePro (ActiveX) version 16.2.6
Platform: Windows XP - SP3

Language: Visual Basic 6.0 SP6

Back to Top
 Post Reply Post Reply
  Share Topic   

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.04
Copyright ©2001-2021 Web Wiz Ltd.

This page was generated in 0.172 seconds.