Posts by eniocsj • 19 points
6 posts
-
-1
votes1
answer36
viewsQ: Two vertical menus on both sides of the browser
See the image: The content (a three.js script) would occupy 100% of the viewport(padding:0;border:0;margin:0), while the menus would occupy 10% width per 100% height. In the case of menu 1, I can…
-
0
votes1
answer183
viewsQ: Qwidget class inside Qmainwindow class
I have the following code: # -*- coding: utf-8 -*- import sys from PyQt5.QtWidgets import QWidget, QVBoxLayout, QHBoxLayout, QPushButton from PyQt5.QtWidgets import QSpacerItem, QLabel, QComboBox…
-
0
votes1
answer87
viewsQ: Multiple ui’s on the same Qmainwindow
I am trying to put two Qwidgets imported from ui files, however none appears, problem that does not occur when I enter only one. # -*- coding: utf-8 -*- import sys from PySide2.QtUiTools import *…
-
0
votes1
answer194
viewsQ: I cannot render html in python 3
I have the following app: #!/usr/bin/python3 from bottle import template, route, run import html cabeca = (''' <html lang="pt-br"> <head> </head> <body> <nav id="menu">…
-
0
votes1
answer326
viewsQ: Python does not insert data in sqlite3
I have the following code: #!/usr/bin/python3 import sqlite3 app = '/backup/app/' bd = app + 'bd/' contato_banco = bd + 'contato.db' contato_tab = (('nome' , 'TEXT'), ('email' , 'TEXT'), ('whatsapp'…
-
0
votes1
answer49
viewsQ: Fixed menu hides even with z-index
I have the following code: <html lang="pt-br"> <head> <meta charset=utf-8/> <title> Inicio </title> <style type="text/css"> *{ font-size:18px; vertical-align:…