반응형 분류 전체보기1070 [VB6] 공용컨트롤 : 속성들 (MSComm Control)Break Property CDHolding Property CTSHolding Property CommEvent Property CommID Property CommPort Property DSRHolding Property DTREnable Property EOFEnable Property Handshaking Property InBufferCount Property InBufferSize Property Index Property (ActiveX Controls) Input Property InputLen Property InputMode Property Name Property NullDiscard Property, MSComm Control Object Propert.. 2017. 12. 13. [VB6] 공용컨트롤 개요 Visual Basic: MSComm ControlVisual Studio 6.0MSComm ControlSee Also Example Properties Methods EventsThe MSComm control provides serial communications for your application by allowing the transmission and reception of data through a serial port.SyntaxMSCommRemarksThe MSComm control provides the following two ways for handling communications:Event-driven communications is a very powerful method f.. 2017. 12. 13. [VB6] 공용컨트롤 : InputMode Visual Basic: MSComm ControlVisual Studio 6.0InputMode PropertySee Also Example Applies ToSets or returns the type of data retrieved by the Input property.Syntaxobject.InputMode [ = value ]The InputMode property syntax has these parts:PartDescriptionobjectAn object expression that evaluates to an object in the Applies To list.valueA value or constant that specifies the input mode, as described i.. 2017. 12. 13. [VB6] 공용컨트롤 : InputLen Visual Basic: MSComm ControlVisual Studio 6.0InputLen PropertySee Also Example Applies ToSets and returns the number of characters the Input property reads from the receive buffer.Syntaxobject.InputLen [ = value ]The InputLen property syntax has these parts:PartDescriptionobjectAn object expression that evaluates to an object in the Applies To list.valueAn integer expression specifying the numbe.. 2017. 12. 13. [VB6] 공용컨트롤(MSComm) : Input Visual Basic: MSComm ControlVisual Studio 6.0Input PropertySee Also Example Applies ToReturns and removes a stream of data from the receive buffer. This property is not available at design time and is read-only at run time.Syntaxobject.InputThe Input property syntax has these parts:PartDescriptionobjectAn object expression that evaluates to an object in the Applies To list. RemarksThe InputLen p.. 2017. 12. 13. [VB6] ByVal과 ByRef의 차이점 ByVal은 변수를 받아와서 쓰는 것으로값이 변화하지 않고 정상적으로 리턴값을 받는다. ByRef는 받아온 변수 자체를 조작하는 것으로값이 변해버리므로, 원본 값이 남지 않게 된다. 호출 속도는 ByRef가 빠르다는 분석이 있다. Byte타입을 함수에서 선언해서 쓰는 경우 ByRef로 나오는데선언순서를 바꿔서 하면 ByVal로 사용가능한지? '1안Method ( ByRef MyByte() As Byte ) AS Long '개선안Method ( ByVal MyByte As Byte() ) AS Long 참고(1429) byRef 와 byVal 의 속도 비교 (엑셀 VBA 매크로) same results passing byte array ByRef and ByVal 2017. 12. 7. 이전 1 ··· 69 70 71 72 73 74 75 ··· 179 다음 반응형