[아웃룩] 아웃룩 2007에서 메일 자동회신 설정하는 방법
소스: [아웃룩] 아웃룩 2007에서 메일 자동회신 설정하는 방법
iso 파일을 usb 로 저장
다운로드 isotousb_setup
64 bit – How can I force the 32-bit version of the remote desktop client to run on 64 bit Vista? – Server Fault
소스: 64 bit – How can I force the 32-bit version of the remote desktop client to run on 64 bit Vista? – Server Fault
무료로 영어 공부하기 추천사이트 5개 – YouTube
http://www.manythings.org/ http://www.breakingnewsenglish.com/ https://www.mylanguageexchange.com/defaultMore_ko.asp http://www.esolcourses.com/ https://www.coursera.org/
DEXTUpload server2008 64bit 설치시 에러 해결
Server.CreateObject(“DEXT.FileUpload”) 객체생성을 하면 500번 에러 발생 설치 DEXTUpload_v248 버전이 32버전이라 IIS 응용프로램 풀에서 사이트 설정 후 고급 설정에서 “32비트 응용프로그램 사용” True 로 변경 해결 […]
office 2013 네트워크 파일 제안된 보기 풀기
메시지를 클릭하면 세팅 정보가 나온다 노란색부분의 체크를 푼다.
asp 한글 깨졌을때 코드추가
**** euc-kr ****
|
1 2 3 4 5 6 7 8 9 |
<% @Language="VBScript" CODEPAGE="949" %> <% Response.CharSet="euc-kr" Session.codepage="949" Response.codepage="949" Response.ContentType="text/html;charset=euc-kr" %> |
**** utf-8 ****
|
1 2 3 4 5 6 7 8 9 |
<%@Language="VBScript" CODEPAGE="65001" %> <% Response.CharSet="utf-8" Session.codepage="65001" Response.codepage="65001" Response.ContentType="text/html;charset=utf-8" %> |
**** utf-8 csv 로 엑셀에 저장 시****
|
1 2 3 4 5 6 7 8 9 10 |
엑셀 시작부분에 아래 문장을 넣으면 글자가 깨지지 않음 Response.BinaryWrite(ChrB(239) & ChrB(187) & ChrB(191)) '엑셀로 저장 Response.Buffer = True Response.ContentType = "appllication/vnd.ms-excel" '// 엑셀로 지정 Response.CacheControl = "public" Response.AddHeader "Content-Disposition","attachment; filename=Mobile_Seg_list.csv" |
UTF-8 기타 처리 참고 http://unions5.tistory.com/38
msslq sp_attach_db
|
1 2 3 4 5 |
Exec sp_attach_db 'MY_DB' ,'C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA\MY_DB.mdf' ,'C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA\MY_DB.LDF' |
Smallpdf.com – A Free Solution to all your PDF Problems
Smallpdf – the platform that makes it super easy to convert and edit all your PDF files. Solving all your PDF problems in one place […]
ipTIME 펌웨어 복구 도우미 1.16 (2016-09-02) | 고객지원-자주묻는질문 | EFM – ipTIME
-지원 OS : Windows XP, VISTA(x86/x64), 7(x86/x64), 8(x86/x64), 8.1(x86/x64), 10(x86/x64) -지원 제품 : ipTIME 공유기 -버전 : 1.16 공유기 펌웨어 업그레이드 도중 전원 차단 혹은 […]
wordpress 설치 하기 명령어
정리전 WordPress 서버라면 추가로 꼭 설치 WordPress가 이미지 리사이즈를 할 때 PHP 확장이 필요합니다. PHP GD
|
1 2 3 |
sudo apt install php-gd |
[wp-svg-icons icon=”home” wrap=”i”] 계정생성 및 디렉토리(미리만듬) 연결
|
1 2 3 4 5 6 |
sudo useradd -c helloworld -d /var/www/helloworld -s /usr/sbin/nologin -p passwd hello sudo usermod -a -G www-data hello sudo chown -R hello:www-data /var/www/helloworld/ sudo chmod -R 777 /var/www/helloworld/ |
항공GDS시스템들 약자
1P 월드스팬(Worldspan) 1G 갈릴레오(Galileo) 1V 아폴로(Apollo) 1J 엑세스(Axess) 1A 아마데우스(Amadeus)-> TOPAS SellConnect 1S 세이버(Sabre) 1B 아박쿠스(Abacus) SellConnect : 개발인원 300명, 기간 : 3년3개월, 개발비용 1,000억원 […]
IP를 찾아 변수에 저장
IP확인 소스
Excel VBA 활용하기
vb 배운거 써먹을 때가 많네요.
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
Sub Select1() For i = 1 To 54 Dim sName1 As String Dim sName2 As String sName1 = Trim(Sheet1.Cells(i, 2)) For j = 1 To 96 sName2 = Trim(Sheet2.Cells(j, 1)) '//Debug.Print sName1, sName2 If ((sName1 = sName2) And (sName1 = sName2)) Then Sheet1.Cells(i, 3) = IIf(Sheet2.Cells(j, 2) > 0, Sheet2.Cells(j, 2), "") Sheet1.Cells(i, 4) = Sheet2.Cells(j, 3) Sheet1.Cells(i, 5) = IIf(Sheet2.Cells(j, 4) > 0, Sheet2.Cells(j, 4), "") Sheet1.Cells(i, 6) = Sheet2.Cells(j, 5) Exit For End If Next j Next i End Sub |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
Sub Select1() Dim price As Integer For i = 1 To 13 Dim sName1 As String Dim sName2 As String sName1 = Trim(Sheet1.Cells(i, 1)) sName2 = Trim(Sheet1.Cells(i, 2)) price = 0 '//초기값 If (Trim(sName1) = "기타" And Trim(sName2) = "문자2") Then price = Sheet1.Cells(i, 3) + price Sheet1.Cells(15, 1) = price End If Next i End Sub |
샘플 3
|
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 29 30 31 32 33 |
Sub Select1() For i = 2 To 29 Dim s1 As Integer Dim s2 As Integer s1 = Trim(Sheet1.Cells(i, 1)) For j = 2 To 4 s2 = Trim(Sheet1.Cells(i, j)) If (s1 <= s2) Then s1 = s2 Sheet1.Cells(i, 6 + j) = s2 End If 'Debug.Print s2 Next j Sheet1.Cells(i, 6) = s1 'Debug.Print s1 Next i End Sub |
security – How to prevent Screen Capture in Android – Stack Overflow
Is it possible to prevent the screen recording in Android Application? I would like to develop an Android Secure Application. In that I need to […]
Remove BrowserModifier:Win32/SupTab 간단하게 제거 하기
프로그램 추가 삭제에서 의심스러운 프로그램 제거 (OnlineMapFinder Internet Explorer Homepage and New Tab)
How to Fix the “Windows Installer Service could not be accessed” Error in Windows 7
%windir%\system32\msiexec.exe /regserver 소스: How to Fix the “Windows Installer Service could not be accessed” Error in Windows 7
CAPTCHA – 위키백과, 우리 모두의 백과사전
소스: CAPTCHA – 위키백과, 우리 모두의 백과사전 http://gnujava.com/board/article_view.jsp?board_no=11&article_no=5634 http://www.findbestopensource.com/tagged/captcha?fq=Java
Receiver 4.5 for Windows – Citrix
Receiver for Windows 4.3.100 for Windows product software 소스: Receiver 4.5 for Windows – Citrix 연결프로그램이 풀리는 경우 : ICA 파일이 열리지 않는 경우가 발생 […]
