본문 바로가기

반응형

전체 글

(202)
인증서(certmgr.msc)의 실제 저장 위치 (공인인증서 아님) %UserProfile%\AppData\Roaming\Microsoft\SystemCertificates\My\Certificates​인증서 더블 클릭했을 때 "자세히" 탭에서 "필드" 값 지문(Default인 경우 맨 아래에 있음)의 값이 위 경로의 파일명과 일치.
[Delphi] 델파이 산술 연산문 키워드설명예비고+더하기3 + 2 = 5 -빼기3 - 2 = 1 *곱하기3 * 2 = 6 div정수 나누기3 div 2 = 1 /실수 나누기3.0 / 2.0 = 1.5 mod나누기의 나머지5 mod 3 = 2C언어에서 %와 동일
[Delphi] edit에 숫자만 입력하기 procedure TForm1.Edit1KeyPress(Sender: TObject; var Key: Char);begin if Key in ['0'..'9', #25, #08, #13] then else begin Key := #0; ShowMessage('숫자만 입력하세요'); end;end;
[Delphi] 날짜 관련 함수 출처 - http://andyadic.tistory.com/entry/%EB%8D%B8%ED%8C%8C%EC%9D%B4-%EB%82%A0%EC%A7%9C%EC%97%90-%EA%B4%80%EA%B3%84%EB%90%9C-%ED%95%A8%EC%88%98%EB%93%A4 uses DateUtils;// 날짜나 시간을 String으로function DateToStr(Date: TDateTime): string;function TimeToStr(Time: TDateTime): string;// 스트링을 날짜나 시간으로function StrToDate(const S: string): TDateTime;- Ex -{ var myDate : TDateTime; begin myDate := StrToDate('7..
[Delphi] TWebBrowser 스크롤바 없애기 출처 - http://bloodguy.tistory.com/333​TWebBrowser의 OnDocumentComplete에서 아래 한줄 입력​WebBrowser1.OleObject.Document.Body.Scroll := 'no';
[Delphi] 현재 날짜 구하는 함수 now는 현재의 년 월 일 시간을 리턴해주는 함수이고​FormatDateTime('yyyymmddhhnnsszzz', now)​위의 예처럼 하면 String 형으로 리턴 받을수 있다.​위의 예제처럼 하면 밀리초까지 반환된다.​추가로 now의 반환값은 double 형이다.
효율적으로 구글 검색, 구글링 하는 방법 구글 고급검색https://www.google.co.kr/advanced_search Google 고급검색라이선스로 필터링 안함 사용 또는 공유 가능 사용 또는 공유 가능(상업적 용도 포함) 사용, 공유 또는 수정 가능 사용, 공유 또는 수정 가능(상업적 용도 포함)www.google.co.kr   아래 나열된 검색어 키워드는 조합하여 사용 가능 합니다. ex) "filetype:xlsx 한승연&카라"​​​​​​​정확히 일치하는 결과 찾기​필수 단어를 "xxx" 처럼 큰따옴표로 묶음.​ex) "향수 "000원"", ""오늘 아침에 먹은 샐러드""​아래 이미지와 같이 큰따옴표 사이에 있는 검색 결과가 정확히 일치하는 결과들이 검색된다.​제외/포함할 단어 지정​-/+를 단어 앞에 넣어주면 됨.​ex) "재규..
명령 프롬프트 명령어 모음 (Command-line reference A-Z) https://technet.microsoft.com/en-us/library/bb490890.aspx Command-line reference A-ZTable of contents Command-line reference A-Z Article 09/11/2009 In this article A B C D E F G H I L M N O P Q R S T U V W X To find information about a command, on the A-Z button menu at the top of this page, click the letter that the command starts with,learn.microsoft.com

반응형