gpt4 book ai didi

delphi - 尝试在 TJvFormStorage 中存储整数时出现无效变体操作错误

转载 作者:行者123 更新时间:2023-12-02 03:34:47 25 4
gpt4 key购买 nike

在 Delphi 10.1.2 中的 VCL 应用程序中,我使用 TJvFormStorage 组件来持久存储和恢复数据。

因此,在设计时的 JvFormStorage1 中,我创建了一个 StoredValue 来保存 Integer 值:

enter image description here

然后在运行时,我尝试为该 StoredValue 分配一个 Integer 值:

JvFormStorage1.StoredValue['ToolbarLabelFontSize'].Value := 8;

这会导致无效变体操作错误!

但是从上面的截图中可以看到,StoredValueValue Type被明确定义为Integer类型!

那么我如何为这个StoredValue分配一个Integer值?

最佳答案

StoredValue[] 属性提供 access to the variant values directly ,因此设置这些值之一的正确方法是:

JvFormStorage1.StoredValue['ToolbarLabelFontSize'] := 8;

关于delphi - 尝试在 TJvFormStorage 中存储整数时出现无效变体操作错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45536947/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com