有同学问我这个问题,我就把代码贴在这里吧.
【程序编程相关:从袁隆平获国际大奖想到的(转)】 【推荐阅读:[音乐天堂]Canon(弦乐版)】module1.bas文件: 【扩展信息:颜色调配用的参考,有兴趣可以看看】 public const max_path = 260public const file_attribute_archive = &h20
public const file_attribute_hidden = &h2 public const invalid_handle_value = -1 public type filetime dwlowdatetime as long dwhighdatetime as long end typepublic type win32_find_data
dwfileattributes as long ftcreationtime as filetime ftlastaccesstime as filetime ftlastwritetime as filetime nfilesizehigh as long nfilesizelow as long dwreserved0 as long dwreserved1 as long cfilename as string * max_path calternate as string * 14 end typepublic declare function findfirstfile lib "kernel32" alias "findfirstfilea" (byval lpfilename as string, lpfindfiledata as win32_find_data) as long
... 下一页