一个delphi的问题
大家都知道DELPHI的语法是不区分大小写的但是例如iflistbox1.Items[i]=memo1.Lines[x]then这个检测是区分大小写的我想知道的是怎么让这...
大家都知道 DELPHI 的语法是不区分大小写的 但是例如
if listbox1.Items[i] = memo1.Lines[x] then
这个检测是区分大小写的
我想知道的是 怎么让这种检测不区分大小写呢?
我临时做了一个小程序 就是杀进程的 在memo.text里的 EXE文件名 只要进程里有的话就全部杀掉
var
i,x:integer;
begin
for i:= 0 to listbox1.Items.Count-1 do begin
for x:= 0 to memo1.Lines.Count-1 do begin
if listbox1.Items[i] = memo1.Lines[x] then
KillTask(listbox1.Items[i]);
end;
end;
end;
我看了 的确是区分大小写的 要不就是我的编辑器出问题了
呵呵 我自己解决了 谢谢 展开
if listbox1.Items[i] = memo1.Lines[x] then
这个检测是区分大小写的
我想知道的是 怎么让这种检测不区分大小写呢?
我临时做了一个小程序 就是杀进程的 在memo.text里的 EXE文件名 只要进程里有的话就全部杀掉
var
i,x:integer;
begin
for i:= 0 to listbox1.Items.Count-1 do begin
for x:= 0 to memo1.Lines.Count-1 do begin
if listbox1.Items[i] = memo1.Lines[x] then
KillTask(listbox1.Items[i]);
end;
end;
end;
我看了 的确是区分大小写的 要不就是我的编辑器出问题了
呵呵 我自己解决了 谢谢 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询