BlinCTNov. 1, 2019, 1:46 p.m.
Untitled
ComboBox { id: comboBoxDevices anchors.top: parent.top anchors.left: parent.left width: 200 model: pDevices delegate: ItemDelegate
BlinCTOct. 30, 2019, 4:24 a.m.
Untitled
ComboBox { id: comboBoxDevices anchors.top: parent.top anchors.left: parent.left width: 200 model: pDevices delegate: ItemDelegate
Evgenii LegotckoiOct. 23, 2019, 7:24 a.m.
dictionary for s_k
var s_k = 0; var A = 222; var map_value_to_s_k = {}; map_value_to_s_k[100] = 1; map_value_to_s_k[200] = 2; map_value_to_s_k[300] = 3; map_value_to_s_k[400] = 4; map_value_to_s_k[500] = 5; ma
Evgenii LegotckoiJuly 30, 2019, 7:32 a.m.
dynamic properties
QObject* obj = new QObject(); obj->setProperty("first", 1); obj->setProperty("second", 2); QMap<QString, QVariant> propertyNamesToValues; for (const QString& name : obj->dynamicPropertyNames()) {
linqJuly 29, 2019, 11:11 a.m.
Untitled
void TankItemWidget::slotShowWidget(Values *values) { if(!shown) { this->resize(400, 600); this->updateGeometry(); //this->paint this->show(); s
Evgenii LegotckoiJuly 22, 2019, 7:25 a.m.
connect signal slot
connect(ui->okButton, &QPushButton::clicked, this, &MainWindow::mySlot); // ui->okButton заменить на свой виджет, который был добавлен на форум // &QPushButton::clicked заменить на свой сигнла // &
linqJuly 19, 2019, 5:16 a.m.
123
// к сигналу подключается лямбда функция, // которая захватывает объект, в котором она создана через this, // а также какаю-то модель данных model, очевидно, она создана через new, то есть это ука
Evgenii LegotckoiJuly 17, 2019, 10:34 a.m.
QVector iterator
QVector<QWidget*> m_widgets; QVector<QWidget*>::iterator it = m_widget.begin(); m_widgets.resize(16); for (int i = 0; i < 16; ++i) { QWidget* w = new QWidget(); *it = w; it++; }
A
AnonymousJuly 12, 2019, 9:58 a.m.
getData
function getData($ip, $json = false){ $content = []; $ripe = file_get_contents('http://rest.db.ripe.net/search.json?query-string='.$ip); $json = json_decode($ripe, true); for($i =
A
AnonymousJuly 12, 2019, 8:32 a.m.
getData
function getData($ip){ $content = []; $ripe = file_get_contents('http://rest.db.ripe.net/search.json?query-string='.$ip); $json = json_decode($ripe, true); for($i = 0;$i < count($j
A
AnonymousJuly 10, 2019, 6:45 p.m.
ip
function getData($ip){ $content = []; $ripe = file_get_contents('http://rest.db.ripe.net/search.json?query-string='.$ip); $json = json_decode($ripe, true); for($i = 0;$i < count($j
A
AnonymousJune 18, 2019, 1:52 a.m.
A
AnonymousMay 9, 2019, 10:32 a.m.
Untitled
#include "widget.h" #include "ui_widget.h" Widget::Widget(QWidget *parent) : QWidget(parent), ui(new Ui::Widget) { ui->setupUi(this); this->resize(600,600); // Задае
A
AnonymousApril 7, 2019, 10:41 a.m.
BlinCTMarch 28, 2019, 9:04 a.m.
Untitled
// char* = ""; // char* = NULL; str answer = str( getenv( "string" ) ); if(!answer.empty()) return answer;
Evgenii LegotckoiMarch 28, 2019, 4:40 a.m.
Use initialize method
#include <iostream> class A { public: A() { } void virtual initialize() { std::cout << "A" << std::endl; } }; class B : public A { public: B()
Evgenii LegotckoiMarch 28, 2019, 4:38 a.m.
Don`t invoke virtual methods in constructor
#include <iostream> class A { public: A() { initialize(); } void virtual initialize() { std::cout << "A" << std::endl; } }; class B : public
Evgenii LegotckoiMarch 14, 2019, 4:20 a.m.
QSqlQuery
QSqlQuery query("SELECT * FROM artist"); int fieldNo = query.record().indexOf("country"); while (query.next()) { QString country = query.value(fieldNo).toString(); doSomething(country); }
A
AnonymousMarch 11, 2019, 6:31 p.m.
AD
- Akiv Doros
- Nov. 12, 2024, 1:58 a.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:50points,
- Rating points-4
m
- molni99
- Oct. 26, 2024, 11:37 a.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:80points,
- Rating points4
m
- molni99
- Oct. 26, 2024, 11:29 a.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:20points,
- Rating points-10
Last comments
ИМ
Django - Tutorial 017. Customize the login page to Django Добрый вечер Евгений! Я сделал себе авторизацию аналогичную вашей, все работает, кроме возврата к предидущей странице. Редеректит всегда на главную, хотя в логах сервера вижу запросы на правильн…
Игорь МаксимовNov. 22, 2024, 10:51 p.m.
Evgenii LegotckoiNov. 1, 2024, 12:37 a.m.
Fb3 file reader on Qt Creator Подскажите как это запустить? Я не шарю в программировании и кодинге. Скачал и установаил Qt, но куча ошибок выдается и не запустить. А очень надо fb3 переконвертировать в html
ИМ
Django - Lesson 064. How to write a Python Markdown extension Приветствую Евгений! У меня вопрос. Можно ли вставлять свои классы в разметку редактора markdown? Допустим имея стандартную разметку: <ul> <li></li> <li></l…
Игорь МаксимовOct. 5, 2024, 5:51 p.m.
QML - Lesson 016. SQLite database and the working with it in QML Qt Здравствуйте, возникает такая проблема (я новичок): ApplicationWindow неизвестный элемент. (М300) для TextField и Button аналогично. Могу предположить, что из-за более новой верси…
Now discuss on the forum
Mosquito Spray System Effective Mosquito Systems for Backyard | Eco-Friendly Misting Control Device & Repellent Spray - Moogo ; Upgrade your backyard with our mosquito-repellent device! Our misters conce…
Evgenii LegotckoiJune 25, 2024, 1:11 a.m.
t
google domain [url=https://google.com/]domain[/url] domain [http://www.example.com link title]
tonypeachey1Nov. 15, 2024, 5:04 p.m.
NSProjectJune 4, 2022, 1:49 p.m.
IscanderCheNov. 1, 2024, 1:43 a.m.