일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- numpy
- array
- FastAPI
- Django-allauth
- graphene-django
- python
- check_password
- flask
- for loop
- tkinter Radio 동적버튼
- GraphQL
- Django
- SQL
- allauth
- Today
- Total
목록[PL] (153)
객
인터넷 서핑중에 블러그 주인장님 들께서 쉽게 설명 한 블러그에서 소스를 받아서 제가 이해할 정도로 해서 수정 하였습니다. 보시고 블러그 주인장님께서 답변란에 남겨 주시면 내리도록 하겠습니다. . Imports System.Xml Imports System.IO Imports System.Text Public Class Form1 ''' ''' 프로그램명 : XML 생성 및 XML 읽기 ..
Imports System Imports System.Data Imports System.Data.SqlServerCe Public Class Form1 Dim strDB As String = "Data Source = 경로명 및 파일명.sdf" Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim ai As Integer If TextBox1.Text <> "" Then If ai = 1 Then Exit Sub Dim Conn As SqlCeConnection = New SqlCeConnection(strDB) Conn..
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() & " ..
▣ Rote 추가 할때 TreeView1.Nodes.Add(NodeName) ▣ 자식 노드 추가 할때 TreeView1.SelectedNode.Nodes.Add(NodeName, ChardName) ▣ 노드 삭제시 TreeView1.Nodes.Remove(TreeView1.SelectedNode) ▣ TreeView 내 모든 트리 삭제 할 때 TreeView1.Nodes.Clear() ▣ 노드의 이름과 인덱스 값을 나타내고 싶을때 labNoteName.text = e.node.name() 나 e.node.index()를 ..