以下是引用laketiger在2013-5-10 13:30:20的发言:
问题在这里,比如已经取得服务器上的路径和文件名为:c:\pic\111.jpg
但是在客户端上不可能设置为服务器上的路径啊。
服务器不对外共享,无法用映射驱动器的方法来。
我的程序是用中间层的,就不需要对外共享文件夹
如中间层有一读取图片函数,
FUNCTION getpicture(pic_name as string) AS String
LOCAL str1,pic_name_tmp
str1=''
pic_name_tmp='d:\picture\'+ALLTRIM(pic_name)
IF FILE(pic_name_tmp)
str1=STRCONV(FILETOSTR(pic_name_tmp),13)
ENDIF
RETURN str1
ENDFUNC
-----------------------
在客户端读取图片
picture_file='abc.jpg'
xml_tmp=oweb.getpicture(picture_file) &&oweb为中间层对象
IF NOT EMPTY(xml_tmp)
=STRTOFILE(STRCONV(xml_tmp,14),'picture\'+picture_file)
thisform.Image1.picture='picture\'+picture_file
ENDIF