Click here to Skip to main content
15,913,685 members
Home / Discussions / Visual Basic
   

Visual Basic

 
Questionshowpopup help. Pin
popalzai22-Aug-06 2:12
popalzai22-Aug-06 2:12 
AnswerRe: showpopup help. Pin
Dave Sexton22-Aug-06 2:51
Dave Sexton22-Aug-06 2:51 
GeneralRe: showpopup help. Pin
popalzai22-Aug-06 4:52
popalzai22-Aug-06 4:52 
GeneralRe: showpopup help. Pin
Dave Sexton28-Aug-06 2:43
Dave Sexton28-Aug-06 2:43 
GeneralRe: showpopup help. Pin
popalzai29-Aug-06 4:29
popalzai29-Aug-06 4:29 
GeneralRe: showpopup help. Pin
Dave Sexton29-Aug-06 21:24
Dave Sexton29-Aug-06 21:24 
GeneralRe: showpopup help. Pin
popalzai2-Sep-06 4:21
popalzai2-Sep-06 4:21 
GeneralRe: showpopup help. Pin
Dave Sexton4-Sep-06 2:41
Dave Sexton4-Sep-06 2:41 
Then you mess around until you get it right.

Private Sub txt_KeyUp(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles txt.KeyUp
        If e.KeyCode = Keys.F1 Then
            Dim x, y As Integer
            Dim r As Rectangle = txt.RectangleToScreen(txt.Bounds)
            x = (r.Left - txt.Left) + txt.Width
            y = (r.Bottom - txt.Top) - txt.Height
            Help.ShowPopup(Me.txt, "Help is at hand", New Point(x, y))
        End If
    End Sub

Questionsetup package(answer very fast) Pin
md_refay22-Aug-06 0:50
md_refay22-Aug-06 0:50 
AnswerRe: setup package (very fast answer) Pin
Guffa22-Aug-06 6:14
Guffa22-Aug-06 6:14 
Questionsound Pin
md_refay22-Aug-06 0:45
md_refay22-Aug-06 0:45 
AnswerRe: sound Pin
Polymorpher28-Aug-06 17:44
Polymorpher28-Aug-06 17:44 
Questiondate format Pin
md_refay22-Aug-06 0:43
md_refay22-Aug-06 0:43 
QuestionHow to send & recive parameters from .net exe to another .net exe Pin
jagmit2021-Aug-06 21:25
jagmit2021-Aug-06 21:25 
AnswerRe: How to send & recive parameters from .net exe to another .net exe Pin
Christian Graus21-Aug-06 22:26
protectorChristian Graus21-Aug-06 22:26 
QuestionNeed some help - Storing Image and text data in access DB Pin
Jats_4ru21-Aug-06 20:45
Jats_4ru21-Aug-06 20:45 
AnswerRe: Need some help - Storing Image and text data in access DB Pin
rabih_kai21-Aug-06 21:42
rabih_kai21-Aug-06 21:42 
GeneralRe: Need some help - Storing Image and text data in access DB Pin
tanya foster22-Aug-06 8:30
tanya foster22-Aug-06 8:30 
GeneralRe: Need some help - Storing Image and text data in access DB Pin
Jats_4ru22-Aug-06 21:44
Jats_4ru22-Aug-06 21:44 
QuestionSetting the intellisense for my Objects [modified] Pin
TheFoZ21-Aug-06 20:28
TheFoZ21-Aug-06 20:28 
AnswerRe: Setting the tool tips for my Objects Pin
Jats_4ru21-Aug-06 21:40
Jats_4ru21-Aug-06 21:40 
GeneralRe: Setting the tool tips for my Objects Pin
TheFoZ22-Aug-06 2:25
TheFoZ22-Aug-06 2:25 
Questionhashtable to array, need help with array to string Pin
vb.netjunkie21-Aug-06 20:02
vb.netjunkie21-Aug-06 20:02 
AnswerRe: hashtable to array, need help with array to string Pin
Christian Graus21-Aug-06 20:44
protectorChristian Graus21-Aug-06 20:44 
Questionsyntax error in update statement...? Pin
campbells21-Aug-06 18:08
campbells21-Aug-06 18:08 

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.