Click here to Skip to main content
15,921,113 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Determine whether there is select item in the list Pin
Mekong River8-Aug-07 15:35
Mekong River8-Aug-07 15:35 
Questioncan i create annotation in picture box using vb.net? [modified] Pin
babusat7-Aug-07 22:28
babusat7-Aug-07 22:28 
Questionhow to create a control Pin
eyes20077-Aug-07 22:22
eyes20077-Aug-07 22:22 
AnswerRe: how to create a control Pin
Tom Deketelaere7-Aug-07 23:24
professionalTom Deketelaere7-Aug-07 23:24 
GeneralRe: how to create a control Pin
eyes20078-Aug-07 0:16
eyes20078-Aug-07 0:16 
GeneralRe: how to create a control Pin
Tom Deketelaere8-Aug-07 1:09
professionalTom Deketelaere8-Aug-07 1:09 
GeneralRe: how to create a control Pin
eyes20078-Aug-07 2:50
eyes20078-Aug-07 2:50 
GeneralRe: how to create a control Pin
Tom Deketelaere8-Aug-07 3:11
professionalTom Deketelaere8-Aug-07 3:11 
1: normally every usercontrol has a load event (doubleclick on the control should automaticly place you in the code of the event)(otherwise you can select the event in the 2 comboboxes just above the code(in code view) first comobox: (usercontrol1 events) second combobox: load)

2: I'm not sure but I don't think the placement of the mybase.onpaint(e) matters

example (kryptic)

public sub load event
me.region = new region... 'see previous posted code
end sub

Protected Overloads Overrides Sub OnPaint(ByVal e As PaintEventArgs)
MyBase.OnPaint(e)
e.graphics.drawline(...)
e.graphics.drawstring(...)
'...
End Sub

if you give me a more detaild description of what exactly it is that you want I could give you more detailed code
what needs to be drawn?
what shape is you're control?
when does the movement happen (all the time or when you tell it too)?
...
GeneralRe: how to create a control [modified] Pin
eyes20078-Aug-07 4:14
eyes20078-Aug-07 4:14 
GeneralRe: how to create a control Pin
Tom Deketelaere8-Aug-07 21:33
professionalTom Deketelaere8-Aug-07 21:33 
GeneralRe: how to create a control Pin
Tom Deketelaere8-Aug-07 22:37
professionalTom Deketelaere8-Aug-07 22:37 
GeneralRe: how to create a control Pin
eyes20079-Aug-07 1:22
eyes20079-Aug-07 1:22 
GeneralRe: how to create a control Pin
eyes20079-Aug-07 19:39
eyes20079-Aug-07 19:39 
QuestionMemory leak detecting [modified] Pin
dimuthuvbnet7-Aug-07 21:12
dimuthuvbnet7-Aug-07 21:12 
AnswerRe: Memory leak detecting Pin
originSH7-Aug-07 23:00
originSH7-Aug-07 23:00 
GeneralRe: Memory leak detecting Pin
dimuthuvbnet7-Aug-07 23:25
dimuthuvbnet7-Aug-07 23:25 
AnswerRe: Memory leak detecting Pin
MidwestLimey8-Aug-07 12:33
professionalMidwestLimey8-Aug-07 12:33 
Questionhow can i get the file system of machine using VB6 Pin
koolprasad20037-Aug-07 21:07
professionalkoolprasad20037-Aug-07 21:07 
AnswerRe: how can i get the file system of machine using VB6 Pin
MartyK20077-Aug-07 22:56
MartyK20077-Aug-07 22:56 
Questionany free virtual keyboard control??? Pin
jamilkhan0077-Aug-07 20:40
jamilkhan0077-Aug-07 20:40 
AnswerRe: any free virtual keyboard control??? Pin
Kschuler8-Aug-07 7:58
Kschuler8-Aug-07 7:58 
Questionhow can i store a user history, r settings??? Pin
jamilkhan0077-Aug-07 20:31
jamilkhan0077-Aug-07 20:31 
AnswerRe: how can i store a user history, r settings??? Pin
Christian Graus7-Aug-07 21:35
protectorChristian Graus7-Aug-07 21:35 
GeneralRe: how can i store a user history, r settings??? Pin
jamilkhan0077-Aug-07 21:39
jamilkhan0077-Aug-07 21:39 
GeneralRe: how can i store a user history, r settings??? Pin
Christian Graus7-Aug-07 22:11
protectorChristian Graus7-Aug-07 22:11 

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.