#12003/9/9 11:55:24
我的程序如下
string1:="1\\2\\3\\4"
String2:="1\\2\\3\\5"
MyString:="1\\2\\3\\4\\5\\6"
memo1:=wcDisplayControl(100,100,100,100,"memo")
memo2:=wcDisplayControl(300,100,100,100,"memo")
wcSetPropertyvalue(memo1,"Text",string1)
wcSetPropertyvalue(memo2,"Text",string1)
等待,按鼠标继续
if string1<>string2 then
ResultString:=Replace(string1,string2,MyString)
wcSetPropertyvalue(Memo1,"Text",ResultString)
wcSetPropertyvalue(memo2,"Text",string2)
end if
memo1的值由 1\2\3\4变为 1\2\3\4\5\6 ,memo2的值变为1\2\3\5
按理说memo1的值应为 1\2\3\5\5\6,但出现了错误,我该怎么改程序