Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- SQL
- check_password
- numpy
- graphene-django
- GraphQL
- FastAPI
- array
- Django-allauth
- flask
- python
- allauth
- for loop
- Django
- tkinter Radio 동적버튼
Archives
- Today
- Total
객
[ VB 2008 ] COLOR View예제. 본문
Private Sub PictureBox1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PictureBox1.Click
Dim aa, bb, cc As String
Dim bt As Bitmap = PictureBox1.Image
Dim c As Color = bt.GetPixel(MousePosition.X, MousePosition.Y)
aa = Hex(c.R.ToString())
bb = Hex(c.G.ToString())
cc = Hex(c.B.ToString())
TextBox1.Text = c.R.ToString() & "," & c.G.ToString() & "," & c.B.ToString() & " (#" & aa & bb & cc & ")"
End Sub
'[PL] > VB & VB.NET' 카테고리의 다른 글
[VB 2008] XML 문서예제 (0) | 2010.01.19 |
---|---|
[ VB 2008 ] 데이터베이스예제 .sdf (0) | 2010.01.19 |
[ VB 2008 ] TreeView 예제 (0) | 2010.01.10 |
[VB 2008] 아래 세개의 프로그래을 하나로 한 것. (0) | 2010.01.09 |
[ vb 2008] DrawArc 예제. (0) | 2010.01.08 |