Click here to Skip to main content
15,890,690 members
Home / Discussions / Visual Basic
   

Visual Basic

 
Questionvb.net projects Pin
shreya12326-Jun-07 2:29
shreya12326-Jun-07 2:29 
AnswerRe: vb.net projects Pin
originSH26-Jun-07 2:48
originSH26-Jun-07 2:48 
AnswerRe: vb.net projects Pin
SHatchard26-Jun-07 2:48
SHatchard26-Jun-07 2:48 
AnswerRe: vb.net projects Pin
Colin Angus Mackay26-Jun-07 2:54
Colin Angus Mackay26-Jun-07 2:54 
AnswerRe: vb.net projects Pin
Navneet Hegde26-Jun-07 4:01
Navneet Hegde26-Jun-07 4:01 
Questionput tooltip on grid column Pin
deepalititi26-Jun-07 1:50
deepalititi26-Jun-07 1:50 
AnswerRe: put tooltip on grid column Pin
Xandip26-Jun-07 19:16
Xandip26-Jun-07 19:16 
GeneralRe: put tooltip on grid column Pin
ashamsa2-Jul-07 0:29
ashamsa2-Jul-07 0:29 
In the grid's Mousemove Event Use this code to display the contents of Cell as tooltip
Hope this helps

dim str as string = ""
Dim pt As Point = New Point(e.X, e.Y)
Dim hti As DataGrid.HitTestInfo = gridName.HitTest(pt)
If gridName.VisibleRowCount > 0 Then
Dim bmb As BindingManagerBase = frm.BindingContext(gridName.DataSource, gridName.DataMember)

If hti.Row < bmb.Count And hti.Type = DataGrid.HitTestType.Cell Then

str = gridName.Item(hti.Row, hti.Column) ' Or the required tool tip
Else
str = ""
End If
Else
str =""
End If
if str <> "" then
ToolTip1.SetToolTip(sender, str)
Questionput tooltip on grid column Pin
deepalititi26-Jun-07 1:50
deepalititi26-Jun-07 1:50 
QuestionHow can i place two buttons in a component [modified] Pin
anujose26-Jun-07 1:36
anujose26-Jun-07 1:36 
AnswerRe: How can i place two buttons in a component Pin
SHatchard26-Jun-07 2:17
SHatchard26-Jun-07 2:17 
AnswerRe: How can i place two buttons in a component Pin
Taylor Kobani26-Jun-07 2:45
Taylor Kobani26-Jun-07 2:45 
AnswerRe: How can i place two buttons in a component Pin
Navneet Hegde26-Jun-07 4:07
Navneet Hegde26-Jun-07 4:07 
QuestionConvert VBScript to C# Pin
originSH26-Jun-07 1:19
originSH26-Jun-07 1:19 
AnswerRe: Convert VBScript to C# Pin
Navneet Hegde26-Jun-07 4:13
Navneet Hegde26-Jun-07 4:13 
GeneralRe: Convert VBScript to C# Pin
originSH26-Jun-07 4:46
originSH26-Jun-07 4:46 
GeneralRe: Convert VBScript to C# Pin
Dave Kreskowiak26-Jun-07 5:06
mveDave Kreskowiak26-Jun-07 5:06 
GeneralRe: Convert VBScript to C# Pin
originSH26-Jun-07 5:31
originSH26-Jun-07 5:31 
AnswerRe: Convert VBScript to C# Pin
originSH26-Jun-07 4:59
originSH26-Jun-07 4:59 
GeneralRe: Convert VBScript to C# Pin
Dave Kreskowiak26-Jun-07 5:09
mveDave Kreskowiak26-Jun-07 5:09 
GeneralRe: Convert VBScript to C# Pin
originSH26-Jun-07 5:35
originSH26-Jun-07 5:35 
GeneralRe: Convert VBScript to C# Pin
Dave Kreskowiak26-Jun-07 6:17
mveDave Kreskowiak26-Jun-07 6:17 
GeneralRe: Convert VBScript to C# Pin
originSH26-Jun-07 6:26
originSH26-Jun-07 6:26 
GeneralRe: Convert VBScript to C# Pin
Dave Kreskowiak26-Jun-07 6:38
mveDave Kreskowiak26-Jun-07 6:38 
GeneralRe: Convert VBScript to C# Pin
originSH26-Jun-07 21:50
originSH26-Jun-07 21:50 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.