Search results for query: *

  • Users: lgnet
  • Order by date
  1. lgnet

    Draw a Curve

    Public Class Form1 Private Sub Form1_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles Me.Paint Dim myPen As New Pen(Color.Red, 6) e.Graphics.DrawPie(myPen, _ New Rectangle(10, 10, 100, 100), _ 45, 125) Dim pts() As Point = {New Point(200, 10), _ New...
  2. lgnet

    Using Message Box

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click System.Windows.Forms.MessageBox.Show("Hello", "Title", _ MessageBoxButtons.YesNo, _ MessageBoxIcon.Information, _ MessageBoxDefaultButton.Button1) End...
Back
Top