I am developing an intrusion detection system in real time.Thus , i would like those result to be appended to my textcontrol.However , i am unable to append it.It is because the function run in live(continuous) and append the textcontrol in live.How can i solve this problem which any output in real time be appended to my text control.I have try the standard way but its does not appear in my text control.
real time.Thus , i would like those result to be
appended to my textcontrol.However , i am unable
to append it.It is because the function run in
live(continuous) and append the textcontrol in
live.How can i solve this problem which any output
in real time be appended to my text control.I have
try the standard way but its does not appear in my
text control.
Not really sure how to use it with.still a novice here.
···
On Monday, 11 November 2013 15:24:20 UTC+8, Ku Wei Xiong wrote:
Dear all,
I am developing an intrusion detection system in real time.Thus , i would like those result to be appended to my textcontrol.However , i am unable to append it.It is because the function run in live(continuous) and append the textcontrol in live.How can i solve this problem which any output in real time be appended to my text control.I have try the standard way but its does not appear in my text control.
There are some problems in the code you posted. Specifically, none
of it makes any reference to text controls at all. Show us the code
that manipulates the text control, and perhaps we can offer some
advice.
Note, however, that you cannot manipulate the text control from
outside the process that created the window. If you need to update
the UI from a multiprocessing function, you will have to use
something like wx.CallAfter to send a message back to the main
window.
···
Ku Wei Xiong wrote:
I am developing an intrusion detection system in
real time.Thus , i would like those result to be
appended to my textcontrol.However , i am unable
to append it.It is because the function run in
live(continuous) and append the textcontrol in
live.How can i solve this problem which any output
in real time be appended to my text control.I have
try the standard way but its does not appear in my
text control.