Overview
Examples
Screenshots
Comparisons
Applications
Download
Documentation
Tutorials
Bazaar
Status & Roadmap
FAQ
Authors & License
Forums
Funding Ultimate++
Search on this site
Search in forums












SourceForge.net Logo
Home » U++ Library support » ArrayCtrl, HeaderCtrl & GridCtrl » GridCtrl: Find and Select Row after Keypress
Re: GridCtrl: Find and Select Row after Keypress [message #19736 is a reply to message #19735] Thu, 08 January 2009 11:37 Go to previous messageGo to previous message
unodgs is currently offline  unodgs
Messages: 1366
Registered: November 2005
Location: Poland
Ultimate Contributor

You can manually iterate over all grid rows:
FOREACH_ROW(grid)
{
   if(String(grid(NAME)).StartsWith("W"))
   {
      grid.Select(grid.GetCurrentRow());
   }
}

Probably there is no StartsWith method, but generally you can do it in this way.
 
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: GridCtrl - WhenRemoveRow doesn't work
Next Topic: HomeBudget AlwaysDrop
Goto Forum:
  


Current Time: Tue Jun 18 14:07:08 CEST 2024

Total time taken to generate the page: 0.06985 seconds