Click here to Skip to main content
15,908,445 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionShow Data in Hierarcal Structure in .net control with multiple textboxes associated with each node.. [modified] Pin
TC2826-Oct-06 18:35
TC2826-Oct-06 18:35 
AnswerRe: Show Data in Hierarcal Structure in .net control with multiple textboxes associated with each node.. Pin
Dave Sexton26-Oct-06 22:16
Dave Sexton26-Oct-06 22:16 
GeneralRe: Show Data in Hierarcal Structure in .net control with multiple textboxes associated with each node.. Pin
TC2827-Oct-06 3:10
TC2827-Oct-06 3:10 
AnswerMessage Removed Pin
27-Oct-06 4:33
Costica U27-Oct-06 4:33 
QuestionRe: Show Data in Hierarcal Structure in .net control with multiple textboxes associated with each node.. Pin
TC2827-Oct-06 18:03
TC2827-Oct-06 18:03 
QuestionHow to create setup for VB and crystal report appl [modified] Pin
Software_Guy_12326-Oct-06 18:33
Software_Guy_12326-Oct-06 18:33 
QuestionCircle Packing Pin
batusai_3rd26-Oct-06 17:52
batusai_3rd26-Oct-06 17:52 
AnswerRe: Circle Packing Pin
Dave Sexton26-Oct-06 22:38
Dave Sexton26-Oct-06 22:38 
You'll want to use methods exposed from the Graphics Class[^] in the System.Drawing namespace.

Below is a quick sample I threw together - is this what you mean? Paste this code into a new form & run it.

Public Class Form1

    Private Sub Form1_Paint(ByVal sender As Object, _
    ByVal e As System.Windows.Forms.PaintEventArgs) _
    Handles Me.Paint
        'draw three circles over each other
        e.Graphics.FillEllipse(Brushes.Red, New Rectangle(0, 0, 300, 300))
        e.Graphics.FillEllipse(Brushes.Blue, New Rectangle(25, 25, 250, 250))
        e.Graphics.FillEllipse(Brushes.Green, New Rectangle(50, 50, 200, 200))
        'dispose of the graphics object
        e.Dispose()
    End Sub

    Private Sub Form1_Resize(ByVal sender As Object, _
    ByVal e As System.EventArgs) Handles Me.Resize
        Me.Invalidate()
    End Sub
End Class

Questionhelp combobox Pin
Evalee26-Oct-06 17:26
Evalee26-Oct-06 17:26 
AnswerRe: help combobox Pin
Dave Sexton26-Oct-06 22:41
Dave Sexton26-Oct-06 22:41 
GeneralRe: help combobox Pin
Evalee27-Oct-06 0:36
Evalee27-Oct-06 0:36 
AnswerRe: help combobox Pin
Janani Divya27-Oct-06 1:49
Janani Divya27-Oct-06 1:49 
AnswerRe: help combobox Pin
Kschuler27-Oct-06 10:04
Kschuler27-Oct-06 10:04 
Questionkeypress to include the back space Pin
thefludragon26-Oct-06 15:42
thefludragon26-Oct-06 15:42 
AnswerRe: keypress to include the back space Pin
Xint026-Oct-06 17:28
Xint026-Oct-06 17:28 
QuestionVB.Net 2003 and VB6 Pin
Mekong River26-Oct-06 15:12
Mekong River26-Oct-06 15:12 
AnswerRe: VB.Net 2003 and VB6 Pin
Kevin McFarlane27-Oct-06 3:52
Kevin McFarlane27-Oct-06 3:52 
QuestionVery Urgent!!! Deadline!!! Pin
UltraCoder26-Oct-06 12:43
UltraCoder26-Oct-06 12:43 
AnswerRe: Very Urgent!!! Deadline!!! Pin
Dave Kreskowiak27-Oct-06 5:48
mveDave Kreskowiak27-Oct-06 5:48 
AnswerRe: Very Urgent!!! Deadline!!! Pin
Dave Kreskowiak27-Oct-06 5:54
mveDave Kreskowiak27-Oct-06 5:54 
QuestionUnload Close Command Pin
UltraCoder26-Oct-06 11:27
UltraCoder26-Oct-06 11:27 
AnswerRe: Unload Close Command Pin
Dave Kreskowiak26-Oct-06 18:02
mveDave Kreskowiak26-Oct-06 18:02 
QuestionResolving Excel Open Processes after ADO Connection Pin
pao_e_vinho26-Oct-06 8:57
pao_e_vinho26-Oct-06 8:57 
QuestionVB 2005 Pin
Pete Newman26-Oct-06 8:52
Pete Newman26-Oct-06 8:52 
QuestionTextBox Property Pin
andy3826-Oct-06 7:38
andy3826-Oct-06 7:38 

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.