https://discountcomputerdepot.com/
Continue reading
January 9, 2020 techsupport
Favorite Link
https://mainia.tistory.com/ VBA에서 숫자를 문자로 바꿔야 하는 경우가 종종 있습니다. 숫자를 문자로 바꿀 수 있는 함수에는 두 가지가 있는데요. Str 과 Format 가 그것입니다. 함수 사용에 있어서 주의할 것은 숫자로 변환한 후 문자열 합치기를 하게 되는데, 그때 공백을 꼭 체크하셔야 합니다. ▼ 간단하지만 항상 찾게 되는 문자 변환 함수입니다. 문자로 변환하고 싶다면 Str 과 Format 를 사용하시면 됩니다. 보통 문자로 변환하는 이유가...
Continue reading
January 9, 2020 techsupport
Favorite Link, Tech
[jQuery] 보이기, 숨기기 1. show, hideview plaincopy to clipboardprint? jQuery(‘#toggle’).click(function () { if($(“#id”).css(“display”) == “none”){ jQuery(‘#id’).show(); } else { jQuery(‘#id’).hide(); } }); 2. display = “block” or “none”view plaincopy to clipboardprint? jQuery(‘#toggle’).click(function () { if($(“#id”).css(“display”) == “none”){ jQuery(‘#id’).css(“display”, “block”); } else { jQuery(‘#id’).css(“display”, “none”); } }); 출처: https://rocabilly.tistory.com/71 [프로그램이 좋다]
Continue reading
January 9, 2020 techsupport
Tech
display:none 과 visibility:hidden 의 차이 Language/HTML 2010. 5. 19. 19:25 div 태그로 만든 Layer를 안보이게 하는 두가지 방법 1. display:none <-> block 아예 사라지게 하는것. 보이지도 않고 해당 공간도 존재하지 않게 됨 2. visibility:hidden <-> visible 보이지만 않고 해당 공간은 존재. width와 height값을 주었다면 그만큼 공간은 존재하게 됨 3. display...
Continue reading
January 9, 2020 techsupport
Tech
http://openmrs.org Customized and open source EMR system for clinical/research organizations. Includes central concept dictionary and patient repository.
Continue reading
January 8, 2020 techsupport
Uncategorized
http://www.open-emr.org OpenEMR is an open source electronic health records and medical practice management solution with ONC certified international usage
Continue reading
January 8, 2020 techsupport
Favorite Link, Open Source
http://www.75health.com 75Health is the Electronic Health Record software which is not just about being paperless. It is about inculcating a tradition of simulated and simplified working with intelligent systems that help doctors work efficiently and enhance patient care. Working on a cloud-based technology, it is cost-efficient, fast and...
Continue reading
January 8, 2020 techsupport
Favorite Link, Open Source
https://gbworld.tistory.com/827 https://ponster.tistory.com/280
Continue reading
January 6, 2020 techsupport
Tech