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

Visual Basic

 
Questionhow to install/use webcam in Vb 6.0? Pin
whippersnapper7622-Aug-06 2:40
whippersnapper7622-Aug-06 2:40 
QuestionHandling System.Runtime.InteropServices.ExternalException] {System.Runtime.InteropServices.ExternalException} System.Runtime.InteropServices.ExternalException in .Net Pin
psmukil22-Aug-06 2:15
psmukil22-Aug-06 2:15 
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 
popalzai wrote:
New Point(textBox1.Right, Me.textBox1.Bottom))


There's you're problem right there - the point you're creating will plot the location relative to the screen, not the textbox control or it's containing form. You have to take into account the location of the textbox on the form AND the location of the form itself.

Try this, it'll show the popup over the top right of the textbox no matter where the form is or what window state it's in (normal/maximized).

Private Sub TextBox1_KeyUp(....) Handles TextBox1.KeyUp
        If e.KeyCode = Keys.F1 Then
            Help.ShowPopup(Me.TextBox1, "Help is at hand", New Point((Me.Left + TextBox1.Right), (Me.Top + TextBox1.Bottom)))
        End If
    End Sub

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 
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 

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.