[Interest] Looking for a Qt project

2022-12-24 Thread Sujan Dasmahapatra
Hello Folks I am a senior level developer for Qt having about 15 years of experience on Qt work. Recently I am jobless and looking for a new role. If any employer is willing to hire me please do let me know. Along side Qt I am familiar with OpenGL & GLSL. Waiting for some positive reply. Regards

[Interest] need to write an installer and trial period for Qt app.

2020-11-29 Thread Sujan Dasmahapatra
Hi All, I am interested in making an installer, using Qt. My application is also an Qt app for Windows. How can I embed a code inside my app, so that it pops up a window for installing it with some 16 digit key and a trial period which must be put and checked in the registry on a regular interval

Re: [Interest] Fwd: External Application window title is missing in QWindow

2020-03-23 Thread Sujan Dasmahapatra
ar 2020 at 11:40, Rainer Wiesenfarth < rainer_wiesenfa...@trimble.com> wrote: > Hi Sujan, > > I did not follow the rest of the discussion, but at least your sample code > contains an error: > > On Sat, Mar 21, 2020 at 7:38 AM Sujan Dasmahapatra < &

Re: [Interest] Fwd: External Application window title is missing in QWindow

2020-03-20 Thread Sujan Dasmahapatra
p me. On Fri, 20 Mar 2020 at 11:39, Sujan Dasmahapatra < yellowlemontree0...@gmail.com> wrote: > Dear Tony > > Thanks for your answer. first of all I am not repeating the question here. > It is still a single thread. I am sorry for that. > > finally I am still stuc

Re: [Interest] Fwd: External Application window title is missing in QWindow

2020-03-19 Thread Sujan Dasmahapatra
ow some one if any how we can achieve this in Qt. regards sujan On Sat, 29 Feb 2020 at 15:25, Sujan Dasmahapatra < yellowlemontree0...@gmail.com> wrote: > Dear Tony > > You're right, I am trying to access two separate apps, to be launched in a > single QTabwidget. but h

Re: [Interest] Fwd: External Application window title is missing in QWindow

2020-02-29 Thread Sujan Dasmahapatra
re drawn by special win32 non-client events - but they may be > suppressed, since the window is now being hosted in your app. With more > information, maybe someone can help you - don't just repeat the same > details in another post! > > Regards, Tony > > > On 28/02/2020

[Interest] Fwd: External Application window title is missing in QWindow

2020-02-28 Thread Sujan Dasmahapatra
Dear Friends, My External Application Window title, is missing in my QWindow. I am trying to set this window on a Widget and finally I am displaying this widget on QScrollBar. But I am missing the Window title and menu bar from the app. Please check the code snippet below. QWindow* window = QWin

[Interest] External Application window title is missing in QWindow

2020-02-27 Thread Sujan Dasmahapatra
Dear Friends, My External Application Window title, is missing in my QWindow. I am trying to set this window on a Widget and finally I am displaying this widget on QScrollBar. But I am missing the Window title and menu bar from the app. Please check the code snippet below. QWindow* window = QWin

[Interest] run an external app window on QWidget as a QProcess - How ?

2020-02-21 Thread Sujan Dasmahapatra
hi friend I am running an external app, which I want to fit onto my QScrollArea, for this I am writing code like this. // launch weasis QProcess *process = new QProcess(); process->start("./viewer-win32.exe"); if (process->waitForFinished()) { return; } QWindow *window = QWindow::fromWinId(2118

[Interest] process setting on QWidget - how

2020-02-17 Thread Sujan Dasmahapatra
QProcess *process = new QProcess(); QStringList progargs; progargs << "/C" << "start C:\\ProgramData\\Microsoft\\Windows\\myapp.exe dicom:get C:\\Slicer\\Testing\\Data\\Input\\DWIDicom\\

[Interest] I got query about Qt 3D Studio

2019-12-15 Thread Sujan Dasmahapatra
Dear Folks I want to know is Qt 3D Studio is open source or it is a commercial? I also want the link to download it and some tutorials. Any help is highly appreciated. Regards Sujan ___ Interest mailing list Interest@qt-project.org https://lists.qt-pro

Re: [Interest] [interest][QT Installer Framework] how to overwrite or reinstall with existing app

2014-02-05 Thread Sujan Dasmahapatra
nvoke it at the > beginning of installation process? Sorry I am new to QT installer > framework, so please give me some guidance. Thanks. > > regards, > > > > On Wed, Feb 5, 2014 at 3:14 PM, Sujan Dasmahapatra < > sujan.dasmahapa...@gmail.com> wrote: > >> you delete/

Re: [Interest] [interest][QT Installer Framework] how to overwrite or reinstall with existing app

2014-02-04 Thread Sujan Dasmahapatra
you delete/uninstall the existing folder and reinstall. if you want want a new copy then give a different PATH. On Wed, Feb 5, 2014 at 8:10 AM, peterlingoal wrote: > Hi All, > > I created an offline installer file for windows using QT Installer Frame > work. > > After installation succeeded, I

Re: [Interest] how can we use MongoDB with Qt QML

2014-01-14 Thread Sujan Dasmahapatra
Thanks Jordi your links are useful I appreciate it. Thanks Sujan On Tue, Jan 14, 2014 at 4:07 PM, Jordi Pujol Foyo wrote: > I never tsted MongoDB, but a simple search with google like this > https://www.google.es/search?q=mongodb+qt+driver&oq=mongodb+with > > +qt&aqs=chrome.3.69i57j0l3.10824j0j1

[Interest] how can we use MongoDB with Qt QML

2014-01-14 Thread Sujan Dasmahapatra
I need to use mongoDB no-sql database with my QML project. can I get some guide on this?i have downloaded the zip file of mongodb for win32 bit. For using SQL database like mysql and sqlite we need to configure QT for these databases. Do I need to do similar configuration for using mongoDB?. A

[Interest] QWebView values are updated but correspondingly its not updating on click.

2013-06-23 Thread Sujan Dasmahapatra
[code] QWebElement selectBox2 = m_WebView->page()->mainFrame()->findFirstElement("select[id=hostid]"); selectBox2.setFocus(); selectBox2.evaluateJavaScript("this.selectedIndex = 2"); QWebElement button_click = m_WebView->page()->mainFrame()->findFirstElement("input[type=submit]

[Interest] QWebView problem

2013-06-22 Thread Sujan Dasmahapatra
To select 2 options I do the following. And also click. But the values in my QWebView are not changing based on this. Please help whats wrong going on. QWebElement selectBox = m_WebView->page()->mainFrame()->findFirstElement("select[id=gameid]"); selectBox.setAttribute("value", "18

[Interest] Is it possible to select an option from drop down in a webpage

2013-06-21 Thread Sujan Dasmahapatra
I am able to load an webpage using QWebView. In the page there is a drop down menu. I want to select an option from the drop down. Is it possible to do in QT? Please help. -- Thanks & Regards Sujan ___ Interest mailing list Interest@qt-project.org http:

[Interest] Setting attribute in webpage and press button ‘GO’

2013-06-20 Thread Sujan Dasmahapatra
I am developing a web application. I need to select an option from dropdown in a website and press ‘GO’ button. I am connect with the website like as below. 1. QNetworkAccessManager *m_manager = newQNetworkAccessManager

[Interest] Webapplication in Qt Help needed

2013-06-20 Thread Sujan Dasmahapatra
How can I push a string into a field and press 'go' button in a webpage. There is a website I am able to get the content. One field by name Price : Edit boxbutton-GO I want to enter some value into the edit box and press the button 'GO' from my Qt application. This is a web application in Qt

[Interest] Harish, good to see you on LinkedIn

2013-06-10 Thread Sujan Dasmahapatra
LinkedIn Sujan Dasmahapatra requested to add you as a connection on LinkedIn: -- Harish, I'd like to add you to my professional network on LinkedIn. - Sujan Accept invitation from Sujan Dasmahapatra http://www.linkedin.

[Interest] Expand indicator appearing though no sub folder

2013-06-01 Thread Sujan Dasmahapatra
I have a QFileSystemModel on QTreeView. For some folder though there is no child folder but still the expand indicator is appearing on the left side (small triangle shape.). How can I prevent it to appear if theres no sub folder. Please help. -- Thanks & Regards Sujan

[Interest] (no subject)

2013-06-01 Thread Sujan Dasmahapatra
I have a QFileSystemModel on QTreeView. For some folder though there is no child folder but still the expand indicator is appearing on the left side (small triangle shape.). How can I prevent it to appear if theres no sub folder. Please help. -- Thanks & Regards Sujan

[Interest] delete effect not immediate QFileSystemModel

2013-05-30 Thread Sujan Dasmahapatra
I am deleting one item from QFileSystemModel but it's not updated immediately, when I click on other item then I can see that it's deleted from the model. QFileSystemModel *model = new QFileSystemModel; model->setRootPath(QDir::currentPath()); QTreeView *tree = new QTreeView(this); tree->setmodel(

[Interest] QFileSystemModel name enable to be edited

2013-05-30 Thread Sujan Dasmahapatra
I have QFileSystemModel in my QTreeView. When click on a directory in the model I want to enable the name to be edited just like windows folders. How can I make it enabled and let user write the new name. Any help is appreciated. -- Thanks & Regards Sujan _

[Interest] (no subject)

2013-05-30 Thread Sujan Dasmahapatra
I have QFileSystemModel in my QTreeView. When click on a directory in the model I want to enable the name to be edited just like windows folders. How can I make it enabled and let user write the new name. Any help is appreciated. -- Thanks & Regards Sujan _

[Interest] QFileSystemModel expand indicator

2013-05-30 Thread Sujan Dasmahapatra
I have a QFileSystemModel which set to my QTreeView as model. Somefolder structure is present in the root. When some folder does not have any child folder still the expand indicator(Triangle shape) is appearing left side. How can I stop it not to appear if no folder is present. Any help is highly

[Interest] Removing a folder from QFileSystemModel problem

2013-05-29 Thread Sujan Dasmahapatra
class CSDesignLibTreeView : public QTreeView { Q_OBJECT public: void slot_DeleteFolder(); }; void CSDesignLibTreeView::slot_DeleteFolder() { QFileSystemModel *filemodel = qobject_cast (model()); filemodel->remove(currentIndex()); } Please check the above snippet I am removing one index from QFi

[Interest] change of only one tab in QTabWidget

2013-05-17 Thread Sujan Dasmahapatra
How can I change the width of only one tab in QTabWidget?. With the below code all tabs width is changing. setStyleSheet( "QTabBar::tab { width: 25px; height: " + QString::number(eachTabHeight) + "px; }" ); I want to change the width of one particular tab say for index 2. Please let me know if it's

[Interest] Increase width of tab in QTabWidget

2013-05-16 Thread Sujan Dasmahapatra
how can I incraese width of tab in QTabWidget?. Is it possible. Any suggestion is appreciated. -- Thanks & Regards Sujan ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] Corner Widget not visible

2013-05-16 Thread Sujan Dasmahapatra
I have set a QTabWidget on QMainWindow .ui. And then in main function setting a corner widget a QPushButton as below QPushButton *button = new QPushButton("AddPage",this); button->setGeometry(0,0,120,20); ui->setupUi(this); ui->tabWidget->setCornerWidget(button,Qt::TopRightCorne

Re: [Interest] QTabWidget Vertical writing

2013-05-16 Thread Sujan Dasmahapatra
Thanks Rene let me try this On Thu, May 16, 2013 at 3:31 PM, R. Reucher wrote: > ** > > On Thursday 16 May 2013 11:56:59 Sujan Dasmahapatra wrote: > > > Can the tabText be vertical with QTabWidget::setTabPosition(). I need the > > > TabText to be vertical. &

Re: [Interest] QTabWidget Vertical writing

2013-05-16 Thread Sujan Dasmahapatra
Can the tabText be vertical with QTabWidget::setTabPosition(). I need the TabText to be vertical. On Thu, May 16, 2013 at 5:54 PM, Yves Bailly wrote: > Le 16/05/2013 11:47, Sujan Dasmahapatra a écrit : > > I want to have the QTabWidget vertically...Mean they should vertical and >

[Interest] QTabWidget Vertical writing

2013-05-16 Thread Sujan Dasmahapatra
I want to have the QTabWidget vertically...Mean they should vertical and Tab1 Tab2 text should also be vertical. How can we achieve this. Any help is highly appreciated. Thanks -- Thanks & Regards Sujan ___ Interest mailing list Interest@qt-project.org

[Interest] TableWidget size dynamically

2013-05-15 Thread Sujan Dasmahapatra
I got a QTableWidget with 3 columns in it. How can I resize the columnwidth based on resizing my MainWindow. Currently I have set a fixed width for column using ui.TableWidget->setColumnWidth(0,200); ui.TableWidget->setColumnWidth(1,200); ui.TableWidget->setColumnWidth(2,200); Any help is highly

Re: [Interest] Enter focus is not comint

2013-05-15 Thread Sujan Dasmahapatra
Thanks Rene I did that. Thanks On Wed, May 15, 2013 at 3:52 PM, R. Reucher wrote: > ** > > On Wednesday 15 May 2013 09:46:32 Sujan Dasmahapatra wrote: > > > I have a log in page where user enters user name and password. After that > > > when I press 'Ok'

[Interest] Enter focus is not comint

2013-05-15 Thread Sujan Dasmahapatra
I have a log in page where user enters user name and password. After that when I press 'Ok' button it is working, but if I 'Enter' from keyboard it's not logging in. Please suggest how can I achieve this. Thansk a lot. -- Thanks & Regards Sujan ___ Inte

[Interest] OSG with Qt

2013-05-05 Thread Sujan Dasmahapatra
Can I control OSG viewer by Qt events. Like mouse press, mouse move etc can be used with OSG viewer??..Any suggestions highly appreciated. -- Regards Sujan ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/in

[Interest] Rotating a single object out of 3

2013-03-04 Thread Sujan Dasmahapatra
I have 3 objects on the screen, I want to rotate onll 2 objects the axis and X,Y,Z. Another line is there which I want not to rotate. But with this code below all are moving. Check below my DrawScene function. [code] void CopenGLCoordView::DrawScene(CDC *pDC) { wglMakeCurrent(pDC->m_hDC, m_hr

Re: [Interest] DSLR Remote Pro for windows

2013-02-13 Thread Sujan Dasmahapatra
Thanks Alex I think the page you suggested would help. Thanks a lot. On Wed, Feb 13, 2013 at 4:41 AM, Alex Malyushytskyy wrote: > Your main problem will be not GUI, it will be technical details on how > to control Cannon cameras. > I would advice you to check other that QT forum sources, cause it

[Interest] DSLR Remote Pro for windows

2013-02-12 Thread Sujan Dasmahapatra
I want to develop a similar application as DSLR Remote Pro for Window. Is it possible in Qt. Please give me some hints on my approach. Any help is highly appreciated. -- Regards Sujan http://www.sujantechnologies.com/ ___ Interest mailing list Interest@

Re: [Interest] Is this snippet correct- concurrent run

2012-10-12 Thread Sujan Dasmahapatra
ook below). > You better off using online copy/pasting tools like http://pastebin.com > (free service). This way, anyone can read your code snippet, and with > good syntax highlight too! > > Chris > > On 12/10/12 14:02, Sujan Dasmahapatra wrote: > > Is this code snippet

Re: [Interest] Fwd: how to run 21 threads concurrently

2012-10-05 Thread Sujan Dasmahapatra
8:58 PM, Thiago Macieira wrote: > On sexta-feira, 5 de outubro de 2012 20.53.29, Sujan Dasmahapatra wrote: > > please check this code snippet. Tell me Sascha if this is > > acceptable.Still it's not writing some data. > > Please stop sending code snippets. The problem

Re: [Interest] Fwd: how to run 21 threads concurrently

2012-10-05 Thread Sujan Dasmahapatra
please check this code snippet. Tell me Sascha if this is acceptable.Still it's not writing some data. [code] QSemaphore mSemaphore1; for (int z=0;zrelease(1); } [/code] On Fri, Oct 5, 2012 at 8:32 PM, Sascha Cunz wrote: > Am Freitag, 5. Oktober 2012, 20:20:40 schrieb Sujan Dasm

[Interest] Fwd: how to run 21 threads concurrently

2012-10-05 Thread Sujan Dasmahapatra
-- > Trojita, a fast e-mail client -- http://trojita.flaska.net/ > ___ > Interest mailing list > Interest@qt-project.org > http://lists.qt-project.org/mailman/listinfo/interest > -- Regards Sujan Dasmahapatra skype: sujan.dasmahapatra yahoo msn : dasmahapatra.aerodynam..

Re: [Interest] how to run 21 threads concurrently

2012-10-05 Thread Sujan Dasmahapatra
> Interest@qt-project.org > http://lists.qt-project.org/mailman/listinfo/interest > -- Regards Sujan Dasmahapatra skype: sujan.dasmahapatra yahoo msn : dasmahapatra.aerodynam...@yahoo.co.in Mobile no : +966-530184511 ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] how to run 21 threads concurrently

2012-10-04 Thread Sujan Dasmahapatra
..", but I do not see > > any reason you could want to do this. > > > > Alex > > > > > > > > On Thu, Oct 4, 2012 at 6:25 AM, André Somers > wrote: > >> Op 4-10-2012 15:21, Sujan Dasmahapatra schreef: > >>> I am not able to run m

Re: [Interest] how to run 21 threads concurrently

2012-10-04 Thread Sujan Dasmahapatra
which loop? for(int th=0; th wrote: > Hi Sujan, > > your threads don't output all data to disk, because you forgot some curly > braces in the second loop. > > Sascha > > Am Donnerstag, 4. Oktober 2012, 16:21:10 schrieb Sujan Dasmahapatra: > > I am not able to

Re: [Interest] how to run 21 threads concurrently

2012-10-04 Thread Sujan Dasmahapatra
ason why > QtConcurrent runs as many threads as there are processors. > -- > Thiago Macieira - thiago.macieira (AT) intel.com > Software Architect - Intel Open Source Technology Center > > ___ > Interest mailing list > Interest@

Re: [Interest] how to run 21 threads concurrently

2012-10-04 Thread Sujan Dasmahapatra
be boosted with QThreadPool. On Thu, Oct 4, 2012 at 4:38 PM, Thiago Macieira wrote: > On quinta-feira, 4 de outubro de 2012 16.31.54, Sujan Dasmahapatra wrote: > > Thanks andre for your reply. Can u give me some sample code of using > > QThreadPool. Can u refer my code snippet how

Re: [Interest] how to run 21 threads concurrently

2012-10-04 Thread Sujan Dasmahapatra
idea. Thanks Sujan Op 4-10-2012 15:21, Sujan Dasmahapatra schreef: > > > > I am not able to run my threads concurrently please help. > > How can I run 21 threads concurrently and get the job done by 8 cpus > > what I have in my machine. > > > > I am doing like

[Interest] how to run 21 threads concurrently

2012-10-04 Thread Sujan Dasmahapatra
I am not able to run my threads concurrently please help. How can I run 21 threads concurrently and get the job done by 8 cpus what I have in my machine. I am doing like this [code] std::vector > Threads; QFuture Th; for(int z=0; z<21; z++) { Th = QtConcurrent::run(this,&UnrstParser,z); Thraeds

Re: [Interest] QtConcurrent programming need help

2012-09-27 Thread Sujan Dasmahapatra
My CPU no is 8...Can u give me some code snippet dear Philippe and Thiago. Thanks Sujan On Thu, Sep 27, 2012 at 10:30 PM, Thiago Macieira wrote: > On quinta-feira, 27 de setembro de 2012 21.32.36, Sujan Dasmahapatra wrote: > > I am working on an existing application where threads are

Re: [Interest] QtConcurrent programming need help

2012-09-27 Thread Sujan Dasmahapatra
Thanks a lot Philippe. I'll look into the link u gave. Thanks a lot for your help. Thanks Sujan On Thu, Sep 27, 2012 at 9:49 PM, Philipp Menke wrote: > Am 27.09.2012 20:32, schrieb Sujan Dasmahapatra: > > I am working on an existing application where threads are submitted > &

[Interest] QtConcurrent programming need help

2012-09-27 Thread Sujan Dasmahapatra
I am working on an existing application where threads are submitted concurrently. he is submitting 8 threads together and then he is waiting for all 8 threads to be finished to submit the next 8 threads. In this way after every 8 threads he is waiting and a lot of time is being taken for waiting.

[Interest] Jobs in Saudi

2012-08-04 Thread Sujan Dasmahapatra
Hi Dear All, It's Sujan again. I have got some response, but not got good combination of QT+OpenGL. Please forward your resumes if you have a combination QT+OpenGL. Thanks Sujan Contacts: sujan.dasmahapa...@gmail.com +91-9900839788 -- Regards Sujan Dasmahapatra skype: sujan.dasmahapatra

[Interest] Qt OpenGL Job In SaudiArabia

2012-07-13 Thread Sujan Dasmahapatra
QT OPENGL combination is required for a Saudi oil company, salary 12000 SAR per month. Those who are interested please call me or send me your resume to my mail id sujan.dasmahapa...@gmail.com. Wish you good luck. -- Regards Sujan Dasmahapatra skype: sujan.dasmahapatra yahoo msn

Re: [Interest] mysql not connecting

2012-06-27 Thread Sujan Dasmahapatra
Yes I have just executed export LD_LIBRARY_PATH=/usr/lib/mysql:$LD_LIBRARY_PATH ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] mysql not connecting

2012-06-27 Thread Sujan Dasmahapatra
I am getting this error when executing my application error while loading shared libraries: libmysqlclient_r.so.14: cannot open shared object file: No such file or directory libmysqlclient_r.so.14 is already there in /usr/lib/mysql folder. What else could be the problem pls help.

Re: [Interest] MySQL question using QT

2012-06-20 Thread Sujan Dasmahapatra
Do I need to have mysql installed in the client machine. Kind regards, Sujan Dasmahapatra Project Leader, Aero Group CE - Aero Group Tel  +91 80 66470248 Mob  s...@lmwindpower.com LM Wind Power Blades lmwindpower.com Together we capture the wind to power a cleaner world This e-mail

Re: [Interest] MySQL question using QT

2012-06-20 Thread Sujan Dasmahapatra
rom: Jason H [mailto:scorp...@yahoo.com] Sent: Wednesday, June 20, 2012 7:55 PM To: Sujan Dasmahapatra; interest@qt-project.org Subject: Re: [Interest] MySQL question using QT You have to GRANT root permission to login from your IP, or IP range. ____ From

[Interest] MySQL question using QT

2012-06-20 Thread Sujan Dasmahapatra
It's slightly off-the-topic question I apologize for that. I am facing problem in connecting to mysql server from remote client. I am using this connection in my QT application. But even if I try to connect from outside QT I am failing. Pls check this snippet //in the /etc/my.cnf file I hav

[Interest] version control on MySQL-Qt

2012-06-07 Thread Sujan Dasmahapatra
I have a mysql database which I am accessing using my tool developed in QT. Tables are created. Can we create the same table with the same name but with different revision. Is this facility available in MySQL and QtI want to update the table with the same name but new dataset will be ther

[Interest] There's a vacancy

2012-05-28 Thread Sujan Dasmahapatra
Dear All There is a Qt-OpenGL position vacancy in our company, position based in India, Bangalore. Interested candidates please forward your resume to my mail id. Skill Set : C++, Qt, OpenGL Added advantage : CAD/CFD/Aerodynamics Location : Bangalore, India. s...@lmwindpower.com sujan.d

[Interest] Need help

2012-05-08 Thread Sujan Dasmahapatra
Please give me some suggestions I am stuck in this problem. I want to implement a set of QTextEdit in 2 columns and multiple rows. Initially my sheet(QWIdget) will be blank, There will be a button at the top when pressing this button, a QTextEdit should be added on the sheet at row=0, column=0.

Re: [Interest] QTextEdit not resizing with QFormLayout

2012-05-08 Thread Sujan Dasmahapatra
ok. Edit1 should be resizing according to the mainwindow both vertically and horizontally. Sent: Tuesday, May 08, 2012 1:53 PM To: Sujan Dasmahapatra Cc: interest@qt-project.org Subject: Re: [Interest] QTextEdit not resizing with QFormLayout Use layouts, not absolute positioning. Read the

[Interest] QTextEdit not resizing with QFormLayout

2012-05-08 Thread Sujan Dasmahapatra
Please check this code snippet, with this when I resize the mainwindow, my textedit is not resizing. What could be the problem pls help. //mainwindow.h QPushButton *button; QTextEdit *edit; QFormLayout *formL; //mainwindow.cpp MainWindow::MainWindow(QWidget *parent):QMainWindow(parent)

[Interest] resizing child window with parent window

2012-05-07 Thread Sujan Dasmahapatra
Please give me some idea on resizing the child window. I have parent widget, when resizing this parent widget, I want all my other child widgets should also resize accordingly. I have tried with QFormLayout, with formlayout, the widget's size is changing, e.g a pushbutton is coming horizontally

Re: [Interest] Qt-Creator debug problem

2012-05-07 Thread Sujan Dasmahapatra
No I dint try with command line. It is in windows Qt-creator. For some files in the project, debugger is working fine, but for some other files its showing error, it is not moving from the breakpoint when pressing F10. Kind regards, Sujan Dasmahapatra Project Leader, Aero

[Interest] deleting row from QSqlTableModel - not working

2012-05-05 Thread Sujan Dasmahapatra
I am trying to delete a row from QSqlTableModel which is show in the QTableView but it's not working please help. MainWindow *mainwindow; QSqlTableModel *model; QTableView *view; model = new QSqlTableModel(this,mainwindow->db); model->setTable("Tbl_Drawing"); model->s

[Interest] QwtPlot in QGridLayout

2012-05-03 Thread Sujan Dasmahapatra
I want to create a some plots on the QGridLayout. I have a QWidget which has a pushbutton and another QWidget called canvas. In the canvas I have a QGridLayout. When user presses the pushbutton it should create a QWidget and this widget will have my plot and a legend. They will be appended in

[Interest] set a border on QWidget

2012-05-02 Thread Sujan Dasmahapatra
I want to set a black color border on the QWidget. How can I do that Please give some suggestions. QWidget *widget = new QWidget(this); widget->setGeometry(0,0,600,400); widget->show(); My widget is showing but I want a border visible. Any help would be appreciated, thanks Sujan

Re: [Interest] type casting 5 levels down no error but not proper

2012-04-25 Thread Sujan Dasmahapatra
;dataPage()->parent())->statusBar()->showMessa ge(tr("A new plot being added"),5000); It's crashing... From: Carel Combrink [mailto:carel.combr...@gmail.com] Sent: Wednesday, April 25, 2012 12:42 PM To: Sujan Dasmahapatra Cc: interest@qt-project.org Subject: Re: [Intere

Re: [Interest] type casting 5 levels down no error but not proper

2012-04-24 Thread Sujan Dasmahapatra
27;s parent is QScrollBar so I am getting that by scrollArea and scrollArea's parent is CTabWidget.which is getting failure. What could be the possible reason, please help. Kind regards, Sujan Dasmahapatra Project Leader, Aero Group CE - Aero Group Tel  +91 80 66470248 Mob  s...@lmw

Re: [Interest] type casting 5 levels down no error but not proper

2012-04-24 Thread Sujan Dasmahapatra
quot;),5000); [/code] CTabWidget is a custom class derived from QTabWidget. Please help me getting the mainwindow handle. Thanks for your reply. From: Diego Iastrubni [mailto:diegoi...@gmail.com] Sent: Tuesday, April 24, 2012 5:41 PM To: Sujan Dasmahapatra Cc: interest@qt-p

[Interest] type casting 5 levels down no error but not proper

2012-04-24 Thread Sujan Dasmahapatra
I have my mainwindow which is QMainWindow the parent of all my other classes. I am type casting upwards from 5 levels down using reinterpret_cast, to access the mainwindow to display message using statusBar(), but when type casting it's not giving error but when accessing mainwindow->statusBar()

[Interest] A ScrollBar needed in GridLayout

2012-04-18 Thread Sujan Dasmahapatra
I have implemented a QGridLayout where one by one textedits are appended in multiple rows and 2 columns as below QList plotWidgets; plotWidgets.append(new QTextEdit(this)); layout->addWidget(plotWidgets.last(), row, column); I want a scrollbar should come if the row is more than or e

Re: [Interest] FW: Appending QTextEdit in the QWidget

2012-04-17 Thread Sujan Dasmahapatra
, April 17, 2012 5:45 PM To: interest@qt-project.org Subject: Re: [Interest] FW: Appending QTextEdit in the QWidget Maybe QGridLayout is what you are looking for. Maybe you should also consider using the modulo operator somewhere. Regards, Alex Le 17/04/2012 14:07, Sujan Dasmahapatra a écrit

[Interest] FW: Appending QTextEdit in the QWidget

2012-04-17 Thread Sujan Dasmahapatra
Ignore my last mail it was incomplete. I want to append QTextEdit in the QWidget. QWidget has a specified width and height. I want to append QTextEdit on the widget in such a way that max 2 textedit should be there horizontally, after that 3rd textedit should be added vertically, means the widg

[Interest] Appending QTextEdit in the QWidget

2012-04-17 Thread Sujan Dasmahapatra
textedit should append to the next row. 4th textedit should append to the 2nd row 2nd column. And so on. I dunno whether I am able to explain my problem or not. Please check the code snippet below. Kind regards, Sujan Dasmahapatra Project Leader, Aero Group CE - Aero Group Tel

[Interest] Program exiting with code -1073741511

2012-03-13 Thread Sujan Dasmahapatra
I am building my application in Qt-creator. Built is successful. When I am trying to run it it's giving errors. Can u help me whats going wrong. Error : Starting C:\Documents and Settings\sdh\My Documents\STUREC_DATABASE\STUREC\debug\STUREC.exe... The program has unexpectedly finished. C:\Do

Re: [Interest] Database in LINUX application in windows

2012-02-15 Thread Sujan Dasmahapatra
inux. (Of course, I must have a internet/LAN connection between the > server and client application!) > > Indeed, doesn't matter where MySql is running, too. > You can freely choose the best design. > > Best Regards, > Thales Lange. > > > On 15-02-2012 11:34,

[Interest] Database in LINUX application in windows

2012-02-15 Thread Sujan Dasmahapatra
Dear Friends Can we have a database (MySQL) which is in LINUX and my Qt application is running in windows, can we fetch the data from that database ? I can have my application cross-platform in LINUX and work. But if my user likes to work in windows and communicate with some database inLINUX, is i

Re: [Interest] Design shhirts using Qt OpenGL

2012-02-06 Thread Sujan Dasmahapatra
t; > Nice picture alexander, can u help me creating a formal shirt image > > with dynamic colors. > > > -- Thanks & Regards Sujan Dasmahapatra B.E. (Aeronautics) Bangalore, India Ph:91-9900839788 mail id : sujan.dasmahapa...@gmail.com yahoo msn : dasmahapatra.a

Re: [Interest] Design shhirts using Qt OpenGL

2012-02-06 Thread Sujan Dasmahapatra
mming is partially an artform and, like artists, > programmers will do it even if they don't get money." >- Linus Torvalds > > ___ > Interest mailing list > Interest@qt-project.org > http://lists.qt-p

Re: [Interest] Design shhirts using Qt OpenGL

2012-02-05 Thread Sujan Dasmahapatra
Thanks for the informations Mr Oliver. Thanks Sujan On Mon, Feb 6, 2012 at 12:26 AM, Till Oliver Knoll < till.oliver.kn...@gmail.com> wrote: > Am 03.02.12 17:19, schrieb Sujan Dasmahapatra: > > ... Can I design shirts using gd libray with diferent > > colors?? > > On

Re: [Interest] Design shhirts using Qt OpenGL

2012-02-03 Thread Sujan Dasmahapatra
u underbid and are simply unqualified to > perform this project. > > ** ** > > It is clear you are not qualified for this. > > ** ** > > *From:* interest-bounces+scott=onshorecs@qt-project.org [mailto: > interest-bounces+scott=onshorecs....@qt-project.or

Re: [Interest] Design shhirts using Qt OpenGL

2012-02-03 Thread Sujan Dasmahapatra
. However this would take a degree of >>> sophistication. >>> >>> I say use PHP/GD. Also look around. there's probably already some >>> library like that. >>> >>> -- >>> *From:* Sujan Dasmahapatra >

Re: [Interest] Design shhirts using Qt OpenGL

2012-02-03 Thread Sujan Dasmahapatra
gd_library.htm >> >> You could use Qt to use QGraphicsView to generate your images as well >> then call render() and save the image. However this would take a degree of >> sophistication. >> >> I say use PHP/GD. Also look around. there's probably already som

Re: [Interest] Design shhirts using Qt OpenGL

2012-02-03 Thread Sujan Dasmahapatra
My website is PHP based. Can I deploy a webapplication in ASP.NET?? or by PHP itself I can do that ?? I am ignorant. Please advice me. Thanks Sujan On Fri, Feb 3, 2012 at 8:49 PM, Sujan Dasmahapatra < sujan.dasmahapa...@gmail.com> wrote: > Thanks Martina and Jason for your reply >

Re: [Interest] Design shhirts using Qt OpenGL

2012-02-03 Thread Sujan Dasmahapatra
rver-side graphics rendering, great tools like ImageMagick > already exist. > > Cheers, > Martin > > On 12-02-03 05:32 AM, Jason H wrote: > > I think I speak for everyone where when I say "Um, what?!" > > > > Assuming you aren't trolling, what doe OpenGL

[Interest] assistant deployment problem

2012-02-03 Thread Sujan Dasmahapatra
27;: Cannot load sql" When I am running in my developer system its working, even outside qt creator but when I am deployinh in other system its not working. Can u help me sorting out the problem Thanks for any help. Sujan Kind regards, Sujan Dasmahapatra Project Leader, Aero G

Re: [Interest] QFileSystemWatcher malfunctioning

2012-02-02 Thread Sujan Dasmahapatra
___ > Interest mailing list > Interest@qt-project.org > http://lists.qt-project.org/mailman/listinfo/interest > _______ > Interest mailing list > Interest@qt-project.org > http://lists.qt-project.org/mailman/listinfo/inter

Re: [Interest] QFileSystemWatcher malfunctioning

2012-02-02 Thread Sujan Dasmahapatra
sen wrote: > > Den 02-02-2012 14:29, Andreas Pakulat skrev: > > > On 02.02.12 14:19:25, Sujan Dasmahapatra wrote: > > >> But after updating I am still getting the message that the file is > > >> updated. The signal is not blocked. Please tell me whats goin

Re: [Interest] QFileSystemWatcher malfunctioning

2012-02-02 Thread Sujan Dasmahapatra
message that the file is updated. The signal is not blocked. Please tell me whats going wrong in this. Thanks in advance for your help. Kind regards, Sujan Dasmahapatra Project Leader, Aero Group CE - Aero Group Tel +91 80 66470248 Mob s...@lmwindpower.com LM Wind Power Blades lmwindpowe

[Interest] Fwd: Program application on website

2012-02-01 Thread Sujan Dasmahapatra
-- Forwarded message -- From: Sujan Dasmahapatra Date: Wed, Feb 1, 2012 at 8:52 PM Subject: Re: [Interest] Program application on website To: Martin Holmes Thanks Atlant for your valuable information. I am new to web-server-client application development, so many of your words

Re: [Interest] Program application on website

2012-01-31 Thread Sujan Dasmahapatra
integrate the application somehow on the website. Please give me some suggestions how can I do that. Thanks Sujan On Wed, Feb 1, 2012 at 7:33 AM, Sujan Dasmahapatra < sujan.dasmahapa...@gmail.com> wrote: > Hi Atlant > > I think you misunderstood my requirement. You described about how

Re: [Interest] Program application on website

2012-01-31 Thread Sujan Dasmahapatra
data back up to the web server for storage or for further > processing. > > ** ** > > Atlant > > ** ** > > ** ** > > *From:* interest-bounces+aschmidt=dekaresearch@qt-project.org [mailto: > interest-bounces+aschmidt=dek

[Interest] Program application on website

2012-01-31 Thread Sujan Dasmahapatra
help. Thanks Sujan -- Thanks & Regards Sujan Dasmahapatra B.E. (Aeronautics) Bangalore, India Ph:91-9900839788 mail id : sujan.dasmahapa...@gmail.com yahoo msn : dasmahapatra.aerodynam...@yahoo.co.in icq # 556023244 skype:sujan.dasmahapa...@skyepe.com msn: sujan.dasmahapa...@hotmail.com pu

Re: [Interest] drag and drop disappear the item for windows, in Linux it fine

2012-01-22 Thread Sujan Dasmahapatra
Thanks Kimmo for the information I'll report this bug. Kind regards, Sujan Dasmahapatra Project Leader, Aero Group CE - Aero Group Tel  +91 80 66470248 Mob  s...@lmwindpower.com LM Wind Power Blades lmwindpower.com Together we capture the wind to power a cleaner world This e-mail an

  1   2   >