INTELLIGENT WORK FORUMS FOR COMPUTER PROFESSIONALS
Come Join Us!
Are you a Computer / IT professional? Join Tek-Tips now!
- Talk With Other Members
- Be Notified Of Responses
To Your Posts
- Keyword Search
- One-Click Access To Your
Favorite Forums
- Automated Signatures
On Your Posts
- Best Of All, It's Free!
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.
Partner With Us!
"Best Of Breed" Forums Add Stickiness To Your Site

(Download This Button Today!)
Feedback
"...It is good to know that there are groups such as this willing to share knowledge in this money driven economy..."
Geography
Where in the world do Tek-Tips members come from?
|
Microsoft: Visual InterDev FAQ
|
Grid DTC's
|
Making the paging buttons into Image buttons
Posted: 25 Apr 01
|
The code needed to set a grid's page navigation buttons (Prev, Next etc.) is as follows:
Somewhere in the thisPage_onenter()...
with grdIssueList.getPagingNavbar() with .getButton(0) .setStyle 1 .src = "../images/first.gif" .alt = "First" end with with .getButton(1) .setStyle 1 .src = "../images/back.gif" .alt = "Prev" end with with .getButton(2) .setStyle 1 .src = "../images/next.gif" .alt = "Next" end with with .getButton(3) .setStyle 1 .src = "../images/last.gif" .alt = "Last" end with end with
Change the name of the grid (in bold above) to the appropriate one. (And the path to the images, of course!)
The .setStyle 1 bit tells the button to be an Image button (0 = Text, 1 = Image).
You should check to see if the grid uses navigation buttons first (else an error may occur).
mbeedell@websitedesign.co.uk
|
Back to Microsoft: Visual InterDev FAQ Index
Back to Microsoft: Visual InterDev Forum |
|
 |
|
Join Tek-Tips® Today!
Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.
Here's Why Members Love Tek-Tips Forums:
Talk To Other Members
- Notification Of Responses To Questions
- Favorite Forums One Click Access
- Keyword Search Of All Posts, And More...
Register now while it's still free!
Already a member? Close this window and log in.
Join Us Close