I built an app with PyQt and cx_freeze that has a systray icon, however the icon does not show up in the system tray in Windows 7 (the app is there and running but just a blank spot - no icon). now it does work fine in windows XP on other computers, just not in win 7. any ideas?
cx_freeze built app not showing systray icon in windows 7
735 Views Asked by Scott C At
1
There are 1 best solutions below
Related Questions in PYTHON
- new thread blocks main thread
- Extracting viewCount & SubscriberCount from YouTube API V3 for a given channel, where channelID does not equal userID
- Display images on Django Template Site
- Difference between list() and dict() with generators
- How can I serialize a numpy array while preserving matrix dimensions?
- Protractor did not run properly when using browser.wait, msg: "Wait timed out after XXXms"
- Why is my program adding int as string (4+7 = 47)?
- store numpy array in mysql
- how to omit the less frequent words from a dictionary in python?
- Update a text file with ( new words+ \n ) after the words is appended into a list
- python how to write list of lists to file
- Removing URL features from tokens in NLTK
- Optimizing for Social Leaderboards
- Python : Get size of string in bytes
- What is the code of the sorted function?
Related Questions in WINDOWS-7
- Can't install anything with pip2 on Windows 7 due to UnicodeDecodeError
- Finding the default application for a particular file name extension (Even when served by a metro app)
- Copying text from gvim editor to system clipboard works only once per session
- Command line arguments are not passed in Windows 7 - Java
- This Operation has been canceled due to restrictions in effect on this computer, Please contact your administrator
- Compiling PDCurses into ".a", error with mingw command
- NET USE command to connect to a shared folder on local LAN
- error of updating an C# web service application by accessing a URL from MS installer command "msiexec" in C# VS 2010
- Notepad++ replace "Save" Common File Dialog Box
- How to correctly have modeless form appear in taskbar
- Maven in OSX Keeps Compiling with Java 1.5
- sfInit() snowfall package in R hangs on Windows 7
- Running php file asks for download instead of executing in apache 2.5?
- How can I programatically download a file from a sharepoint server and lock it?
- parse.com .Net sdk works on windows 7?
Related Questions in PYQT4
- Retrieving string value from label and then parsing into an integer, pyqt4
- PyQt QVBoxLayout and missing widgets?
- SVG icons with PyQt on Windows and Linux
- Custom Locks Threading python
- PyQt progress bar not updating or appearing until 100%
- How can I have an animated system tray icon in PyQt4?
- Using QThreadPool with QRunnable in PyQt4
- Python URLLib does not work with PyQt + Multiprocessing
- PyQt Qstring not accepted when script run from WIndows command line, why?
- Changing property of a QLE in python
- QGraphicsScene on a QMainWindow
- How can you know when a file has been modified within a running Python?
- Cannot create a new window in PyQt without it having a parent
- Why am I getting a QWidget error?
- Qgraphicsview items not being placed where they should be
Related Questions in CX-FREEZE
- executables = executables python error (trying to turn pygame into executable with cx_freeze)
- How should I use cx_freeze with a Macports library?
- What does it mean for statically linking and dynamically linking in Python?
- cx_freeze linking to libraries in /opt/local rather than the ones it copied over
- How to package pyqt5 program and qml into exe using cx_Freeze
- creates a Debian binary package, a .deb file from cx_Freeze-d Python executables
- How do I get compiled python(with cxFreeze) to get the current working directory as the directory where the executable is in?
- Create an exe with Python 3.4 using cx_Freeze
- Import Module error when using cx_Freeze (PYTHON)
- cx_Freeze and scipy - missing gfortran library?
- How do i freeze a gui app written in python(pygame) using cxFreeze?
- Python app using Requests has missing files and errors after cx_freeze
- cx_freeze no module named 'pkg_resources'
- Cannot run my .exe python program using cx_freeze
- Getting pyinstaller .exe program to run from clicking file?
Related Questions in SYSTRAY
- Password Protect Winforms Application
- Ubuntu: How to add Systray notification icon using an ruby app?
- How to re-add icon to system tray after explorer.exe crash
- have multiple tooltips/popups show neatly stacked in the windows systray area, similar to messenger/anti-virus notifications
- Why my program is not responding after I want to show it?
- why script can not be suspended/paused?
- Systray bubble not showing up (with enabled baloons in XP)
- How to start WinForm app minimized to tray?
- Get trayicon tooltip
- cx_freeze built app not showing systray icon in windows 7
- ShowWindow() showing blank app until is interacted with via mouse/keyboard after restoring from systray in C++ - Flutter App
- How to open network icon in systray with PowerShell (not NCPA.cpl)
- Why the icon doesn't display in System Tray although the python code is executing without any error?
- Why isn't the popup menu for my System Tray Icon responding to inputs?
- wpf c# tray icon app terminates after 30 minutes
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
this should work. however in win XP it looks like you only need "self.tray_icon.setIcon(icon)" and not ".setVisible(True)" or ".show()" for it to work which is the problem i was running in to. i also created a class inheriting QtGui.QApplication and added:
unfortunately i dont know what of the above exactly solved the problem as i dont have a win 7 computer to personalty test things so i did the shotgun approach and it worked.