I have a TextCtrl which is set to be multi-line. I have a function
say, updateText(msg), which takes some string and appends it to the
text control...
txtControl.AppendText(msg)
.....however, if the text that I am appending would cause the scroll
bars to appear/or scroll since the text is long the textcontrol appears
to be blank, until you click on the scroll bar...then the text appears.
Any ideas? is this is a sizer problem or a TextCtrl issue??
thanks 10 3987
abcd wrote:
I have a TextCtrl which is set to be multi-line. I have a function
say, updateText(msg), which takes some string and appends it to the
text control...
txtControl.AppendText(msg)
....however, if the text that I am appending would cause the scroll
bars to appear/or scroll since the text is long the textcontrol appears
to be blank, until you click on the scroll bar...then the text appears.
Any ideas? is this is a sizer problem or a TextCtrl issue??
thanks
Don't know for sure, but you can try calling the Refresh() method on the
text control and see if that fixes it.
On Oct 30, 2:52 pm, John Salerno <johnj...@NOSPAMgmail.comwrote:
Don't know for sure, but you can try calling the Refresh() method on
the
text control and see if that fixes it.
Didn't make a difference. Not sure what the problem is, I am wondering
if it is a layout issue since that is my weak spot with wxPython.
sizerTextPanel =
wx.StaticBoxSizer(self.sizerTextPanel_staticbox, wx.HORIZONTAL)
sizerTextPanel .Add(self.textPane, 1, wx.ALL|wx.EXPAND, 2)
self.textPanel.SetAutoLayout(True)
self.textPanel.SetSizer(sizerTextPanel )
sizerTextPanel .Fit(self.textPanel)
sizerTextPanel .SetSizeHints(self.textPanel)
sizerMainPanel.Add(self.textPanel, 3, wx.ALL|wx.EXPAND, 0)
not sure if that means anything to anyone :)
abcd wrote:
sizerMainPanel.Add(self.textPanel, 3, wx.ALL|wx.EXPAND, 0)
Your best bet may be to post to wx************@lists.wxwidgets.org
But one question that comes to mind is, do you not add sizerTextPanel to
sizerMainPanel? I think all sub-sizers should be added to the main
sizer, unless there's some weird reason I don't know of.
If you post to the wxPython mailing list, you might want to include more
of your code so we can see the bigger picture.
But one question that comes to mind is, do you not add sizerTextPanel to
sizerMainPanel? I think all sub-sizers should be added to the main
sizer, unless there's some weird reason I don't know of.
well i set the sizer on the textPanel and then I add the textPanel to
sizerMainPanel
abcd wrote:
>But one question that comes to mind is, do you not add sizerTextPanel to sizerMainPanel? I think all sub-sizers should be added to the main sizer, unless there's some weird reason I don't know of.
well i set the sizer on the textPanel and then I add the textPanel to
sizerMainPanel
Ah, I see. Seems like it may be a sizer issue, since you are adding a
bunch of things together. I noticed that one object you refer to is
self.textPane, is that supposed to be self.textPanel?
On Oct 30, 3:47 pm, John Salerno <johnj...@NOSPAMgmail.comwrote:
>I noticed that one object you refer to is
self.textPane, is that supposed to be self.textPanel?
no, self.textPane is the actual wx.TextCtrl.
I used a GUI Builder to the layout stuff...perhaps that's my problem :)
is there a good site to refer to for how to use sizers? i am
essentially creating a chat window (textPane is the history of the
chat, then a textCtrl below it for typing a new message and a button
next to the input field and buttons below the input field).
abcd wrote:
On Oct 30, 3:47 pm, John Salerno <johnj...@NOSPAMgmail.comwrote:
>I noticed that one object you refer to is self.textPane, is that supposed to be self.textPanel?
no, self.textPane is the actual wx.TextCtrl.
I used a GUI Builder to the layout stuff...perhaps that's my problem :)
is there a good site to refer to for how to use sizers? i am
essentially creating a chat window (textPane is the history of the
chat, then a textCtrl below it for typing a new message and a button
next to the input field and buttons below the input field).
After I watched the screencasts for how Dabo uses sizers, I really
understood them a lot better. I've never used Dabo itself for GUI
design, but the screencast, though it shows them in terms of that
program, still gives a great visual presentation of how sizers work in
general and I suggest you take a look at that: http://leafe.com/screencasts/sizers1.html http://leafe.com/screencasts/sizers2.html
P.S. I suggest you post the full code to the wxPython mailing list. I'll
take a look at it to see if anything strikes me, but also you will have
a ton of other (more experienced) people looking at it too, and I
guarantee they will spot your problem.
On Oct 31, 2006, at 3:22 PM, John Salerno wrote:
After I watched the screencasts for how Dabo uses sizers, I really
understood them a lot better. I've never used Dabo itself for GUI
design, but the screencast, though it shows them in terms of that
program, still gives a great visual presentation of how sizers work in
general and I suggest you take a look at that:
http://leafe.com/screencasts/sizers1.html http://leafe.com/screencasts/sizers2.html
Thanks for the good feedback. It took me a while to wrap my brain
around sizers when I first started using them; now I hate working
without them!
Also, I wanted to mention that our visual Class Designer has another
helpful feature: you can right-click control to bring up a context
menu. One of the choices is 'Edit Sizer Settings...', which brings up
a dialog with all the relevant settings in one place. As you change
them in the dialog, the design surface updates so that you can see
the effect of your changes before you commit them. If you don't like
your changes, click 'Cancel' and things return to the way they were
before you started.
-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com
thanks for the feedback, I am watching the screencasts, which are
helping already. I think I will try out the Dabo GUI tool since it
uses wxPython...and see if I can get the code I need from it.
thanks
On 1 Nov 2006 04:54:32 -0800, abcd <co*******@gmail.comwrote:
thanks for the feedback, I am watching the screencasts, which are
helping already. I think I will try out the Dabo GUI tool since it
uses wxPython...and see if I can get the code I need from it.
I think you'll be very impressed. Those guys are creating an excellent
tool, and I've found that I can create pretty complicated UIs in a
very, very short time with the Class Designer.
--
# p.d. This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Logan |
last post by:
I asked a similar question already in the wxPython mailing list,
but did not get an answer up to now:
1.) When using a TextCtrl with styles...
|
by: Lo?c Mah? |
last post by:
Hello
I try to use a Validator for a TxtCtrl placed in a Panel with a Button
in order to trigger the Validator and test the content of TxtCtrl.
...
|
by: sillyemperor |
last post by:
I was a new guy of Python,when i want to test my wxPython app by
unittest,it couldn`t work.I fund a stubmaker.py but it only for
wxDialog but all...
|
by: PeterG |
last post by:
Hi,
I am relatively new to Python, and am learning it as part of a
university
module...
Im currently undertaking a project to create an IM...
|
by: citronelu |
last post by:
I made a small wxPython app that retrieves web data; for visual
logging I use a TextCtrl widget, and stdout is redirected to it,
something like...
|
by: Tyler |
last post by:
Hello All:
I am currently working on a project to create an FEM model for school.
I was thinking about using wxPython to gather the 12 input...
|
by: Bailu |
last post by:
Hi,
I am a newbie in wxPython and doing a program with ListBox,
I want to select and deselect items in this box,
I have use
self.devlist =...
|
by: aeroumr |
last post by:
In the following code, I have created a panel with a button and a textctrl object on it. I have also created a menubar that will create a new text...
|
by: Jimmy |
last post by:
hi, all
I'm having a problem with creating custom events in wxpython.
I have a class A handling some data processing work and another class
B...
|
by: tammygombez |
last post by:
Hey everyone!
I've been researching gaming laptops lately, and I must say, they can get pretty expensive. However, I've come across some great...
|
by: Kemmylinns12 |
last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
|
by: CD Tom |
last post by:
This happens in runtime 2013 and 2016. When a report is run and then closed a toolbar shows up and the only way to get it to go away is to right...
|
by: CD Tom |
last post by:
This only shows up in access runtime. When a user select a report from my report menu when they close the report they get a menu I've called Add-ins...
|
by: Naresh1 |
last post by:
What is WebLogic Admin Training?
WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
|
by: antdb |
last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine
In the overall architecture, a new "hyper-convergence" concept was...
|
by: Matthew3360 |
last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function.
Here is my code.
...
|
by: Matthew3360 |
last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it...
|
by: AndyPSV |
last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...
| |