473,672 Members | 2,666 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to kow the Lenght of the Text in the Current DataGridTextBox Column (on MouseMove)

Hi,

I need to know the Lenght of the Text in a DataGridTextBox Column when I move
with the mouse over it, and show it in a ToolTip.
I have something that works, but it works only when the DataGridextBoxC olumn
is not selected. Once I select it (type some additional text in it), I don't
see the ToolTip anymore...

I gues that's because it isn't anymore the DataGrid that the Mouse is moving
over, but the Cell. Does anybody knows a solution for this?

Thanks a lot in advance,

Pieter
You can see my DataGrid_MouseM ove here:

Private Sub dbgGrid_MouseMo ve(ByVal sender As Object, ByVal e As
System.Windows. Forms.MouseEven tArgs) Handles dbgGrid.MouseMo ve
Dim p1 As New Point

p1 = dbgGrid.PointTo Client(Cursor.P osition)

Dim intCol As Integer = dbgGrid.HitTest (p1).Column
Dim intRow As Integer = dbgGrid.HitTest (p1).Row

If (intCol = 3) And (intRow > -1) Then
Dim strT As String
Try
strT = dbgGrid.Item(in tRow, intCol).ToStrin g
Catch ex As Exception
strT = ""
End Try

strT = strT & vbCrLf & "Length: " & strT.Length

totImport.SetTo olTip(dbgGrid, strT)
totImport.Activ e = True
Else
totImport.SetTo olTip(dbgGrid, "")
totImport.Activ e = False
End If
End Sub

Jul 21 '05 #1
1 1477
Hm ok, I found it myself.. :-)

Just adding a Handler to the MouseMove-event of the
TableStyle.Grid columnStyels(in tColumnNumber). TextBox...
"DraguVaso" <pi**********@h otmail.com> wrote in message
news:%2******** ********@TK2MSF TNGP11.phx.gbl. ..
Hi,

I need to know the Lenght of the Text in a DataGridTextBox Column when I move with the mouse over it, and show it in a ToolTip.
I have something that works, but it works only when the DataGridextBoxC olumn is not selected. Once I select it (type some additional text in it), I don't see the ToolTip anymore...

I gues that's because it isn't anymore the DataGrid that the Mouse is moving over, but the Cell. Does anybody knows a solution for this?

Thanks a lot in advance,

Pieter
You can see my DataGrid_MouseM ove here:

Private Sub dbgGrid_MouseMo ve(ByVal sender As Object, ByVal e As
System.Windows. Forms.MouseEven tArgs) Handles dbgGrid.MouseMo ve
Dim p1 As New Point

p1 = dbgGrid.PointTo Client(Cursor.P osition)

Dim intCol As Integer = dbgGrid.HitTest (p1).Column
Dim intRow As Integer = dbgGrid.HitTest (p1).Row

If (intCol = 3) And (intRow > -1) Then
Dim strT As String
Try
strT = dbgGrid.Item(in tRow, intCol).ToStrin g
Catch ex As Exception
strT = ""
End Try

strT = strT & vbCrLf & "Length: " & strT.Length

totImport.SetTo olTip(dbgGrid, strT)
totImport.Activ e = True
Else
totImport.SetTo olTip(dbgGrid, "")
totImport.Activ e = False
End If
End Sub


Jul 21 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1111
by: Gilgamesh | last post by:
I need to change the text in a grid text column, on a Windows form, to show the text in blue and underlined. I created a font and assigned it to the textbox.font property but it seems like grid is overriding the property. Is there any way to do this? Thanks, Gilgamesh
1
8741
by: Sangeetha | last post by:
I have a datagrid column which I want to expand when i type in some text. Initially I tried increasing the column width on the key down event of that DataGridTextBoxColumn, but it didn't work out as expected. Now, I am trying to increase the height of the row to make it as a multiline column. private DataGridTextBoxColumn dgcComments dgcComments = new DataGridTextBoxColumn() dgcComments.TextBox.Multiline = true...
1
1901
by: DraguVaso | last post by:
Hi, I need to know the Lenght of the Text in a DataGridTextBoxColumn when I move with the mouse over it, and show it in a ToolTip. I have something that works, but it works only when the DataGridextBoxColumn is not selected. Once I select it (type some additional text in it), I don't see the ToolTip anymore... I gues that's because it isn't anymore the DataGrid that the Mouse is moving over, but the Cell. Does anybody knows a solution...
0
1376
by: Ben | last post by:
module main ... application.run(new splashform) .. end module after a few screen, I try to load a new codes I got from MSDN on datagrid that works on its own. I took out submain and ran datagridForm from my mainForm:
24
2541
by: John Salerno | last post by:
This is a real small point, but I'd like to hear what others do in this case. It's more an 'administrative' type question than Python code question, but it still involves a bit of syntax. One thing I like to do is use tabs for my indentation, because this makes it easy to outdent when I need to start a new line in column 1. I can press backspace once and move 4 spaces to the left. But I read in the PEP that spaces are recommended over...
5
1382
by: Steven Berkovitz | last post by:
I am trying (without any luck) to find a way to parse a string and output its processed results. ie: string text = "This is text from a CMS tool <asp:Label runat=\"server\" id=\"test\" text=\"Hello World\" />"; OR
1
1681
by: daldridge | last post by:
I have a unique-elements/sorting question (who doesn't?), but haven't yet been able to get appropriate template/select/for-each processing working. I don't fully grok the Muenchian technique yet (still an XSLT n00b), but I'm not sure that's the way to go anyway... What I'm trying to accomplish is generation of XML Schema output from a given XML input, with "xs:import" elements in the output with the "namespace" and "schemaLocation"...
4
4401
by: sanparab | last post by:
I am a new user for MS Access 2003, I want to transfer a data of Fixed lenght text file into Access Tabel. The data is contained of four Record Set those are as follows 1. The header record type is ‘H’. 2. The detail record type is ‘D’. 3. The summary record type is ‘S’. 4. “END OF DOCUMENT” record is left justified with no record type. and the data is as follows
1
4894
by: semomaniz | last post by:
I have a form where i have created the form dynamically. First i manually added a panel control to the web page. Then i added another panel dynamically and inside this panel i created tables. I have set text boxes and labels inside the table rows. I then added a button. All of these are done through code. The problem that i am having is i can get the value from a text box with resides inside the first panel (out side of panel that is...
0
8505
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8423
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8947
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8851
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
7479
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5722
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
2844
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2097
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1842
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.