Click here to Skip to main content
15,906,947 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Vb 6.0 Pin
Colin Angus Mackay27-Jun-09 2:14
Colin Angus Mackay27-Jun-09 2:14 
GeneralRe: Vb 6.0 Pin
Enver Maroshi27-Jun-09 3:07
Enver Maroshi27-Jun-09 3:07 
GeneralRe: Vb 6.0 Pin
Colin Angus Mackay27-Jun-09 3:14
Colin Angus Mackay27-Jun-09 3:14 
GeneralRe: Vb 6.0 Pin
Enver Maroshi27-Jun-09 3:40
Enver Maroshi27-Jun-09 3:40 
AnswerNot the answer to your question Pin
dan!sh 26-Jun-09 2:43
professional dan!sh 26-Jun-09 2:43 
Questionplacing a control on the panel Pin
lavankumar25-Jun-09 21:30
lavankumar25-Jun-09 21:30 
AnswerRe: placing a control on the panel Pin
Christian Graus25-Jun-09 21:46
protectorChristian Graus25-Jun-09 21:46 
AnswerRe: placing a control on the panel Pin
Enver Maroshi25-Jun-09 21:59
Enver Maroshi25-Jun-09 21:59 
Double click panel, choose mouse move event and click on it and you will get somethign like this

Private Sub Panel1_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Panel1.MouseMove
' e.X and e.Y are available
End Sub

To add control inside use something like this

Dim NewBox As New TextBox
NewBox.Location = New System.Drawing.Point(e.X, e.Y)
Panel1.Controls.Add(NewBox)

Just put this add control stuff into mouse up or something, or add it on mouse down, move control as you move mouse and release it on mouse up

This is basic stuff, try to read a book or two.
GeneralRe: placing a control on the panel [modified] Pin
lavankumar26-Jun-09 19:49
lavankumar26-Jun-09 19:49 
GeneralRe: placing a control on the panel Pin
Enver Maroshi26-Jun-09 21:43
Enver Maroshi26-Jun-09 21:43 
GeneralRe: placing a control on the panel Pin
lavankumar28-Jun-09 19:34
lavankumar28-Jun-09 19:34 
AnswerRe: placing a control on the panel Pin
vijaylumar26-Jun-09 0:47
vijaylumar26-Jun-09 0:47 
GeneralRe: placing a control on the panel Pin
Christian Graus26-Jun-09 0:51
protectorChristian Graus26-Jun-09 0:51 
Questionhelp me Pin
harieshkumar.n25-Jun-09 21:24
harieshkumar.n25-Jun-09 21:24 
AnswerRe: help me Pin
Christian Graus25-Jun-09 21:46
protectorChristian Graus25-Jun-09 21:46 
QuestionWebrequest and Querystring in VB.net Pin
king gamo25-Jun-09 18:12
king gamo25-Jun-09 18:12 
AnswerRe: Webrequest and Querystring in VB.net Pin
Christian Graus25-Jun-09 18:44
protectorChristian Graus25-Jun-09 18:44 
GeneralRe: Webrequest and Querystring in VB.net Pin
king gamo25-Jun-09 18:54
king gamo25-Jun-09 18:54 
GeneralRe: Webrequest and Querystring in VB.net Pin
Christian Graus25-Jun-09 19:41
protectorChristian Graus25-Jun-09 19:41 
GeneralRe: Webrequest and Querystring in VB.net Pin
king gamo25-Jun-09 19:44
king gamo25-Jun-09 19:44 
GeneralRe: Webrequest and Querystring in VB.net Pin
Christian Graus25-Jun-09 19:49
protectorChristian Graus25-Jun-09 19:49 
GeneralRe: Webrequest and Querystring in VB.net Pin
king gamo25-Jun-09 19:51
king gamo25-Jun-09 19:51 
GeneralRe: Webrequest and Querystring in VB.net Pin
Christian Graus25-Jun-09 20:08
protectorChristian Graus25-Jun-09 20:08 
GeneralRe: Webrequest and Querystring in VB.net Pin
N a v a n e e t h25-Jun-09 19:53
N a v a n e e t h25-Jun-09 19:53 
GeneralRe: Webrequest and Querystring in VB.net Pin
king gamo25-Jun-09 20:00
king gamo25-Jun-09 20:00 

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.