반응형

5단위 라운드 업 ( roundup )

Math.ceil( num / 5 ) * 5;

============

Math.ceil() : 소수점 올림, 정수형 반환

Math.floor() : 소수점 버림, 정수형 반환

Math.round() : 소수점 반올림, 정수형 반환

============

참고 사이트

https://www.phpschool.com/gnuboard4/bbs/board.php?bo_table=qna_function&wr_id=297896&page=1806

https://copyrightyoon.tistory.com/1467

반응형

var date = new Date();

// 마지막날 구하기

var last_date = new Date(new Date(date.getFullYear(), date.getMonth(), 1)-1);

반응형

우클릭 방지 기능을 써서

oncontextmenu="return false" (드래그 선택 가능, 우클릭 불가)
onselectstart="return false" (드래그 선택 불가, 우클릭 가능)
ondragstart="return false" (드래그 선택 가능, 우클릭 가능)

ex) <body oncontextmenu='return false' onselectstart='return false' ondragstart='return false'></body>

기능을 사용해 볼수 있지만...

이렇게 할 경우 페이지 전체가 선택 불가로 변하기 때문에

제이쿼리를 이용해서 특정 텍스트 박스만 드래그 선택 및 더블 클릭 선택 방지 방법을 소개 드립니다.

 

드래그 선택 금지

.css("pointer-events", "none");

 

더블 클릭 선택 금지

.parent().css("user-select","none");

 

더블 클릭 선택 금지 할때 input 태그에 바로하면 적용 안되므로

부모 태그인 td 태그에 해줘야 합니다.

 

<!DOCTYPE html>
<html>
	<head>
		<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
		<script>
			$(document).ready(function() {
				$("#textbox02").css("pointer-events", "none");
				$("#textbox02").parent().css("user-select","none");
			});
		</script>
	</head>
	
	<body>
		<table>
			<tr>
				<td><input type='text' id = 'textbox02' value = '수정,드래그 불가'/></td>
			</tr>
		</table>
	</body>
</html>
반응형

.substr(index, length)

반응형

 

C# datagridview change style when specific column value changes

 

dgList = datagridview name

        private void dgList_CellValueChanged(object sender, DataGridViewCellEventArgs e)
        {
            int temp_row_index = e.RowIndex;
            int temp_column_index = e.ColumnIndex;

            
            if (temp_row_index >= 0 && temp_column_index == 9)
            {
                DataGridViewCell cell = dgList.Rows[temp_row_index].Cells[temp_column_index];

                cell.Style.Font = new Font("맑은 고딕", 13F, FontStyle.Bold);
            }
        }

 

 

 

반응형

'coding > Visual Studio' 카테고리의 다른 글

c# bitmap 라인 그리기 예제  (0) 2024.06.19
C-multiplication table(구구단)  (0) 2024.06.05

c# bitmap 라인 그리기

 

bicturebox1 에 넣기

 

 

https://learn.microsoft.com/ko-kr/dotnet/desktop/winforms/advanced/how-to-create-a-bitmap-at-run-time?view=netframeworkdesktop-4.8

 

방법: 런타임에 비트맵 만들기 - Windows Forms .NET Framework

비트맵 개체를 만들고 기존 Windows Forms PictureBox 컨트롤에 표시하는 방법을 알아봅니다.

learn.microsoft.com

 

 

반응형

#include <stdio.h>

main()
{
 int c;
 for(int a=2;a<=9;a++)
 {
  for(int b=1;b<=9;b++)
  {
   c = a * b;

   printf("%d * %d = %d\n",a,b,c);
  }
   printf("\n");
 }
}

반응형

+ Recent posts

반응형