일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- for loop
- python
- graphene-django
- Django-allauth
- flask
- Django
- array
- FastAPI
- GraphQL
- numpy
- SQL
- allauth
- check_password
- tkinter Radio 동적버튼
- Today
- Total
목록[PL] (153)
객
public partial class Form1 : Form { int M = 10; int i = 0 ; int[] Arr = new int[10]; public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { int a; a = (Convert.ToInt32(textBox1.Text)); richTextBox1.Text = richTextBox1.Text + a ; Arr[i] = Arr[i] + (Convert.ToInt32(textBox1.Text)); i = i + 1; if (i == M) i = 0 ; textBox1.Text = ""; textBox1.Focus(); } p..
1. 다음은 CompanyName 필드의 너무 긴 텍스트 항목을 확인하는 예제입니다. 문제가 되는 값을 발견하면 문제가 설명된 도구 설명 텍스트와 함께 오류 그림(빨강 느낌표 표시)이 셀에 추가됩니다. Private Sub DataGridView1_CellValidating(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellValidatingEventArgs) Han..
Function FindNoDatabase(ByVal FNo As String) Dim findDB As Boolean Dim i As Integer Dim GridValue As String For i = 0 To DataGridView1.RowCount - 1 GridValue = DataGridView1.Rows(i).Cells(0).Value If FNo <> GridValue Then findDB = False Else findDB = True Exit For End If Next Return findDB End Function 데이타 그리드와 값을 비교 할 때
MaskedTextBox1.MaskFull = False 로 입력이 되었는지 안되었는지 확인 여부 예제는 msdn에서 가져 온것입니다. '---------------------------------------------------------------------------------------------------------- Private Sub MaskedTextBox1_MaskInputRejected(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MaskInputRejectedEventArgs) Handles MaskedTextB..