ilovezhoujoe 发表于 2006-11-2 15:08:46

load gui文件的路径问题

小弟现在需要将路好的脚本存到TD上,所以想将脚本用到的gui文件放到脚本所在的目录下,但是用相对路径load gui文件时有几个文件不能load进来,查找后发现通过相对途径load的gui文件是在一个临时目录下,而不是在脚本所在的目录.请教如果想要把gui文件和脚本同时上传到TD上,该把gui文件放到脚本的什么位置,并且路径怎么调用.谢谢了.

lxhcba 发表于 2006-11-13 11:04:24

gui文件放的位置没有限制的,放那里都可以,但是你要把你放的路径写清楚
public GuiPath = "Gui在TD的路径";
GuiFile=tddb_load_attachment ( "GuiName.GUI", GuiPath);
GUI_load(GuiFile);

jacky9947 发表于 2007-3-23 17:14:35

# get the test file path
        static test_Path = getvar("testname");

# get the test table path
        static DB_Path1 = test_Path & "\\login.xls";
        static DB_Path2 = test_Path & "\\repair.xls";
       
# get the gui file path
        static GUI_Path= test_Path & "\\111222.gui";

# load GUI
        if(GUI_load(GUI_Path) == E_OK)
                report_msg("GUI load success!");

dionysus 发表于 2007-3-24 12:46:00

把gui文件放到脚本文件夹下,之后用ls的方法就可以load了
页: [1]
查看完整版本: load gui文件的路径问题