aName:array[0..31] of WideChar;//编译就提示检测到错误类EAccessViolation

combobox11.Text :=aName;
可是一编译就提示检测到错误类EAccessViolation


aName:array[0..31] of WideChar;//没有初始化

 

var aName:array[0..31] of WideChar;

i:Integer;

begin

for i := 0 to 31 do begin

aName[i]:=#65;

end;

combobox11.Text:=aName;

end;

相关文章:

  • 2021-05-22
  • 2021-07-26
  • 2022-01-19
  • 2021-06-24
  • 2021-06-28
  • 2021-10-10
  • 2021-10-25
  • 2022-01-20
猜你喜欢
  • 2021-09-21
  • 2022-12-23
  • 2022-12-23
  • 2021-12-22
  • 2022-12-23
  • 2021-06-07
  • 2021-08-07
相关资源
相似解决方案