Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
70 views

Please I need help n solving this problem. I want to compile a wxpython app in mac OS Tahoe 26.0.1 with pyinstaller But I keep getting this error. No module named 'wx._msw' It is shown in the ...
Oluwatosin Durodola's user avatar
0 votes
1 answer
51 views

Trying to upgrade my python 2.7 scripts to the latest python 3.x for my PC running Windows 7-x64. To do so, I installed python 3.8.9. I get a nasty error when I press ENTER after typing "import ...
papin's user avatar
  • 81
0 votes
1 answer
77 views

I’m using matplotlib in wxpython, and here is what I’m trying to do… I’d like to define my figure to be a specific (user chosen) size…say 8 inches wide by 6 inches high. Then, I’d like the user to be ...
David Hope's user avatar
  • 2,268
0 votes
0 answers
75 views

I am designing a GUI for instrumentation control using wxPython. I am first setting up all the fields and controls I need. Among those controls are SpinCtrlDouble I use to define frequencies and ...
Aldehyde's user avatar
  • 113
1 vote
2 answers
79 views

I'm trying to use the wx.FileDialog class to select the name of a file. I don't want to open it. This is a minimal example of what I'm trying to do: import wx if __name__ == '__main__': app = wx....
Anton Lahti's user avatar
0 votes
1 answer
64 views

In the course of buying a new laptop, I've upgraded wxPython to version 4.2.2, and in an otherwise-fine GUI application (including tree, forms, perspectives, ... all provided with wxPython), the ...
virtualnobi's user avatar
  • 1,190
0 votes
0 answers
18 views

The purpose: For the specific OCR post-processing application, I am displaying part of the text that should be copy/pasted to another application. It should be as much minimalistic and user friendy as ...
pepr's user avatar
  • 21.1k
1 vote
1 answer
87 views

The wxpython application does not work as it is supposed to work after compiling it with pyinstaller. When I run the python code with the python interpreter, it works properly. But when it is bundled ...
Oluwatosin Durodola's user avatar
0 votes
1 answer
51 views

I'm getting the weirdest error while converting an application from Python 2 to Python 3. Briefly this application uses wxPython to create an interface where the user can draw different objects on a ...
SickNebo's user avatar
0 votes
2 answers
46 views

I don't know whether wxpython is the problem or my code, but the label always catches focus if I want to start my code. Even clicking somewhere else won't let go, and it is still focused. here is my ...
Coder's user avatar
  • 1
0 votes
1 answer
47 views

I am trying to use a method present in an ocx file. The definition of this method is (resolution from VS - c#) VS Screen [DispId(17)] [MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions....
Antonino Bonanno's user avatar
0 votes
0 answers
75 views

Eclipse Platform: Version: 2024-06 (4.32) Build id: I20240601-0610 PyDev for Eclipse 12.2.0.202409031913 wxPython 4.2.2 wxFormBuilder Version 4.2.1-0-g80c4cb6 ####### When I open a file in ...
Den's user avatar
  • 199
0 votes
2 answers
163 views

I'm on wxPython version 4.0.7.post2, and Python version 3.8.2. I've enabled warnings to catch the things I need to change in preparation for upgrading both Python and wxPython. One of the warnings I ...
Primordial_Hamster's user avatar
1 vote
3 answers
171 views

I'm trying to apply gaussian blur to a PIL.Image which has transparency, but blurring doesn't seem to be applied to the alpha channel. Here's my code: import wx from PIL import Image, ImageFilter ...
Benco's user avatar
  • 67
-1 votes
1 answer
52 views

I am using python 2.7 and wxPython 2.8. I created a simple desktop application from which the user can start an HTTPServer created from the one builtin in python itself. Server is created in this way: ...
semantic-dev's user avatar
  • 1,123
1 vote
0 answers
72 views

In my setup_base.py script, when I import wx and run: Python312\\python -OO setup.py build_exe I am getting an exit code of 3221225477. When I remove the import wx, it succeeds with an exit code of 0....
yash's user avatar
  • 41
0 votes
1 answer
158 views

I have a wxPython application that remembers its windows positions and sizes by writing them down into a configuration file upon closing, and restoring them from the config file upon launch. Worked ...
Headcrab's user avatar
  • 7,233
0 votes
1 answer
84 views

For example, like google drive. Google drive is developed using wxPython, which means there is such a possibility Screenshot from Google Drive Ideas using Bitmap and DC come to mind, but I would like ...
macdoor5's user avatar
1 vote
0 answers
55 views

I have written a Python module to produce plots of data. The plots are generated on a dialog because I can use a modal dialog to produce a data plot, then close it to go on with the parent program. It ...
DirtFarmer's user avatar
0 votes
0 answers
61 views

I want to populate a wx.ComboBox with a large number of items but rather than having to scroll through them all, I'd like to type a string into the ComboBox and narrow the items in the ComboBox using ...
wef's user avatar
  • 371
0 votes
1 answer
52 views

This dist is generated by Vue enter image description here import os import wx import wx.html2 class MyBrowser(wx.Frame): def __init__(self, *args, **kwds): wx.Frame.__init__(self, *args, *...
Blue My's user avatar
0 votes
1 answer
70 views

Basic outline of situation In wxPython, I have a wx.lib.sized_controls.SizedFrame() as a class object which holds a wx.lib.sized_controls.SizedScrolledPanel() with SetSizerProps(expand=True, ...
Montmons's user avatar
  • 1,436
1 vote
2 answers
133 views

I have the below sample application which has a couple of simple sizers which, for some reason, are centered vertically, which I dont want (see attachment). I want the wxchoice sizer to be position at ...
speedyrazor's user avatar
  • 3,265
0 votes
0 answers
56 views

Environment: wxPython v.4.2.2, Python 3.10 There’s editor-like GUI app: Frame->Panel->MultiSplitterWindow->Panel->STC. I’m implementing Search function as LongRunning, simplified excerpt: ...
Michael G's user avatar
0 votes
1 answer
59 views

I have logical problem in my script. This script is supposed to create two buttons namely, add_button and subtract_button. When the add button is clicked it will increment a variable by one and if it ...
Z.Edibo's user avatar
  • 27

1
2 3 4 5
145