| By Bruce Armstrong | Article Rating: |
|
| February 3, 2006 02:00 PM EST | Reads: |
27,682 |
We also override the OnClick method. The DataWindow control doesn't natively support a click-on-column header sort operation. The overridden method uses the PFC click-on-column header code modified to work in a .NET environment.
OnClick
Protected Overrides Sub OnClick
(ByVal e As EventArgs)
Dim clickedobject As Sybase.DataWindow.ObjectAtPointer
Dim objectname, columnname, sort As String
clickedobject = MyBase.ObjectUnderMouse()
Select Case clickedobject.Band.Type
Case Sybase.DataWindow.BandType.Header
objectname = clickedobject.Gob.Name
If objectname.Substring(objectname
.Length() - 2, 2) = "_t" Or _
objectname.Substring(objectname.
Length() - 2, 2) = "_a" Then
columnname = objectname.Sub
string(0, objectname.Length() - 2)
If columnname = sortcolumnname
Then
If sortorder = " A" Then
sortorder = " D"
Else
sortorder = " A"
End If
Else
sortcolumnname = columnname
sortorder = " A"
End If
sort = sortcolumnname + sortorder
MyBase.SetSort(sort)
MyBase.Sort()
End If
End Select
MyBase.OnClick(e)
End Sub
One of the main reasons for overriding the DataWindow control - other than to get it not to move when the title bar is shown - is because the DataWindow object color properties take RGB values. The system color values in the .NET framework are ARGB values (they contain an alpha component). The GetRGB method that I added converts the ARGB value to an RGB value that the DataWindow can use.
GetRGB
Public Function GetRGB(ByVal theColor As Color) As String
Dim theRGB As Long
theRGB = RGB(theColor.R(), theColor.G(), theColor.B())
Return theRGB.ToString()
End Function
The color setting methods I've added to the subclassed control accept .NET system colors and call that method internally to convert the value and then set the appropriate DataWindow object property. One example of this is the SetColumnBackColor method; the other color setting methods are similar.
SetColumnBackColor
Public Sub SetColumnBackColor
(ByVal theColor As Color)
Dim columns As ArrayList = GetVisibleColumns()
Dim col As String
For Each col In columns
MyBase.SetProperty(obj + ".BackGround.Mode", "0")
MyBase.SetProperty(col + ".Background.Color", GetRGB(theColor))
Next
End Sub
One of the color settings that the DataWindow control doesn't provide native support for is to have alternating rows appear with different background colors. That's done easily enough by adding a property expression to the DataWindow object and I've added a method to the overridden control to make it simpler.
SetRowAlternatingColors
Public Sub SetRowAlternating
Colors(ByVal OddColor As Color, ByVal EvenColor As Color)
Dim columns As ArrayList = GetVisibleColumns()
Dim col, modify As String
Dim rc As Int32
modify = GetRGB(OddColor) + _~tif ( MOD( getrow(),2 )=0 ," +
GetRGB(EvenColor) + "," + GetRGB(OddColor) + ")"
For Each col In columns
MyBase.SetProperty(obj + ".BackGround.Mode", "0")
rc = MyBase.SetProperty(col + ".Background.Color", modify)
Next
End Sub
Similar to the issues with the .NET system colors, the .NET Framework Font is a class whereas the DataWindow has a series of independent font properties. The Font setting methods I've added to the subclassed DataWindow control accept the .NET Framework Font class and then access the individual properties. One example is the SetColumnFont method; the other font setting methods are similar.
SetColumnFont
Public Sub SetColumnFont(ByVal theFont As Font)
Dim columns As ArrayList = GetVisibleColumns()
Dim col As String
For Each col In columns
MyBase.SetProperty(col + ".Font.Face", theFont.Name)
MyBase.SetProperty(col + ".Font.Height", "-" + theFont.Size.ToString())
Next
End Sub
There are some helper functions defined for the subclassed control as well. One is the GetHeaderObjects method. It looks through all of the controls on the DataWindow object and determines which are static text controls in the header band.
GetHeaderObjects
Public Function GetHeaderObjects() As ArrayList
Dim objects, obj As String
Dim objarray As String()
Dim headerobjects As New ArrayList
objects = MyBase.GetProperty ("DataWindow.Objects")
objarray = objects.Split(vbTab.ToCharArray())
For Each obj In objarray
If MyBase.GetProperty(obj + ".Type") = "text" Then
If MyBase.GetProperty(obj + ".Band") = "header" Then
headerobjects.Add(obj)
End If
End If
Next
Return headerobjects
End Function
A somewhat similar approach is used by the GetColumns method to get an array containing all of the columns in the DataWindow object.
GetColumns
Public Function GetColumns() As ArrayList
Dim i, j As Int16
j = MyBase.ColumnCount()
Dim columns As New ArrayList
Dim columnname As String
For i = 1 To j
columnname = MyBase.GetProperty("#" + i.ToString() + ".Name")
columns.Add(columnname)
Next
Return columns
End Function
Published February 3, 2006 Reads 27,682
Copyright © 2006 SYS-CON Media, Inc. — All Rights Reserved.
Syndicated stories and blog feeds, all rights reserved by the author.
More Stories By Bruce Armstrong
Bruce Armstrong is a development lead with Integrated Data Services (www.get-integrated.com). A charter member of TeamSybase, he has been using PowerBuilder since version 1.0.B. He was a contributing author to SYS-CON's PowerBuilder 4.0 Secrets of the Masters and the editor of SAMs' PowerBuilder 9: Advanced Client/Server Development.
![]() |
monkfish 11/27/08 08:48:36 AM EST | |||
![]() |
SohbetGor 11/17/08 09:42:36 AM EST | |||
thanks you... |
||||
![]() |
Qarisma 11/05/08 05:54:22 PM EST | |||
But real Güzeş Site head turn before such excellent Sitelent see _______________ |
||||
![]() |
alvin 07/23/08 08:39:54 PM EDT | |||
how can i change the highlight color of selected row? the default is blue which looks heavy. |
||||
![]() |
Bruce Armstrong 12/10/07 12:27:42 PM EST | |||
I'd suggest posting your question in Sybase's DataWindow.Net forum. http://www.sybase.com/detail?id=1031119 It would be much easier to address there. |
||||
![]() |
Praveen 12/10/07 02:02:28 AM EST | |||
Sir , We are using Datawindow.net 2.0[Trail] in VS2005 with ASP.Net 2.0 & C#.Net . Using WebDatawindow.net in ASP.Net data retrieving and also For security problem most of developer suggests that 'medium trust'and also our webserver support only medium trust.So we are changing Security policy to 'medium'. ***********Then I am facing a crucial problem ************ Exception Details: System.Security.Policy.PolicyException: Required permissions cannot be acquired. How can overcome to in this problem . If you have any solution ... pls forward me ... |
||||
![]() |
Bruce Armstrong 11/14/07 07:09:07 AM EST | |||
I'd suggest posting your question in Sybase's DataWindow.Net forum: http://www.sybase.com/detail?id=1031119 It would be much easier to address there. |
||||
![]() |
Atif Riaz 11/14/07 01:51:39 AM EST | |||
Hey this is atif i have read your articles they were really help full. what i am trying is that i am using data window 2.0 in Dotnet now i want any CSS file like we do it for html or asp pages i want to define CSS file from where i can formate the report made in Data Window automatically. I need your help? |
||||
![]() |
Bruce Armstrong 02/07/06 03:58:48 PM EST | |||
If you can't find it here, check the Sybase CodeXchange site. I loaded it there as well: http://datawindownet.codexchange.sybase.com/servlets/ProjectDocumentList... |
||||
![]() |
Mike 02/07/06 02:58:03 PM EST | |||
Where is an arcticle code? |
||||
![]() |
SYS-CON Australia News Desk 02/03/06 01:45:59 PM EST | |||
In this article, we're going to look at how DataWindow.NET technology is a simpler but more powerful way of formatting data in the presentation layer. We'll be taking a sample application provided by Microsoft for .NET and implementing it using DataWindow.NET technology. |
||||
- Kindle 2 vs Nook
- Confessions of a Ulitzer Addict
- IBM Hardware Chief, Intel VC Exec Arrested in Insider Trading Scam
- Tactical Cloud Computing Panel at 1st Annual GovIT Expo
- Ulitzer.com Named Exclusive "New Media" Sponsor of Cloud Computing Conference & Expo
- Infrastructure-as-a-Service Will Mature in 2010: Microsoft's David Chou
- Windows 7 – Microsoft’s First Step to the Cloud
- Cloud Expo and the End of Tech Recession
- Jill Tummler Singer, Deputy CIO of CIA, Keynotes at GovIT Expo
- Reality Check at the Cloud Computing Expo
- Visual Studio 2010 Is Cloud Friendly
- Fired SCO CEO Fires Back
- Kindle 2 vs Nook
- The Difference Between Web Hosting and Cloud Computing
- Ajax in RichFaces 3.3, JSF 2 and RichFaces 4
- Confessions of a Ulitzer Addict
- Wave on Ulitzer: Confessions of a Google Wave Fanboy
- IBM Hardware Chief, Intel VC Exec Arrested in Insider Trading Scam
- Cloud Computing Best Practices
- Tactical Cloud Computing Panel at 1st Annual GovIT Expo
- Ulitzer.com Named Exclusive "New Media" Sponsor of Cloud Computing Conference & Expo
- Infrastructure-as-a-Service Will Mature in 2010: Microsoft's David Chou
- Eval JavaScript in a Global Context
- Windows 7 – Microsoft’s First Step to the Cloud
- Google Maps and ASP.NET
- Crystal Reports XI & How It Has Changed
- Converting VB6 to VB.NET, Part I
- Creating Controls for.NET Compact Framework in Visual Studio 2005
- Where Are RIA Technologies Headed in 2008?
- How to Write High-Performance C# Code
- AJAX World RIA Conference & Expo Kicks Off in New York City
- Implementing Tab Navigation with ASP.NET 2.0
- i-Technology Photo Exclusive: Bill Gates & Steve Jobs In "Nerds"
- .NET Archives: Getting Reacquainted with the Father of C#
- i-Technology Viewpoint: "SOA Sucks"
- Programmatically Posting Data to ASP .NET Web Applications





























