summaryrefslogtreecommitdiffstats
path: root/src/activeqt/doc/snippets/src_activeqt_container_qaxselect.cpp
blob: 34ee59c0568a745581b579dd9464ea7c65fa4cc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (C) 2015 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

//! [0]
QAxSelect select;
if (select.exec()) {
    QAxWidget *container = new QAxWidget;
    container->setControl(select.clsid());
    container->show();
}
//! [0]