Click here to Skip to main content
15,885,546 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: RTMP Pin
Christian Graus27-Apr-09 22:11
protectorChristian Graus27-Apr-09 22:11 
QuestionRTMP Pin
safdaralis27-Apr-09 19:25
safdaralis27-Apr-09 19:25 
Questiona new coding style which I came across Pin
Member 305788727-Apr-09 18:55
Member 305788727-Apr-09 18:55 
AnswerRe: a new coding style which I came across Pin
Bharat Jain27-Apr-09 19:43
Bharat Jain27-Apr-09 19:43 
GeneralRe: a new coding style which I came across Pin
Member 305788727-Apr-09 20:11
Member 305788727-Apr-09 20:11 
GeneralRe: a new coding style which I came across Pin
0x3c027-Apr-09 20:36
0x3c027-Apr-09 20:36 
GeneralRe: a new coding style which I came across Pin
Bharat Jain27-Apr-09 21:34
Bharat Jain27-Apr-09 21:34 
QuestionWhen i draw Rubberband selection on panel VisualBasic powerpack Shapecontrols are not displayed Pin
dilipmca0427-Apr-09 18:06
dilipmca0427-Apr-09 18:06 
this is the code i used to draw Rubberband selection on panel..when i draw rubberband selection it's hiding the Shape controls..
please give me the idea..

Thanks

Public Class Form2
Dim Rect As Rectangle
Private Sub Panel1_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Panel1.MouseDown
Rect.Location = e.Location
End Sub
Private Sub Panel1_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Panel1.MouseMove
If e.Button = MouseButtons.Left Then Rect.Size = New Size(e.X - Rect.X, e.Y - Rect.Y)
Panel1.Invalidate()
End Sub
Private Sub Panel1_MouseUp(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Panel1.MouseUp
Rect.X = -1
Rect.Y = -1
Rect.Width = -1
Rect.Height = -1
End Sub
Private Sub Panel1_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles Panel1.Paint
Dim L, T, W, H As Integer
L = Rect.X
T = Rect.Y
W = Rect.Width
H = Rect.Height
If W < 0 Then
L += W : W = -W
End If
If H < 0 Then
T += H : H = -H
End If
Dim p As New Pen(Color.Black)
p.DashStyle = System.Drawing.Drawing2D.DashStyle.Dot
e.Graphics.DrawRectangle(p, New Rectangle(L, T, W, H))
End Sub
End Class
AnswerRe: When i draw Rubberband selection on panel VisualBasic powerpack Shapecontrols are not displayed Pin
Henry Minute28-Apr-09 1:09
Henry Minute28-Apr-09 1:09 
GeneralRe: When i draw Rubberband selection on panel VisualBasic powerpack Shapecontrols are not displayed Pin
dilipmca0428-Apr-09 3:57
dilipmca0428-Apr-09 3:57 
GeneralRe: When i draw Rubberband selection on panel VisualBasic powerpack Shapecontrols are not displayed Pin
Henry Minute28-Apr-09 4:58
Henry Minute28-Apr-09 4:58 
QuestionVB LAN connection help Pin
Kevin223227-Apr-09 17:11
Kevin223227-Apr-09 17:11 
AnswerRe: VB LAN connection help Pin
Bharat Jain27-Apr-09 20:49
Bharat Jain27-Apr-09 20:49 
QuestionSerial Communication, vb.net Pin
Subjugate27-Apr-09 15:15
Subjugate27-Apr-09 15:15 
AnswerRe: Serial Communication, vb.net Pin
Luc Pattyn27-Apr-09 16:10
sitebuilderLuc Pattyn27-Apr-09 16:10 
GeneralRe: Serial Communication, vb.net Pin
Subjugate27-Apr-09 17:17
Subjugate27-Apr-09 17:17 
GeneralRe: Serial Communication, vb.net Pin
Luc Pattyn28-Apr-09 0:22
sitebuilderLuc Pattyn28-Apr-09 0:22 
GeneralRe: Serial Communication, vb.net Pin
Subjugate3-May-09 20:57
Subjugate3-May-09 20:57 
GeneralRe: Serial Communication, vb.net Pin
Luc Pattyn3-May-09 22:49
sitebuilderLuc Pattyn3-May-09 22:49 
GeneralRe: Serial Communication, vb.net Pin
Subjugate4-May-09 14:58
Subjugate4-May-09 14:58 
QuestionSQL Query Designer, Analyzer, Builder Pin
Stylus VB27-Apr-09 14:03
Stylus VB27-Apr-09 14:03 
AnswerRe: SQL Query Designer, Analyzer, Builder Pin
Mycroft Holmes27-Apr-09 19:26
professionalMycroft Holmes27-Apr-09 19:26 
AnswerRe: SQL Query Designer, Analyzer, Builder Pin
Tiyani Miyambo27-Apr-09 23:27
Tiyani Miyambo27-Apr-09 23:27 
AnswerRe: SQL Query Designer, Analyzer, Builder Pin
Ageesh29-Apr-09 1:40
Ageesh29-Apr-09 1:40 
QuestionMySQL in VB Pin
Dalek Dave27-Apr-09 10:14
professionalDalek Dave27-Apr-09 10:14 

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.