CFchart 意外关闭了我的笔记本电脑

发布于 2024-10-27 01:51:22 字数 132 浏览 2 评论 0原文

这几天,我的笔记本电脑上出现了有关 CFChart 的问题。因为每当我在我的笔记本电脑上运行(打开)CFChart 时,它就会意外关闭并出现蓝屏,就像内存泄漏一样。

PS:Oracle 10g 和 CF8 也安装在这台笔记本电脑上。

In these days, I've got the problem about CFChart in my laptop. Because whenever I run (open) CFChart in my latop, which accidently shut down and come out Blue Screen like memory leaking.

PS: Oracle 10g and CF8 are the same installed in this latop as well.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南风几经秋 2024-11-03 01:51:22

现在,我找到了为什么我的笔记本电脑在运行编码后就会关闭。这是因为以下编码,我已保存为“style.cfm”并将其包含在我的图表文件中。

<cfsavecontent variable="theme">
<?xml version="1.0" encoding="UTF-8"?>
<pieChart depth="Double" style="Solid" type="SmallNut" angle="0">
    <dataLabels style="Pattern" placement="outside" autoControl="false" font="Arial-10">
        <![CDATA[
        $(colPercent)
      ]]>
    </dataLabels>
    <legend spacing="0" placement="Right" halign="Right">
        <decoration style="None"/>
    </legend>
    <elements drawOutline="false">
        <morph morph="Grow"/>      
    </elements>

    <table>
        <heatmap isEnabled="false" minLevel="0.0" maxLevel="0.0"/>
    </table>

    <popup background="white" foreground="black"/>            
    <decoration foreColor="#B200B2"/>
    <paint palette="Pastel" paint="plain"/>
</pieChart>
<cfsavecontent>

因此,我删除了 并保存为 xml 文件。然后,再次渲染后100%工作。我无法说服为什么我的笔记本电脑只因上述编码而关闭一次。

Now, I've found why my laptop is shut down once I run my coding. It's because of the following coding and I've saved as "style.cfm" and include it in my chart file.

<cfsavecontent variable="theme">
<?xml version="1.0" encoding="UTF-8"?>
<pieChart depth="Double" style="Solid" type="SmallNut" angle="0">
    <dataLabels style="Pattern" placement="outside" autoControl="false" font="Arial-10">
        <![CDATA[
        $(colPercent)
      ]]>
    </dataLabels>
    <legend spacing="0" placement="Right" halign="Right">
        <decoration style="None"/>
    </legend>
    <elements drawOutline="false">
        <morph morph="Grow"/>      
    </elements>

    <table>
        <heatmap isEnabled="false" minLevel="0.0" maxLevel="0.0"/>
    </table>

    <popup background="white" foreground="black"/>            
    <decoration foreColor="#B200B2"/>
    <paint palette="Pastel" paint="plain"/>
</pieChart>
<cfsavecontent>

So, I've removed and saved as xml file. Then, 100% working after rendering it again. I cannot convince why my laptop only shut down once for above coding.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文