search results for '2009/11'

  1. 2009/11/19 게시판 행번호 구하기
  2. 2009/11/16 알쏭~ 2.0
  3. 2009/11/10 G-Dragon 소년이여
  4. 2009/11/05 삼항연산
  5. 2009/11/04 업로드전 이미지 미리보기
  6. 2009/11/04 IXMLDOMNode Interface
  7. 2009/11/04 IXMLDOMNodeList Interface
   '행번호
   nCnt = intTotalCnt - (page_size * (nPage-1))
2009/11/19 16:18 2009/11/19 16:18
TAG

알쏭~ 2.0

분류없음 2009/11/16 14:33
사용자 삽입 이미지





















알송 2.0으로 오면서 부터 UI(유저 인터페이스)가 확 바뀌었네~
통합모드 / 분리모드
사실 통합모드보다는 분리모드로 사용하고 있는데,...

장점만 쓴다.
1. 색감이 너무 좋으네요.
2. 벨소리 맹글기 기능 좋으네요.
3. 스킨맹글기 기능도 있지만 그닥 이쁘지도 않고 별로 안쓰고 걍 기본적은 비비드컬러 스킨이
짱인듯 하고
4. url 연결해서 음악방송 듣기도 좋궁.
5. mp3 기계 연결해 놓은후에 mp3 기계로 바로넣기 기능이 좋은거 같으네요.

점점 진화하는 알탱이들이 자랑스럽네요.~
2009/11/16 14:33 2009/11/16 14:33
TAG

G-Dragon 소년이여

할꺼야 2009/11/10 12:45
 

GD

your chores drop it on me

 

밤은 깊었는데 잠은 안오고

늘어난 두통과 싸우고

이리저리 뒤척이다 생각에 잠겨

또 펜을 붙잡고

빼곡히 써내려가는 가사

이 안에 내 철학이 가득하다

뿌연 담배연기 꽉찬 내 방

home sweet home 아늑하다

 

13살 나이에 와서 쉴 틈없이 달려 왔어

멋 모르는 자신감 내겐 가장 큰 무기였어

오르막길이라면 내리막길도 있는 법

돌아가기에 너무 늦어버렸어

I can't let go

 

remember back in the day

남은 절대 믿지 못해

don't forget back in the day

소년이여 그 멋진 목소리로

세상에 소리쳐 shine alive

 

난 G-Dragon 남들이 뭐라건

작다고 어리다고 난 G-Dragon

남들이 뭐라건

사람들은 말해 내가 부러워 가진게 너무 많아

연예인들은 다 편하게만 살아

딱 하루만 그 입장이 돼 봐라

보이는 게 다가 아니란 걸 알아

 

시간이 흘러가면서 외로움만 커져 갔어

멋 모르는 의무감 내겐 가장 큰 부담였어

오르막길이라면 내리막길도 있는 법

도망치기엔 너무 늦어버렸어

I wanna go

 

remember back in the day

남은 절대 믿지 못해

don't forget back in the day

소년이여 그 멋진 목소리로

세상에 소리쳐 shine alive

 

십년동안 수많은 물음들과

내가 흘린 수 많은 땀방울들과

내가 참아온 차가운 눈물들

아아 아아 자 시작해 보는 거야

 

remember back in the day

남은 절대 믿지 못해

don't forget back in the day

소년이여 그 멋진 목소리로

세상에 소리쳐 shine alive

just ones

 

remember back in the day (go back)

we are the woo woo

남은 절대 믿지 못해 (forget)

그대로 woo woo

don't forget back in the day (way back)

소년이여 그 멋진 목소리로 세상에 소리쳐 shine alive

 

come back to me now woo come back to me now 십년이 지나도

come back to me now woo come back to me now 지나간 세월 내 진심을

 

remember back in the day (It's time to shine)

남은 절대 믿지 못해

don't forget back in the day

소년이여 그 멋진 목소리로 세상에 소리쳐 shine alive

2009/11/10 12:45 2009/11/10 12:45

삼항연산

JS 2009/11/05 14:58
f.sex[f.sex[0].checked?0:1].value
2009/11/05 14:58 2009/11/05 14:58
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
    <title></title>
    <style type="text/css">
        .preView { width: 70px; height: 70px; text-align: center; border:1px solid silver; }
    </style>
    <script type="text/javascript">

        function fileUploadPreview(thisObj, preViewer) {
            if(!/(\.gif|\.jpg|\.jpeg|\.png)$/i.test(thisObj.value)) {
                alert("이미지 형식의 파일을 선택하십시오");
                return;
            }

            preViewer = (typeof(preViewer) == "object") ? preViewer : document.getElementById(preViewer);
            var ua = window.navigator.userAgent;

            if (ua.indexOf("MSIE") > -1) {
                var img_path = "";
                if (thisObj.value.indexOf("\\fakepath\\") < 0) {
                    img_path = thisObj.value;
                } else {
                    thisObj.select();
                    var selectionRange = document.selection.createRange();
                    img_path = selectionRange.text.toString();
                    thisObj.blur();
                }
                preViewer.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fi" + "le://" + img_path + "', sizingMethod='scale')";
            } else {
                preViewer.innerHTML = "";
                var W = preViewer.offsetWidth;
                var H = preViewer.offsetHeight;
                var tmpImage = document.createElement("img");
                preViewer.appendChild(tmpImage);

                tmpImage.onerror = function () {
                    return preViewer.innerHTML = "";
                }

                tmpImage.onload = function () {
                    if (this.width > W) {
                        this.height = this.height / (this.width / W);
                        this.width = W;
                    }
                    if (this.height > H) {
                        this.width = this.width / (this.height / H);
                        this.height = H;
                    }
                }
                if (ua.indexOf("Firefox/3") > -1) {
                    var picData = thisObj.files.item(0).getAsDataURL();
                    tmpImage.src = picData;
                } else {
                    tmpImage.src = "file://" + thisObj.value;
                }
            }
        }

    </script>
</head>
<body>
    <input id="fileData" name="fileData" type="file" onchange="fileUploadPreview(this, 'preView')" />
    <div id="preView" class="preView" title="이미지미리보기"></div>
</body>
</html>


출처 : http://junyong.pe.kr/98
2009/11/04 14:29 2009/11/04 14:29
TAG

IXMLDOMNode Interface

ASP 2009/11/04 13:11

IXMLDOMNode Interface

Extends the core Node interface with support for data types, namespaces, DTDs, and schemas.

This interface inherits from IDispatch.

Methods

appendChild Appends newChild as the last child of this node.
attributes Contains the list of attributes for this node.
* Returns the base name for the name qualified with the namespace.
childNodes Contains a node list containing the children (for nodes that can have children).
cloneNode Creates a new node that is an exact clone of this node.
dataType* Specifies the data type for this node.
definition* Returns the definition of the node in the DTD or schema.
firstChild Contains the first child of this node.
hasChildNodes Returns True if this node has children.
insertBefore Inserts a child node to the left of the specified node or at the end of the list.
lastChild Returns the last child node.
namespaceURI* Returns the URI for the namespace.
nextSibling Contains the next sibling of this node in the parent's child list.
nodeName Contains the qualified name of the element, attribute, or entity reference, or a fixed string for other node types.
nodeType Specifies the DOM node type, which determines valid values and whether the node can have child nodes.
nodeTypeString* Returns the node type in string form.
nodeTypedValue* Contains this node's value, expressed in its defined data type.
nodeValue Contains the text associated with the node; depends on the node type.
ownerDocument Returns the root of the document that contains this node.
parentNode Contains the parent node (for nodes that can have parents).
parsed* Indicates whether this node and all descendants have been parsed and instantiated.
prefix* Returns the namespace prefix.
previousSibling Contains the left sibling of this node.
removeChild Removes the specified child node from the list of children and returns it.
replaceChild Replaces the specified old child node with the supplied new child node in the set of children of this node, and returns the old child node.
selectNodes* Applies the specified pattern to this node's context and returns the list of matching nodes.
selectSingleNode* Applies the specified pattern to this node's context and returns the first matching node.
specified* Indicates whether the node (usually an attribute) is explicitly specified or derived from a default value in the DTD or schema.
text* Contains the text content of the node and its subtrees.
transformNode* Processes this node and its children using the supplied XSL style sheet and returns the resulting transformation in a string.
transformNodeToObject* Processes this node and its children using the supplied XSL style sheet and returns the resulting transformation in the supplied object.
xml* Contains the XML representation of the node and all its descendants.

* denotes an extension to the W3C DOM.

Requirements

Implementation: Msxml.dll

Header and IDL files: Msxml.h, Xmldom.idl

2009/11/04 13:11 2009/11/04 13:11

IXMLDOMNodeList Interface

ASP 2009/11/04 13:10

IXMLDOMNodeList Interface

Supports iteration through the live collection, in addition to indexed access.

This interface inherits from IDispatch.

Methods

item Allows random access to individual nodes within the collection.
length Indicates the number of items in the collection.
nextNode Returns the next node in the collection.
reset Resets the iterator.

Remarks

A NodeList collection is live; that is, the addition and removal of nodes, and changes within nodes, are immediately reflected in the collection. This means that two successive requests for items using the same index can return two different items, depending on changes to the collection. This also means that changes to the node objects are immediately available in the nodes obtained from the list. The collection can also be accessed using the "for...next" construct.

Requirements

Implementation: Msxml.dll

Header and IDL files: Msxml.h, Xmldom.idl

2009/11/04 13:10 2009/11/04 13:10