Q&A

  • 소스파악좀해주세요(엑셀관련)
엑셀로 변환하는 부분 공부좀 하는데요.. 모르는 부분이 있어서요.. 좀알려주세요.. 님들
Arrv:OleVariant; <== 변수선언인데 무슨뜻인지
Screen.Cursor := crHourGlass; <== 무슨말이가???
Application.ProcessMessages; <== 이것도 모르것네요.. 왜 쓰는지
1  COMMENTS
  • Profile
    손희석 2003.11.14 17:50

    1번째줄은 델파이 헬프에 나오는 주석입니다.. 알아서 해석하시고요..

    OleVariant can only contain the data types defined as compatible with OLE Automation which means that the data types that can be passed between programs or across the network without worrying about whether the other end will know how to handle the data.

    2번째는 마우스 커서를 진행중임을 표시하기 위한 코드

    3번째는 다른 메세지도 받을수 있도록 처리하게 해주죠.. 역시 참조

    Call ProcessMessages to permit the application to process messages that are currently in the message queue. ProcessMessages cycles the Windows message loop until it is empty, and then returns control to the application.