| vb基础 | vb实例教程 | api调用 | 控件使用 | 经验技巧 | 数据库操作 | 算法及技术 | vb源码下载 |
分解颜色为RGB To break an RGB color value into its components, use: red = color Mod 256 green = (color \ 256) Mod 256 blue = color \ 256 \ 256 There are some system colors that have funny values like &H8000000F&. Unfortunately they don't work this way |
||||