Re: [Interest] Program application on website

2012-01-31 Thread Simeon Mitev
Think about all different platforms and OS the computers runs. If you build some executable it should be compatible to all of them. This what you want could be only achieved using java applets. Thank to the java run-time environment the applet code can be executed no matter the underlying OS of

Re: [Interest] Program application on website

2012-01-31 Thread Sujan Dasmahapatra
Basically I want to run my program seamlessly over the web. My website is build in PHP. Now I want some opengl interaction on the web basically i want to display some graphics items on the web on user menuclick event. So I am thinking if I could build the application using Qt-OpenGL and then integr

Re: [Interest] Program application on website

2012-01-31 Thread Sujan Dasmahapatra
Hi Atlant I think you misunderstood my requirement. You described about how a web-server works. Thats fine. I want to know can I launch my program on a website ???I want my GUI to be set on the website and an user can work on that software. The program software will have its menus button etc.

Re: [Interest] Mixing C and C++ using qmake, jom, and MSVC2008 ?

2012-01-31 Thread Ed Sutton
Never mind, solved ( or soon will be solved ). Some C files were being included in the Makefile output, others not. Something must be messed up with my guards in some C files. Anyway, sorry for the added noise. -Ed On Jan 31, 2012, at 3:59 PM, Ed Sutton wrote: > My resulting Makefile.Debu

Re: [Interest] Mixing C and C++ using qmake, jom, and MSVC2008 ?

2012-01-31 Thread Philipp Menke
what about renaiming all *.c files into *.cpp? The C++-Compiler will handle the C-Code as well, even if he think its C++-Code. Arthur > My resulting Makefile.Debug omits all *.c files . Does anyone have any Qt > project examples of mixing C and C++ using MSVC? > > Thanks in advance for any dir

Re: [Interest] Mixing C and C++ using qmake, jom, and MSVC2008 ?

2012-01-31 Thread Ed Sutton
Sorry, I left out a possibly important clue; my quake call is: qmake.exe C:\projects\NTI_Battery_Exerciser\Battery_Exerciser_Client\Battery_Exerciser_Client.pro -r -spec win32-msvc2008 -Ed On Jan 31, 2012, at 3:59 PM, Ed Sutton wrote: > My resulting Makefile.Debug omits all *.c files . Does

[Interest] Mixing C and C++ using qmake, jom, and MSVC2008 ?

2012-01-31 Thread Ed Sutton
My resulting Makefile.Debug omits all *.c files . Does anyone have any Qt project examples of mixing C and C++ using MSVC? Thanks in advance for any direction, -Ed *** File: myQtProject.pro ***

Re: [Interest] Encode POST data for QNetworkAccessManager

2012-01-31 Thread Thiago Macieira
On Tuesday, 31 de January de 2012 18.53.44, noru...@me.com wrote: > Hi, > > I want to send some specific data to a PHP Script. > For example a regular expression. > > My problem now is that a '+' is replaced by a whitespace for example. > > Any hints would be great. You didn't tell us how you e

[Interest] Encode POST data for QNetworkAccessManager

2012-01-31 Thread norulez
Hi, I want to send some specific data to a PHP Script. For example a regular expression. My problem now is that a '+' is replaced by a whitespace for example. Any hints would be great. Thanks in advance Best Regards NoRulez ___ Interest mailing list

Re: [Interest] libgles_cm.lib and OpenGl32.lib

2012-01-31 Thread John Weeks
On 31-Jan-2012, at 7:46 AM, Joerg Bornemann wrote: > On 31/01/2012 00:07, ext John Weeks wrote: > > [...] >> does not help. VSAddin 1.1.10 is still generating #include >> "IgorH/StandardIncludes.h" in the moc_xxx files, which results in an >> error because . is not part of the search paths. Is t

Re: [Interest] Program application on website

2012-01-31 Thread Atlant Schmidt
Sujan: > ...and now I want that program to work on a website. Is it possible to do?? I think you need to ask us a "more concrete" question. In exactly what way do you want your program to "work on a website"? Are you writing a Qt program that should be able to access data from a website?

[Interest] Program application on website

2012-01-31 Thread Sujan Dasmahapatra
Dear Friends How can deploy an application on a website. I want to develop an application program using Qt, and now I want that program to work on a website. Is it possible to do?? Please give me some lights on this, I am somewhat ignorant about website application interaction. Thanks for any help

Re: [Interest] libgles_cm.lib and OpenGl32.lib

2012-01-31 Thread Joerg Bornemann
On 31/01/2012 00:07, ext John Weeks wrote: [...] > does not help. VSAddin 1.1.10 is still generating #include > "IgorH/StandardIncludes.h" in the moc_xxx files, which results in an > error because . is not part of the search paths. Is there a solution for > this problem, too? Don't know. Please r

[Interest] [ANN] ODB C++ ORM 1.8.0 released, adds support for SQL Server

2012-01-31 Thread Boris Kolpackov
Hi, I am pleased to announce the release of ODB 1.8.0. ODB is an open-source object-relational mapping (ORM) system for C++. It allows you to persist C++ objects to a relational database without having to deal with tables, columns, or SQL and without manually writing any of the mapping code. Maj

Re: [Interest] Hardware Accerlation problem - Viewport(new GLWidget())

2012-01-31 Thread Dietrich . Gossen
Ok, I solved the problem. It was actually hardware accerlated but, the problem on the target was the caching. I commented this line in my QGraphicsPixmapItem out: 1. //setCacheMode(DeviceCoordinateCache); Dietrich Von:Pritam An: interest@qt-project.org Datum: 31.01.2012 11:52

Re: [Interest] Hardware Accerlation problem - Viewport(new GLWidget())

2012-01-31 Thread Pritam
On Monday 30 January 2012 02:15 PM, dietrich.gos...@continental-corporation.com wrote: Hi, somehow the Hardware Accerlation with GLWidget doesn’t work. I think I am missing something trivial. thats how my code looks like: 1. int main(int argc, char *argv[]) 2. { 3. _QApplication_