使用 wxThread 在 wxListCtrl 中填充高数据-我可以但是

发布于 2024-10-17 17:02:04 字数 794 浏览 3 评论 0原文

我想在wxListCtrl中填充数据库表,我可以做到这一点,我为此使用wxThread。我的问题是 - 我的概念适用于少量数据,当我增加大小时,它显示一个错误,例如 -

showingdatainwxlistctrl: ../../src/XlibInt.c:595: _XPrivSyncFunction: Assertion `dpy->synchandler == _XPrivSyncFunction' failed.

我的代码如下所示: -

void *MyThread :: Entry()
{
    int i=1,j,k=0   ;
    while(i!=400)
    {
        long index=this->temp->data_list_control->InsertItem(i,wxT("amit"));

        for(j=1;j<3;j++)
        {
            this->temp->data_list_control->SetItem(index,j,wxT("pathak"));    
        }
        k++;
        if(k==30)
        {
            this->Sleep(1000);
            k=0;
        }
        i++;    
    }
}

如果我使用 i =4, 10 100,它正在工作,但我越过了限制(我不知道在哪一点)它开始显示错误 如果您有任何建议,请帮助我...

i want to fill database table in wxListCtrl, i can do this , i m using wxThread for this. my problem is - my concept is working for small amount of data, when i increase the size, it shows a error like-

showingdatainwxlistctrl: ../../src/XlibInt.c:595: _XPrivSyncFunction: Assertion `dpy->synchandler == _XPrivSyncFunction' failed.

my code is given below:-

void *MyThread :: Entry()
{
    int i=1,j,k=0   ;
    while(i!=400)
    {
        long index=this->temp->data_list_control->InsertItem(i,wxT("amit"));

        for(j=1;j<3;j++)
        {
            this->temp->data_list_control->SetItem(index,j,wxT("pathak"));    
        }
        k++;
        if(k==30)
        {
            this->Sleep(1000);
            k=0;
        }
        i++;    
    }
}

if i used i =4, 10 100, it is working but i crossed the limit( i dont know at which point) it start showing error
if you have any suggestion then pls help me...

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

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

发布评论

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

评论(2

够运 2024-10-24 17:02:04

您需要将事件发布到主线程并在事件处理程序中添加项目,而不是从工作线程直接调用 SetItem。列表控件事件的数据应放置到自定义事件类中。请参阅 wxPostEvent 函数和此处的详细信息: http://wiki.wxwidgets.org/Custom_Events

Instead of direct SetItem call from the worker thread, you need to post event to the main thread and add item in the event handler. Data for list control event should be placed to custom event class. See details in wxPostEvent function and here: http://wiki.wxwidgets.org/Custom_Events

时光匆匆的小流年 2024-10-24 17:02:04

您正在从另一个线程访问非线程安全的 wxListCtrl,这根本不起作用。

更好的解决方案可能是跳过线程,使用 wxTimer,然后每次调用 OnTimer 时再填充 400 个条目。

You're accessing a non-threadsafe wxListCtrl from another thread, this will simply not work.

A better solution may be to skip the thread, use a wxTimer, then fill 400 more entries every time OnTimer is called.

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