FreeFile函数的一种返回一个Integer,代表下一个可供OPEN语句使用的文件号可获得尚未被占用的文件号中的头一个,参数范围可以是0或1,也可以省略语法: FreeFile[(rangenumber)]注:方括号以内的数值可以省略FreeFile(0)、FreeFile或FreeFile()表示返回1~255之间未使用的文件号FreeFile(1)表示返回256~511之间未使用的文件号
Open App.path&"\"&"dataout.txt"For Output As #1
App.path你可以理解为是一个变量,它是一个字符串变量,值就是你当前运行的程序所在的路径。例如,你的程序的执行文件在C盘的a文件夹中,那么此时App.path就等于"C:\a"
如果你想得到"C:\a\dataout.txt"这个完整的路径,那么假设不要"\",即lujing=App.path &"dataout.txt"的话(假设你的路径的...
From: http://msdn2.microsoft.com/en-us/library/aa264946(VS.60).aspx
LoadPicture( [filename], [size], [colordepth],[x,y] )
filename
Optional. String expression specifying a filename. Can include folder and drive. If no filename is specified LoadPicture clears the Image or PictureBox c...