No announcements
Found 2608465 threads
-
1 Votes
Selected Row losing its highlighted row when losing focus
Hi Marco I've found a way to get the focus to stay on my textbox:- private void lstViewBankAccounts_MouseUp(object sender, MouseEventArgs e) ...Answered | 7 Replies | 2209 Views | Created by jmatty2000 - Friday, March 9, 2012 11:50 PM | Last reply by Thiru kumaran - Saturday, March 10, 2012 4:57 PM -
0 Votes
highlight row when losing focus
When I press a button of a row, it will go to another form.Answered | 1 Replies | 3732 Views | Created by hi123456 - Saturday, December 25, 2010 1:28 AM | Last reply by Pavel Celba - Saturday, December 25, 2010 1:50 AM -
2 Votes
Button Gets Focus & Highlight
Anyways, here is the way i set up a quick button class to draw the highlight color around the button when it gets focus by the Tab key being ...Answered | 2 Replies | 4684 Views | Created by mholmes_ADM - Tuesday, October 14, 2014 8:31 PM | Last reply by IronRazerz - Tuesday, October 14, 2014 11:45 PM -
0 Votes
Highlight row in DetailsView when focus on control
User-2054057000 posted I think you want to show the row in highlighted color when user is working on some control of Details View in ...Answered | 2 Replies | 113 Views | Created by Anonymous - Wednesday, February 20, 2019 10:44 AM | Last reply by Anonymous - Wednesday, February 20, 2019 12:28 PM -
1 Votes
Row selection highlight removal from just one column in List Control
This time the new code did run as the painting took place, however I still have the focus/selection default color of blue covering up the background color in the List ...Answered | 10 Replies | 4521 Views | Created by kerplatz - Friday, August 3, 2012 4:58 PM | Last reply by Renjith V Ramachandran - Tuesday, August 7, 2012 6:43 AM -
2 Votes
Highlighting a row of cells in a grid
The highlighted row in my grid only stays as it is (on the first row in the grid), eventhough in the background movement in the records are taking place.Answered | 8 Replies | 6145 Views | Created by Yong Mallare - Wednesday, August 24, 2011 2:56 AM | Last reply by Yong Mallare - Thursday, August 25, 2011 1:54 AM -
1 Votes
highlight a row in a table
Anyways, if you want to archieve the target, you could try to use custom to add some JavaScript to control the mouse actives.Answered | 3 Replies | 3569 Views | Created by Marinostrus - Monday, May 11, 2009 8:41 AM | Last reply by Marinostrus - Tuesday, May 12, 2009 11:50 AM -
0 Votes
Highlight Row
You can change it accordingly For Each clRow In Rng For Each cl In Range(Rng.Row & ":" & Rng.Row) If VBA.Len(cl.Value) = ...Answered | 4 Replies | 719 Views | Created by ShailShin - Monday, July 7, 2014 10:25 AM | Last reply by ShailShin - Thursday, July 10, 2014 6:53 AM -
0 Votes
Highlight row in report?
Of course, if your request is to dynamically highlight your row as you mouse over it in the browser, then I don't think there is a way you can do this in SSRS.Answered | 6 Replies | 4160 Views | Created by Sanjeev Shrestha - Thursday, May 13, 2010 3:34 PM | Last reply by LearnBI - Thursday, March 26, 2015 10:50 PM -
3 Votes
Highlight a row in repeater control in ItemCommand event
There's a somehow difficult way to do that with ItemDataBound - but I used that ...Answered | 3 Replies | 16724 Views | Created by a.Net fan - Friday, February 26, 2010 1:37 PM | Last reply by paradonym - Friday, April 11, 2014 12:38 PM -
5 Votes
highlight row in wpf
I found a way to highlight/change the rowcolour depending on a value..Answered | 5 Replies | 4489 Views | Created by linkit - Tuesday, February 22, 2011 1:57 PM | Last reply by linkit - Wednesday, February 23, 2011 2:15 PM -
0 Votes
highlight row in c#
Based on my understanding your issue was wanted to make highlight in datagrid If I'm not misunderstanding you I'll suggest you a good way to solve your issue, Hope it will ...Answered | 3 Replies | 3122 Views | Created by jhacharya - Monday, June 14, 2010 2:23 PM | Last reply by Yasser Zamani - Mr. Help - Tuesday, June 15, 2010 6:30 AM -
0 Votes
Highlighting a column in a single row on a subform
Now the whole field is highlighted.Answered | 2 Replies | 1334 Views | Created by AllTheGoodNamesWereTaken - Thursday, February 7, 2013 8:29 PM | Last reply by Henry Habermacher - Friday, February 8, 2013 2:58 AM -
1 Votes
Programmatic Change of DataGrid Row Leaves Mouse Clicked Row Highlighted
Xavier, I had previously read your article (nice) and tried the focus approach but it did not work for me.Answered | 4 Replies | 573 Views | Created by Tony Lugg - Thursday, February 25, 2016 5:05 PM | Last reply by Tony Lugg - Monday, March 7, 2016 6:31 PM -
0 Votes
Highlight the row on row selection or mouse over
thanks sir , but my requirement is to highlight the row of first report page from where link button got clicked.Answered | 5 Replies | 4119 Views | Created by Shambhu mishra - Thursday, October 18, 2012 10:42 AM | Last reply by Tim Pacl - Thursday, October 18, 2012 3:15 PM -
1 Votes
Focus on a row in the DataGridView
To focus on the newly added row :- dataGridView1.Rows[dataGridView1.Rows.Count - 1].Selected = true; or you can use this to ...Answered | 8 Replies | 42265 Views | Created by NetRider - Wednesday, April 19, 2006 3:12 PM | Last reply by DarkRam - Wednesday, January 25, 2012 7:25 PM -
0 Votes
Controls Highlighting on different location
Since you couldn’t locate the control when using DrawHighlight().Answered | 3 Replies | 528 Views | Created by Vamsi Goutham - Thursday, December 3, 2015 11:55 AM | Last reply by lake Xiao - Monday, December 7, 2015 6:06 AM -
0 Votes
highlight a row on click of a link in a row (SSRS 2008)
If the link is just to highlight the row then you can use the approach described in the above thread to reload the report, passing in the row unique id and then ...Answered | 1 Replies | 1874 Views | Created by Ramakant Singh - Thursday, October 18, 2012 5:12 PM | Last reply by Tim Pacl - Thursday, October 18, 2012 5:46 PM -
1 Votes
Highlight cells in rows with conditions.
Sub ColorCells() Const FirstRow = 2 Dim LastRow As Long Dim CurRow As Long Dim ValA, ValB, ValC Application.ScreenUpdating = False ...Answered | 4 Replies | 821 Views | Created by Ahmed Morsyy - Saturday, September 19, 2015 8:06 PM | Last reply by Ahmed Morsyy - Sunday, September 20, 2015 1:08 PM -
1 Votes
Highlight certain row labels
Hello if I always want to highlight a particular row label/column field combination, can I set up conditional formatting to do this?Answered | 1 Replies | 703 Views | Created by AlexMartini - Wednesday, October 26, 2016 7:07 PM | Last reply by AV111 - Thursday, October 27, 2016 3:30 AM - Items 1 to 20 of 2608465 Next ›
No announcements