|
분류 전체보기
- [마비노기] 슬픔의 시드 피나하 공략 2016.12.23
- [VS2010] #error Please use the /MD switch for _AFXDLL builds 2016.12.21
- [JavaScript] 팝업창에서 스크롤바 사용하기. 2016.12.20
- [DevExpress] Show the Current Row Number 2016.12.20
- [ASP] 05. 오라클 데이터 베이스와 연동하기. 2016.12.20
- [ASP] 04. 파일 읽기 2016.12.20
- [ASP] 03. 파일 쓰기 2016.12.20
- [ASP] 02. 조건문 2016.12.20
- [ASP] 01. 반복문 2016.12.20
- [ASP] 00. 변수 선언 2016.12.20
[마비노기] 슬픔의 시드 피나하 공략
[VS2010] #error Please use the /MD switch for _AFXDLL builds
Please use the /MD switch for _AFXDLL builds
에러내용 IntelliSense: #error directive: Please use the /MD switch for _AFXDLL builds c:\program files (x86)\microsoft visual studio 10.0\vc\atlmfc\include\afxver_.h 81 코드 #if defined(_AFXDLL) && !defined(_DLL) #error Please use the /MD switch for _AFXDLL builds #endif 해결방법 1. Right-click the Project. 2. Go to Config Properties->C/C++-> Code Gen ->. Double-click "Runtime Library" and set to "Multi-threaded Debug DLL (/MDd)" . If this value already appears to be set, make sure it is by selecting it again (it should then appear as bold). 3. Click OK. => 프로젝트속성 > c,c++ > code gen > Runtime library-Multi Debug DLL (BOLD) //다른옵션 선택후 다시 선택.
|
http://blog.naver.com/PostView.nhn?blogId=crazywlsgur&logNo=70100145542
'Trunk' 카테고리의 다른 글
Synology DS718+ 구매/개봉기 (0) | 2018.11.09 |
---|---|
ATNA : Audit Trail and Node Authentication (0) | 2017.01.23 |
[일본어] 히라가나 가타카나 표 (0) | 2017.01.02 |
[HTTP] MIME Type (0) | 2016.12.26 |
[DevExpress] Show the Current Row Number (0) | 2016.12.20 |
[JavaScript] 팝업창에서 스크롤바 사용하기.
windiw.open 으로 팝업창을 열 경우
스크롤바가 없다...
window.open('http://www.naver.com', 'popup', 'width = 200px, height = 200px, scrollbars = yes');
scrollbars 옵션을 추가해주자.
스크롤바가 생긴것을 확인할 수 있다.
'Programming > JavaScript' 카테고리의 다른 글
[jQuery] Checkbox 체크 및 변경 이벤트 처리. (0) | 2017.02.06 |
---|---|
[jQuery] Radio, Checkbox 체크 여부 확인하기. (0) | 2017.01.24 |
[JavaScript] 14-3_Filtering.html (0) | 2016.12.12 |
[JavaScript] 14-2_Attr_prop()_val().html (0) | 2016.12.12 |
[JavaScript]_Attr_toggleClass().html (0) | 2016.12.12 |
[DevExpress] Show the Current Row Number
데브익스프레스에서 자동으로 순번 입력하기.
1. Label 우클릭
2. Summary 선택
3. Summary Editor
a. Summary function : RecordNumber
b. Format strubg : { 0 : # }
c. Summary running : Report
참조 : https://documentation.devexpress.com/#XtraReports/CustomDocument5290
'Trunk' 카테고리의 다른 글
Synology DS718+ 구매/개봉기 (0) | 2018.11.09 |
---|---|
ATNA : Audit Trail and Node Authentication (0) | 2017.01.23 |
[일본어] 히라가나 가타카나 표 (0) | 2017.01.02 |
[HTTP] MIME Type (0) | 2016.12.26 |
[VS2010] #error Please use the /MD switch for _AFXDLL builds (0) | 2016.12.21 |
[ASP] 05. 오라클 데이터 베이스와 연동하기.
1. 오라클 데이터베이스와 연동하기.
<%
Dim connectDB
connectDB = "Provider=OraOLEDB.Oracle; Persist Security Info=False; User ID=InputUserID; Password=InputPassword; Data Source=InputDataSource;"
Set connectObj = CreateObject("ADODB.Connection")
connectObj.open connectDB
Set result = connectObj.Execute ("InputYourQuery")
Dim arr
If result.eof then
response.write "No data !<br>"
response.end
else
arr = result.GetRows
end if
%>
1. DB와의 연결을 준비함.
- UserID, Password, Data Source명을 입력해 줍니다.
2. DB와의 연결 오브젝트를 만듦.
3. 연결
4. 결과를 받아올 오브젝트의 인스턴스를 만듦.
-실행시킬 쿼리를 입력합니다.
5. 결과가 있는지 확인해줍니다.
2. 가져온 데이터 출력해보기.
<%
for i = 0 to result.Fields.Count -1
response.write result.fields(i).name & " "
Next
response.write "<br/>"
numcols = ubound(arr,1)
numrows = ubound(arr,2)
for rowPos = 0 to numrows
for colPos = 0 to numcols
response.write arr(colPos, rowPos) & " "
next
response.write "<br/>"
next
%>
1. result에 담긴 column의 이름을 출력합니다.
2. arr에 담긴 column의 수와 row의 수를 얻어옵니다.
3. arr에 담긴 정보를 출력합니다.
3. 메모리해제
<%
Set connectObj = Nothing
Set result = Nothing
%>
1. 다 쓰고 난 Set의 메모리를 해제해줍니다.
'Programming' 카테고리의 다른 글
[HTML] 태그 영역 숨기기. (0) | 2017.01.24 |
---|---|
[Language] 프로그래밍 언어 선택 (0) | 2017.01.02 |
[ASP] 04. 파일 읽기 (0) | 2016.12.20 |
[ASP] 03. 파일 쓰기 (0) | 2016.12.20 |
[ASP] 02. 조건문 (0) | 2016.12.20 |
[ASP] 04. 파일 읽기
<%
Set fsObj = Server.CreateObject("Scripting.FileSystemObject")
Dim filePath
filePath = Server.MapPath("\FileNameToRead")
Set fObj = fsObj.OpenTextFile(filePath,1)
content = fObj.readall
Response.write content
%>
1. FileSystemObject 생성
2. 파일 경로 지정.
3. 경로에 존재하는 파일 읽어오기
4. 읽어온 파일 오브젝트의 내용을 fObj에 모두 저장.
5. 출력
'Programming' 카테고리의 다른 글
[Language] 프로그래밍 언어 선택 (0) | 2017.01.02 |
---|---|
[ASP] 05. 오라클 데이터 베이스와 연동하기. (0) | 2016.12.20 |
[ASP] 03. 파일 쓰기 (0) | 2016.12.20 |
[ASP] 02. 조건문 (0) | 2016.12.20 |
[ASP] 01. 반복문 (0) | 2016.12.20 |
[ASP] 03. 파일 쓰기
<%
Set fsObj = Server.CreateObject("Scripting.FileSystemObject")
Dim filePath
filePath = Server.MapPath("\(Input FileName)")
Set fObj = fsObj.CreateTextFile(filePath,true)
fObj.WriteLine(ContentToWrite)
fObj.Close
Set fsObj = Nothing
Set fsObj = Nothing
%>
1. FileSystemObject 오브젝트 생성.
2. MapPath를 이용한 파일 경로 지정.
3. 파일 생성.
4. 파일에 내용을 씀.
5. 파일 사용 종료.
6. 객체의 인스턴스 해제
'Programming' 카테고리의 다른 글
[ASP] 05. 오라클 데이터 베이스와 연동하기. (0) | 2016.12.20 |
---|---|
[ASP] 04. 파일 읽기 (0) | 2016.12.20 |
[ASP] 02. 조건문 (0) | 2016.12.20 |
[ASP] 01. 반복문 (0) | 2016.12.20 |
[ASP] 00. 변수 선언 (0) | 2016.12.20 |
[ASP] 02. 조건문
1. If
If 조건문 Then
(Content...)
Elseif 조건문 Then
(Content...)
Else
(Content...)
End if
2. Switch
Select Case 변수이름
Case 조건
(Content...)
Case 조건
(Content...)
End Select
3. 논리 연산자
A = B
A와 B가 같은가.
A <> B
A와 B가 다른가.
'Programming' 카테고리의 다른 글
[ASP] 04. 파일 읽기 (0) | 2016.12.20 |
---|---|
[ASP] 03. 파일 쓰기 (0) | 2016.12.20 |
[ASP] 01. 반복문 (0) | 2016.12.20 |
[ASP] 00. 변수 선언 (0) | 2016.12.20 |
[Programming] 네이밍 방법론 (0) | 2016.12.13 |
[ASP] 01. 반복문
1. For loop
For i = 0 to 100 Step 1
(Loop content...)
Next
"i가 0부터 100까지 1씩 증가하며 Loop content를 수행하라."
2. While loop
While i < 5
(Loop content...)
wend
"i가 5보다 찾으면 Loop content를 반복하라."
3. Do While loop
Do While i < 5
(Loop content...)
Loop
"Loop content를 한번 먼저 수행 한 후 i가 5보다 작으면 Loop content를 반복하라."
4. Exit do/for를 이용해 반복문을 탈출할 수 있다.
'Programming' 카테고리의 다른 글
[ASP] 04. 파일 읽기 (0) | 2016.12.20 |
---|---|
[ASP] 03. 파일 쓰기 (0) | 2016.12.20 |
[ASP] 02. 조건문 (0) | 2016.12.20 |
[ASP] 00. 변수 선언 (0) | 2016.12.20 |
[Programming] 네이밍 방법론 (0) | 2016.12.13 |
[ASP] 00. 변수 선언
0. ASP에선 대소문자를 구분하지 않는다.
- 당연한 이야기지만 그래도 구분하는게 좋다.
1. 일반적인 변수 선언 - Dim
- Dim 변수이름
- Dim str = "stringValue"
- Dim num = 1234
- Dim arr(2)
- arr(0) = "a"
- arr(1) = "b"
- ASP에서 객체를 사용하기 위해 필요.
- Set을 통해 객체의 인스턴스를 생성한다.
- 일반 변수를 이용할 때 Set으로 선언하면 에러가 난다.
- 객체 사용 종료후 인스턴스를 해제하는 작업이 필요하다.
- Set obj = Server.CreateObject("objName")
- Set obj = Nothing
'Programming' 카테고리의 다른 글
[ASP] 04. 파일 읽기 (0) | 2016.12.20 |
---|---|
[ASP] 03. 파일 쓰기 (0) | 2016.12.20 |
[ASP] 02. 조건문 (0) | 2016.12.20 |
[ASP] 01. 반복문 (0) | 2016.12.20 |
[Programming] 네이밍 방법론 (0) | 2016.12.13 |