Source(6)
-
[Javascript_source] 텍스트박스 자동 포커스
how to move focus on next field when maxlength 해당 텍스트박스의 MaxLength에 도달하면 다음 텍스트박스에 포커스 123456789function AutoFocus(thisTextBox, NextTextBox) { var Length = thisTextBox.value.length; var maxLength = thisTextBox.getAttribute( "maxLength"); if (Length == maxLength) { document.getElementById(NextTextBox).focus(); }}Colored by Color Scriptercs 12345678910 Colored by Color Scriptercs
2016.05.27 -
[C#_source] 숫자 3자리 마다 (,) 콤마
int won = 123456890;Console.WriteLine(string.Format("{0:n0}", won));Console.WriteLine(string.Format("{0}", won.ToString("n0"))); ;Console.WriteLine(string.Format("{0:#,##0}", won));Console.WriteLine(string.Format("{0}", won.ToString("#,##0"))); //결과//123,456,890//123,456,890//123,456,890//123,456,890 출처 : http://ramses8.tistory.com/397
2016.04.19 -
[C#_source] 날짜와 시간 따로 구해서 더하기
How to combine string Date and string time into DateTime 날짜와 시간 따로 구해서 더하는 방법 DateTime dt= DateTime.Now; // ## 오늘 날짜 string strDate = dt.ToString("yyyy-MM-dd", CultureInfo.InvariantCulture); // ## 오늘 날짜 년,월,일 string strTime = "09:00:00.000"; // ## 지정할 시간 값 dt = Convert.ToDateTime(strDate) + Convert.ToDateTime(strTime).TimeOfDay; // ## DateTime형변환 후 더한 값을 DateTime 변수인 dt에 넣습니다. txt2.Text = dt.ToS..
2016.04.19 -
[Java 소스] if ~ else 를 이용한 계산기
import java.util.*; class Calc_j { public static void main(String args[]) { Scanner key = new Scanner(System.in); int a,b; String c; char d; System.out.print("정수 입력 : "); a = key.nextInt(); System.out.print("정수 입력 : "); b = key.nextInt(); System.out.print("연산 (+,-,*,/ 중) : "); c = key.next(); d = c.charAt(0); if(d=='+') System.out.println(a + " + " + b + " = " + (a+b)); else if (d=='-') System.o..
2010.03.30 -
[Java 소스]입력 받은 값 중 가장 큰 값 출력
import java.util.Scanner; public class Top{ public static void main(String args[]){ Scanner scan = new Scanner(System.in); int b = 0 , n; System.out.print("데이터 갯수가 몇 개 입니까"); n = scan.nextInt(); System.out.println(n+"개"); int a [] = new int[n]; for(int i=0; i
2010.03.30 -
[Java 소스] x^y 구하는 소스
import java.util.*; public class Multy{ public static void main(String args[]){ int i,j=1,x,y; int result=1; Scanner scan = new Scanner(System.in); System.out.print("X 값을 입력하세요"); x = scan.nextInt(); System.out.print("Y 값을 입력하세요"); y = scan.nextInt(); for( i=0 ; i< y; i++) { j *=x; result = j; } System.out.println(x+"^"+ y + " = " + result); } }
2010.03.26