오후 2:24 2000-05-25
조경민 INPUT 태그 사용하기
===========================================================

<P>
        Legend(Rows) : <INPUT type="edit" id="edtRows" value="4">  
        Series(Cols) : <INPUT type="edit" id="edtCols" value="8">  
        <INPUT type="button" value="New Data" style="FONT-WEIGHT: bold" onclick="fnNewData()">        
</P>
        <INPUT type="text" value="푸하" name="puha">
<HR>
<P>
        <input type="radio" value="Line" name="rdShowType" CHECKED >Line
        <input type="radio" value="Box" name="rdShowType">Box
        <input type="radio" value="Pie" name="rdShowType">Pie
        <input type="radio" value="All" name="rdShowType">All
</P>


-> 사용
    아이디를 사용하면 바로 사용 할 수 있다.
    nRows = CInt(edtRows.value)
    nCols = CInt(edtCols.value)
  
   일반적으로 다큐먼트 올에서 Name되어진 객체를 얻어 올수 있다.
  MsgBox Document.all("puha").value

  라디오 선택은 아래 처럼 할 수 밖에 없다.
  For Each objRadio In Document.all("rdShowType")
  
       If objRadio.checked  Then
      
           if objRadio.value = "Line" then
                   sDrawPlug = "NSTLineChart"
           elseif objRadio.value = "Box" then
                   sDrawPlug = "NSTBoxChart"
           elseif objRadio.value = "Pie" then
                   sDrawPlug = "NSTPieChart"
           elseif objRadio.value = "All" then
                   sDrawPlug = "All"
           end if
          
       End If
      
  Next





..................................................................
웹 페이지에 그리드 오브젝 붙이기
<OBJECT ID="MSFlexGrid1" WIDTH=787 HEIGHT=159
   CLASSID="CLSID:6262D3A0-531B-11CF-91F6-C2863C385E30">
   <PARAM NAME="_ExtentX" VALUE="20796">
   <PARAM NAME="_ExtentY" VALUE="4207">
   <PARAM NAME="_Version" VALUE="393216">
   <PARAM NAME="AllowUserResizing" VALUE="1">
</OBJECT>
한후 아래 처럼 할 수 있다.
   MSFlexGrid1.Rows = nRows+1
   MSFlexGrid1.Cols = nCols+1

'KB > 기타' 카테고리의 다른 글

조경민 Visual J++ 에서 JDK 1.3 잘 사용하기  (0) 2004.03.19
java 1.3 실행하기  (0) 2004.03.19
VJ++에서 JDK로 컴파일하기  (0) 2004.03.19
[vb] api 호출  (0) 2004.03.19
[vb] Option Explicit  (0) 2004.03.19

+ Recent posts