Questions tagged as 'pyqt5'

0
answers

PyQt5 Can not find the qsqlpsql.dll driver

I have installed ANACONDA 5.0.0, in Win10, Python 3.6.2, by default Anaconda brings PyQT5 but when executing a program that tries to connect with postgresql9.5 it tells me the driver has not been found.     
asked by 08.10.2017 / 19:59
0
answers

Error executing script, failure to load DLL

I am trying to apply one of my first applications in Qt5 with Python 3.5.2: import sys from PyQt5 import QtWidgets def window(): app = QtWidgets.QApplication(sys.argv) w = QtWidgets.Qwidget() w.show() sys.exit(app.exec_()) wi...
asked by 18.07.2017 / 23:56
0
answers

Add interfaces ui to main window (python)

class MenuA(QMainWindow): def __init__(self): QMainWindow.__init__(self) uic.loadUi("Interfaces/MenuAdmi.ui",self) self.actionAgregar.triggered.connect(self.AgregarInvent) def AgregarInvent(self): AgregarI...
asked by 15.06.2017 / 02:40
0
answers

How to create the "pulse" effect of material design in PyQt?

I've been trying to integrate the effect "press" to the buttons or widgets that allow it but I have not been able to do it I started creating environments with HTML and behind python to apply all the necessary effects I understand that the...
asked by 09.05.2017 / 17:26
1
answer

Error importing my script in python

I have the main file and my own function that I want to add. And he sends me the following error. The function path is fine and the function in the main file does work. self.lbl = QLabel(self) TypeError: arguments did not match any overloaded...
asked by 27.02.2017 / 22:33
1
answer

QTableView or QTableWidget? [closed]

In Pyqt5 that is more convenient, use QTableView or use QTableWidget?     
asked by 20.06.2016 / 23:05