WORDCALL.TXT
上传用户:fh681027
上传日期:2022-07-23
资源大小:1959k
文件大小:0k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. Declare Function GetColor Lib "FormDLL"(Col As Long) As Long
  2. Sub MAIN
  3.   NewColor = GetColor(0)
  4.   Print "The code of the color is " + Str$(NewColor)
  5.   Insert "Red:" + Str$(NewColor Mod 256) + Chr$(13)
  6.   Insert "Green:" + Str$(Int(NewColor / 256) Mod 256) + Chr$(13)
  7.   Insert "Blue:" + Str$(Int(NewColor / (256 * 256))) + Chr$(13)
  8.   
  9. End Sub