I can't open QAbstractSocket
-
Hi @Jeronimo,
I can't see the error message, so I might be misunderstanding your question slightly, but QAbstractSocket is abstract, so it cannot be instantiated directly.
Try one of the QAbstractSocket-derived concrete classes, such as QTcpSocket or QUdpSocket instead.
Cheers.