RISS 학술연구정보서비스

검색
다국어 입력

http://chineseinput.net/에서 pinyin(병음)방식으로 중국어를 변환할 수 있습니다.

변환된 중국어를 복사하여 사용하시면 됩니다.

예시)
  • 中文 을 입력하시려면 zhongwen을 입력하시고 space를누르시면됩니다.
  • 北京 을 입력하시려면 beijing을 입력하시고 space를 누르시면 됩니다.
닫기
    인기검색어 순위 펼치기

    RISS 인기검색어

      검색결과 좁혀 보기

      선택해제
      • 좁혀본 항목 보기순서

        • 원문유무
        • 음성지원유무
        • 원문제공처
        • 학술지명
        • 주제분류
        • 발행연도
          펼치기
        • 작성언어
        • 저자
          펼치기

      오늘 본 자료

      • 오늘 본 자료가 없습니다.
      더보기
      • 무료
      • 기관 내 무료
      • 유료
      • VBA Charts 개체의 속성 체크 방법

        유병훈(Byung-Hoon Yu) 한국산업비즈니스학회 2019 한국비즈니스연구 (비즈니스연구) Vol.3 No.2

        본 논문은 Charts 개체의 속성을 체크하여 학생들의 수행 성과를 평가할 수 있는 알고리즘에 관해 다룬다. 대상 속성은 데이터 계열 속성, 축 속성, 차트 영역 속성 및 그림 영역에 한정한다. 본 논문에서는 속성의 이름을 하나씩 프로시저에 전달하고, 해당 속성과 일치하는 값을 프로시저로부터 반환받는 방식으로 속성을 체크하는 대신 프로시저로부터 반환받은 모든 속성의 값들을 한꺼번에 체크하는 방식을 택하여 알고리즘의 구조를 단순화하고 실행 속도를 개선하였다. Charts 개체의 속성을 체크하는 알고리즘의 코딩 내용은 다음과 같이 요약할 수 있다. ∙ Charts 개체를 찾는 코드 ∙ Charts 개체의 특정 속성을 분리하고 추출할 수 있는 코드 ∙ Charts 개체의 속성의 값을 배열 변수에 담을 수 있는 코드 ∙ Charts 개체의 속성의 값을 체크할 수 있는 코드 ∙ Charts 개체 관련 속성의 값 및 이름을 PHP로 전송하고 저장할 수 있는 코드 ∙ 속성 체크 결과를 사용자에게 피드백할 수 있는 코드 This paper deals with algorithms that can evaluate students" performance by checking the properties of Charts objects. Instead of passing the property name to the procedure and getting the value of the property one by one, we chose to get the values of all the properties at once through the procedure execution. As a result, the procedure structure can be simplified, thereby improving the execution speed of the procedure. The coding of the algorithm for checking the properties of the Charts object can be summarized as follows: ∙ Code to find the Charts object. ∙ Code that can isolate and extract certain properties of the Charts object. ∙ Code that can store the values and names of properties related to Charts objects in array variable. ∙ Code to check the values of properties of Charts objects ∙ Code that can send and store the values and names of properties related to Charts objects to PHP. ∙ Code to feed back property check results to the user.

      • 엑셀 개체의 속성 체크 방법 (통합, 목표값찾기, 자동필터, 표, 고급필터, 해찾기, 시나리오, 데이터 표)

        유병훈(Byung-Hoon Yu) 한국산업비즈니스학회 2021 한국비즈니스연구 (비즈니스연구) Vol.5 No.2

        본 논문은 엑셀의 VBA를 사용하여 통합, 목표값찾기, 자동필터, 표, 고급필터, 해찾기, 시나리오, 데이터 표를 체크할 수 있는 알고리즘 및 방법론을 다룬다. 특정 개체에 관한 속성을 정확히 체크하려면 속성에 대한 정의가 필요하다. 통합, 목표값찾기 등의 유사성을 체크하기 위해 사용된 스크립트 내용은 다음과 같다. · 속성 중 공통적인 것, 고유한 것, 특정 속성 관련 코드를 변수에 저장한다. ∙ 속성과 속성 이름을 추출하는 코드를 작성한다. ∙ 유사성을 체크하는 방법으로 배열을 이용한다. ∙ 속성의 유사성 유무에 따라 분기될 코드를 작성한다. ∙ 워크북에 삽입된 차트-시트의 수만큼만 프로시저가 실행되게끔 코드를 작성한다. 본 논문에서 다룬 개체 체크 알고리즘을 활용하면 학생들에게 테스트 관련 피드백을 정확하게 할 수 있으며, 학습 관련 다양한 컨텐츠를 개발할 수 있다. 또한, 알고리즘의 속성 체크 방법을 활용하면 엑셀 개체의 모든 속성을 체크할 수 있는 스크립트를 작성할 수 있다. This paper presented an algorithm to check the properties of consolidation, goal seek, auto filter, table, advanced filter, solver, scenario, data table using excel"s VBA. How accurately you can check the properties of a specific object depends on how precisely you can define the properties. The contents of the script used to check the object properties are as follows. ∙ A method for checking object properties is presented. ∙ A code listing common, unique, and specific properties among properties was written and stored in a variable in a string format. ∙ I wrote a code to extract attributes and attribute names. The algorithm for checking object properties presented in this paper can be used for testing or learning purposes. By using the object check algorithm dealt with in this paper, it is possible to accurately give test-related feedback to students and to develop various contents related to learning. Also, if you use the property check method of the algorithm, you can write a script that can check all properties of an Excel object.

      • VBA 개체의 속성 체크 방법

        유병훈(Yu, Byung-Hoon) 한국산업비즈니스학회 2018 한국비즈니스연구 (비즈니스연구) Vol.2 No.1

        본 논문은 엑셀의 VBA를 사용하여 비교 대상 차트-시트 간의 유사성을 체크할 수 있는 알고리즘 및 방법론을 제시하였다. 본 논문에서는 체크 대상 속성으로 차트-시트의 Series 구성원과 ChartGroup 구성원만을 다루었다. 특정 개체에 관한 속성을 정확하게 체크하기 위해서는 속성에 대한 세밀한 정의가 필요하다. 차트-시트 간의 유사성을 체크하기 위해 사용된 스크립트 내용은 다음과 같다. ∙차트-시트의 Series 구성원과 ChartGroup 구성원의 속성을 분석하여 속성 중 공통적인 것, 고유한 것, 특정 속성과 관련된 코드를 작성하고 이를 문자열 형식으로 변수에 저장하였다. ∙속성과 속성 이름을 추출하는 코드를 작성하였다. ∙차트-시트 간의 유사성을 체크하는 방법으로 배열을 이용하였다. 배열에 변수의 값 즉, 속성을 저장하고 배열과 배열 간의 값을 비교할 수 있는 코드를 작성하였다. ∙차트-시트를 비교하여 속성이 동일할 때 실행할 코드와 동일하지 않을 때 실행할 코드를 작성하였다. ∙워크북에 삽입된 차트-시트의 수만큼만 프로시저가 실행되게끔 코드를 작성하여 프로시저 실행 시간을 단축하였다. 본 논문에서 제시한 차트-시트 간의 유사성을 체크하는 알고리즘을 활용하면 테스트 혹은 학습 용도의 컨텐츠를 개발할 수 있다. 또한, 알고리즘의 속성 체크 방법을 활용하면 엑셀 개체의 모든 속성을 체크할 수 있는 스크립트를 쉽게 작성할 수 있다. This paper presents an algorithm to check the similarity between chart-sheets to be compared using Excel VBA. The check target attributes handled in this paper are limited to the Series and ChartGroup members of the chart-sheet. How precisely you can check the properties of a particular object depends on how precisely you define the property. The script used to check the similarity between chart-sheets is as follows. ∙ I Analyzes the properties of the Series and ChartGroup members of the chart-sheets and write code that lists common, unique, and specific attributes related to the attributes, and stores them in a variable in a string format. ∙ I have written code to extract attribute and attribute names. ∙ I used arrays as a way to check the similarity between chart-sheets. I wrote code that stores the value of a variable in an array, that is, an attribute, and compares the value between the array and the array. ∙ Comparing chart-sheets and writing code to run when the attributes are the same and not the same as the code to execute. ∙ I Reduced procedure execution time by writing code so that the procedure runs only as many times as the number of chart-sheets inserted in workbook. The algorithm for checking the similarity between chart-sheets to be compared in this paper can be used for testing or learning purposes. You can create a chart-sheet for your own certification exam and check the similarity between the correct answers to see how well you are doing. By referring to the algorithm presented in this paper, it is easy to write a script that can check all attributes of an Excel object.

      • 모형 시뮬레이션을 위한 스크립팅 기법

        유병훈 대구보건전문대학교 2006 대구보건대학 論文集 Vol.26 No.-

        This Study was designed to develop programming techniques with which we can simulate an Economic Model using Macromedia Flash built-in funtions. This Study suggests the method of entering parameters, establishing coordinates space, mapping ordered pair into the set of graph, calculating the solution of function, indicating labels, indicating the solution of function, and drawing a line between the functions. The techniques suggested in study are vital to animating an Economic Model. The techniques can be applied to the other kinds of Economic Models. The animation techniques refered in study suggests a foundation of new methodological approach to Computer Economics, and also can raise student's interesting and understanding about economic theories through visual, mathematical lectures.

      • 모형 시뮬레이션을 위한 플래시 함수 기법

        유병훈 대구보건대학 2005 대구보건대학 論文集 Vol.25 No.-

        This Study was designed to develop integral function techniques with which we can simulate an Economic Model in Flash. This Study suggests the method of mapping ordered pair into the set of graph, the method of calculating the solution of quadratic function, and the method of drawing a line between linear function and quadratic function with Flash built-in functions. The techniques suggested in study can be applied to the other kinds of Economic Models. The animation techniques refered in study suggests a foundation of new methodological approach to Computer Economics, and also can raise student's interesting and understanding about economic theories through visual, mathematical lectures.

      • 플래시에서 Zoom 효과 구현하기

        유병훈 대구보건대학 2003 대구보건대학 論文集 Vol.23 No.-

        많은 응용 프로그램에서 돋보기 효과를 제공하고 있다. 그러나 대부분의 프로그램은 화면 전체를 확대하는 방법으로 돋보기 효과를 구현하고 있다. 본 논문은 플래시에서 돋보기 효과 및 줌 기능을 구현하는 방안을 제시한다. 본 논문에서 제시하는 돋보기 효과는 마스크 영역을 통해서만 확대/축소가 된다. 돋보기 효과를 응용하면 플래시에서 숨은그림 찾기 등의 애니메이션을 구현할 수 있다. 이를 친구 찾기 등의 웹 사이트에 적용하면 단체사진의 특정 부분을 확대하여 옛 친구를 찾는 특별한 경험을 제공하게 될 것이다. This Study was designed to embody zoom effect in Flash. A zoom effect suggested in study is runned through mask area. Applying zoom effect to Flash movie, we can realize an animation as searching hidden objects and so on. Zoom effect provides a web surfer with particular experience.

      • 政府財政政策이 地域間 隔差에 미치는 影響에 관한 硏究

        유병훈 대구보건대학 2000 대구보건대학 論文集 Vol.20 No.-

        The main purpose of this paper is to analyze fiscal impacts, especially treasury loans and investments, on the disequilibrium development in Korea during four decades. The difference of regional disparities makes regional disequilibrium of budget scale which fixes and magnifies regional disparities, and vice versa. To mitigate regional disparities correspondent policy mix and corrective measures should be prepared. And the regional governments are given a power, albeit a limited one, to levy their own tax rates. Consequently, policy-makers should induce regional governments to engage in a rational fiscal competition through, for example, the local fiscal adjustment system or tax sharing program and make sure that regional tax structure are not distorted by the influence of a few interest groups.

      • HTML을 활용한 Test 제작

        유병훈 대구보건전문대학 2007 대구보건대학 論文集 Vol.27 No.-

        This study was designed to suggest a fundamental method of embodying online test. As most ordinary people cannot access web database, I suggest the method of storing test results on text file. the method dealt in this study can be applied to the other kinds of uses i.e. quiz and questionnaire answered. From the trends of increasing demand for the application of e-Learning, the contents mentioned in this study give most ordinary people plenty of scope for developing e-Learning contents. As this study mentioned a fundamental method of making test in association with developing e-Learning contents, the level of quality is very simple and the uses of test must be restricted. In the next study, I'll treat the method of embodying the types of Matching, Drag and Drop, Hotspot in HTML.

      • 한국경제의 금융위기에 대한 고찰

        유병훈 대구보건대학 2001 대구보건대학 論文集 Vol.21 No.-

        This study attempts to address how the situation of IMF in Korea affects the progress of economic development. The study covers two years, 1998, 1999. During these two years the Korea economy experienced a gloomy development pass. Special emphasis in my review is given to the characteristics features of IMF Policy pursued to promote economic development. The IMF Policy recommended, the high interest policy and the following low interest policy, had resulted in the distortion of allocation of resources. In order to achieve persistent economic growth in Korea, advanced monetary method should be introduced.

      연관 검색어 추천

      이 검색어로 많이 본 자료

      활용도 높은 자료

      해외이동버튼