Posts by Maurício Morhy • 35 points
7 posts
-
0
votes0
answers24
viewsQ: What is the difference between Thread and Threading in python
I’m using Python 3.7.x When I call a thread through the command: t = Thread(target=.... In VS Code shows the thread list in CALL STACK (Call Stack) and runs normal. But when I call through command:…
-
0
votes0
answers74
viewsQ: And python how to stop a specific thread (or all) in while loop
How to stop one, or all threads in python by ID (example) I’m developing a program that should run some loops looking for information in real time. However, when any of them find something the…
-
0
votes3
answers112
viewsA: In Python how to pass the self between 2 windows using modules
I was able to solve it with the karlloss answer. At first it had generated an error: def __init__(self,*args,**argsv, parent): ^ SyntaxError: invalid syntax Researching a little I discovered that…
-
2
votes3
answers112
viewsQ: In Python how to pass the self between 2 windows using modules
I’m learning Python, version 3.7 with Pyqt5 (Qt Designer) I’m trying to define the value of a label using modules, in window 1 it calls the function and works, but when I open window 2 and click on…
-
0
votes1
answer53
viewsQ: How to change formularies in different modules
I’m using Python 3.7 I have 2 forms (windows) that I made with Pyqt5, in one of them have some Labels that I need to change according to the settings window configuration. created a modules with the…
-
0
votes1
answer53
viewsQ: Bring bank result and put in a list to use with variables
I’m working with Python 3.7. I am trying to define variables with data from a list[], the values of the list[] is a result coming from the database, but is giving error. Code: conn =…
-
-1
votes1
answer97
viewsQ: C# Click and drag or use mouse scroll (Postmessage/Sendmessage)
I’m creating a console application, I need to scroll a certain part of the window from positions (x=350 y=240) to (x=350 y=120) (vertical scrolling), tried in several ways but could not. I also…