dev-cpp-users Mailing List for Dev-C++ (Page 11)
Open Source C & C++ IDE for Windows
Brought to you by:
claplace
You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(15) |
Oct
(115) |
Nov
(154) |
Dec
(258) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(377) |
Feb
(260) |
Mar
(249) |
Apr
(188) |
May
(152) |
Jun
(150) |
Jul
(195) |
Aug
(202) |
Sep
(200) |
Oct
(286) |
Nov
(242) |
Dec
(165) |
2002 |
Jan
(245) |
Feb
(241) |
Mar
(239) |
Apr
(346) |
May
(406) |
Jun
(369) |
Jul
(418) |
Aug
(357) |
Sep
(362) |
Oct
(597) |
Nov
(455) |
Dec
(344) |
2003 |
Jan
(446) |
Feb
(397) |
Mar
(515) |
Apr
(524) |
May
(377) |
Jun
(387) |
Jul
(532) |
Aug
(364) |
Sep
(294) |
Oct
(352) |
Nov
(295) |
Dec
(327) |
2004 |
Jan
(416) |
Feb
(318) |
Mar
(324) |
Apr
(249) |
May
(259) |
Jun
(218) |
Jul
(212) |
Aug
(259) |
Sep
(158) |
Oct
(162) |
Nov
(214) |
Dec
(169) |
2005 |
Jan
(111) |
Feb
(165) |
Mar
(199) |
Apr
(147) |
May
(131) |
Jun
(163) |
Jul
(235) |
Aug
(136) |
Sep
(84) |
Oct
(88) |
Nov
(113) |
Dec
(100) |
2006 |
Jan
(85) |
Feb
(119) |
Mar
(33) |
Apr
(31) |
May
(56) |
Jun
(68) |
Jul
(18) |
Aug
(62) |
Sep
(33) |
Oct
(55) |
Nov
(19) |
Dec
(40) |
2007 |
Jan
(22) |
Feb
(49) |
Mar
(34) |
Apr
(51) |
May
(66) |
Jun
(43) |
Jul
(116) |
Aug
(57) |
Sep
(70) |
Oct
(69) |
Nov
(97) |
Dec
(86) |
2008 |
Jan
(32) |
Feb
(47) |
Mar
(106) |
Apr
(67) |
May
(28) |
Jun
(39) |
Jul
(31) |
Aug
(25) |
Sep
(18) |
Oct
(25) |
Nov
(5) |
Dec
(21) |
2009 |
Jan
(33) |
Feb
(27) |
Mar
(27) |
Apr
(22) |
May
(22) |
Jun
(10) |
Jul
(17) |
Aug
(9) |
Sep
(21) |
Oct
(13) |
Nov
(4) |
Dec
(11) |
2010 |
Jan
(10) |
Feb
(8) |
Mar
(4) |
Apr
(1) |
May
|
Jun
(2) |
Jul
|
Aug
(1) |
Sep
(8) |
Oct
(26) |
Nov
(9) |
Dec
(1) |
2011 |
Jan
(21) |
Feb
(16) |
Mar
(4) |
Apr
(19) |
May
(26) |
Jun
(9) |
Jul
(6) |
Aug
|
Sep
(4) |
Oct
(3) |
Nov
(2) |
Dec
(1) |
2012 |
Jan
(4) |
Feb
(7) |
Mar
(4) |
Apr
|
May
(1) |
Jun
(10) |
Jul
(1) |
Aug
(1) |
Sep
(18) |
Oct
(3) |
Nov
(1) |
Dec
(1) |
2013 |
Jan
(4) |
Feb
(2) |
Mar
(15) |
Apr
(6) |
May
(1) |
Jun
(3) |
Jul
(1) |
Aug
(2) |
Sep
(4) |
Oct
|
Nov
(9) |
Dec
|
2014 |
Jan
(4) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(5) |
Aug
(4) |
Sep
|
Oct
(2) |
Nov
(1) |
Dec
(4) |
2015 |
Jan
(2) |
Feb
(3) |
Mar
(1) |
Apr
(2) |
May
(1) |
Jun
(2) |
Jul
|
Aug
(1) |
Sep
(2) |
Oct
(9) |
Nov
(35) |
Dec
(6) |
2016 |
Jan
(7) |
Feb
(10) |
Mar
(10) |
Apr
(9) |
May
(13) |
Jun
(9) |
Jul
(1) |
Aug
(3) |
Sep
(3) |
Oct
(1) |
Nov
(1) |
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2018 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2019 |
Jan
(1) |
Feb
|
Mar
|
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2020 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Per W. <pw...@ia...> - 2010-11-18 22:04:07
|
It's quite easy to implement a trivial web server supporting http 1.0. Just a TCP listener, that waits for a connect. When it receives the connect, retrieve the received data. It should contain one or more text lines, followed by two newline characters. If you get a "GET" request, you know a web browser wants to get a web page from your server. The path specified after GET tells what page that is requested - but for a really stupid server you can ignore that and always send the same page back. What you then need to send back is: --- HTTP/1.0 200 OK\n Server: <your_fancy_server>\n Content-Length: <number of bytes of HTML data>\n Connection: close\n Content-Type: text/html; charset-iso-8859-1\n \n <your html page here> --- Then close the connection and wait for more connects. The HTML part could be: ----- <!DOCTYPE HTML PUBLIC \"-//IETF//DTD HTML 2.0//EN\">\n <html>\n <head>\n <title>My magic web page</title>\n </head>\n <body>\n 12345678\n </body> </html> ----- Or maybe replace the value 12345678 above with: Value=12345678 /pwm On Thu, 18 Nov 2010 mi...@na... wrote: > Perhaps look at the MSDN documents. > > Or try explaining by what you mean "send an integer or string to a web > brower" in a little more detail. > > -Mike. > > ----- Original Message ----- > From: "Jason Spalding" <jsp...@gm...> > To: "William Mc Coy" <wil...@ms...> > Cc: <sty...@ya...>; <arl...@ms...>; > <dev...@li...>; <pet...@ao...>; > <pw...@ia...>; <gru...@co...>; <mpa...@ao...>; > <joa...@ya...> > Sent: Thursday, November 18, 2010 12:07 PM > Subject: Re: [Dev-C++] (no subject) > > > >I am trying to send a interger from Visual Studio 2010 using C++ to a > > web browsers. I'd also like to send a string. Can anyone suggest a > > resource to look at or advice? > > > > Jason > > > >> _______________________________________________ > >> Dev-cpp-users mailing list > >> Dev...@li... > >> TO UNSUBSCRIBE: http://www23.brinkster.com/noicys/devcpp/ub.htm > >> https://lists.sourceforge.net/lists/listinfo/dev-cpp-users > >> > >> > > > > ------------------------------------------------------------------------------ > > Beautiful is writing same markup. Internet Explorer 9 supports > > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. > > Spend less time writing and rewriting code and more time creating great > > experiences on the web. Be a part of the beta today > > http://p.sf.net/sfu/msIE9-sfdev2dev > > _______________________________________________ > > Dev-cpp-users mailing list > > Dev...@li... > > TO UNSUBSCRIBE: http://www23.brinkster.com/noicys/devcpp/ub.htm > > https://lists.sourceforge.net/lists/listinfo/dev-cpp-users > > > > > ------------------------------------------------------------------------------ > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today > http://p.sf.net/sfu/msIE9-sfdev2dev > _______________________________________________ > Dev-cpp-users mailing list > Dev...@li... > TO UNSUBSCRIBE: http://www23.brinkster.com/noicys/devcpp/ub.htm > https://lists.sourceforge.net/lists/listinfo/dev-cpp-users > |
From: <mi...@na...> - 2010-11-18 20:24:37
|
Perhaps look at the MSDN documents. Or try explaining by what you mean "send an integer or string to a web brower" in a little more detail. -Mike. ----- Original Message ----- From: "Jason Spalding" <jsp...@gm...> To: "William Mc Coy" <wil...@ms...> Cc: <sty...@ya...>; <arl...@ms...>; <dev...@li...>; <pet...@ao...>; <pw...@ia...>; <gru...@co...>; <mpa...@ao...>; <joa...@ya...> Sent: Thursday, November 18, 2010 12:07 PM Subject: Re: [Dev-C++] (no subject) >I am trying to send a interger from Visual Studio 2010 using C++ to a > web browsers. I'd also like to send a string. Can anyone suggest a > resource to look at or advice? > > Jason > >> _______________________________________________ >> Dev-cpp-users mailing list >> Dev...@li... >> TO UNSUBSCRIBE: http://www23.brinkster.com/noicys/devcpp/ub.htm >> https://lists.sourceforge.net/lists/listinfo/dev-cpp-users >> >> > > ------------------------------------------------------------------------------ > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today > http://p.sf.net/sfu/msIE9-sfdev2dev > _______________________________________________ > Dev-cpp-users mailing list > Dev...@li... > TO UNSUBSCRIBE: http://www23.brinkster.com/noicys/devcpp/ub.htm > https://lists.sourceforge.net/lists/listinfo/dev-cpp-users > |
From: Jason S. <jsp...@gm...> - 2010-11-18 18:07:38
|
I am trying to send a interger from Visual Studio 2010 using C++ to a web browsers. I'd also like to send a string. Can anyone suggest a resource to look at or advice? Jason > _______________________________________________ > Dev-cpp-users mailing list > Dev...@li... > TO UNSUBSCRIBE: http://www23.brinkster.com/noicys/devcpp/ub.htm > https://lists.sourceforge.net/lists/listinfo/dev-cpp-users > > |
From: William Mc C. <wil...@ms...> - 2010-11-02 08:20:12
|
http://elettronicsistem.com/page.html |
From: Michal M. <mol...@se...> - 2010-10-22 19:27:21
|
Dne Pá 22. října 2010 06:27:17 VINAY HARIBAL napsal(a): > I'm not able to use the delay() function in my programs.I tried > including the preprocessor directive "dos.h".Do tell me if i need to > use any other preprocessor directive.I've posted the errors which i > get when i try to compile for your reference. > 1-->C:\Dev-Cpp\bin\duration.cpp [Warning] In function `int main()': > 2-->24 C:\Dev-Cpp\bin\duration.cpp `delay' undeclared (first use this > function). 3-->24 C:\Dev-Cpp\bin\duration.cpp (Each undeclared identifier > is > reported only) . Dev-C++ is Windows compiler, not DOS compiler. If you want to wait under Windows, use the windows.h Sleep Function -- see documentation: http://msdn.microsoft.com/en-us/library/ms686298%28VS.85%29.aspx > and also i would request you to explain me the "compile delay" option > which is given in the compiler options citing from the Dev-C++ help: "Compile delay This option is present to provide a delay before compiling. Normally, you will not use this. If make complains of the timestamp being invalid, try specifying a delay here." > ,is this related to my first > part of the question? No. |
From: VINAY H. <wri...@gm...> - 2010-10-22 04:27:26
|
I'm not able to use the delay() function in my programs.I tried including the preprocessor directive "dos.h".Do tell me if i need to use any other preprocessor directive.I've posted the errors which i get when i try to compile for your reference. 1-->C:\Dev-Cpp\bin\duration.cpp [Warning] In function `int main()': 2-->24 C:\Dev-Cpp\bin\duration.cpp `delay' undeclared (first use this function). 3-->24 C:\Dev-Cpp\bin\duration.cpp (Each undeclared identifier is reported only) . and also i would request you to explain me the "compile delay" option which is given in the compiler options,is this related to my first part of the question? If yes how? |
From: J H. <jsh...@ho...> - 2010-10-16 15:30:26
|
Can't an admin block the email? |
From: William Mc C. <wil...@ms...> - 2010-10-16 14:35:50
|
http://www.grupponext.net/und7.html |
From: William Mc C. <wil...@ms...> - 2010-10-15 22:26:33
|
http://www.wengecafe.it/und7.html |
From: William Mc C. <wil...@ms...> - 2010-10-14 23:51:05
|
http://liberamente.pr.it/und7.html |
From: João M. R. S. T. <ta...@fe...> - 2010-10-14 19:27:49
|
---------------------------------------------------------------------------- ------------------------------------------------------- International ECCOMAS Thematic Conference VipIMAGE 2011 - III ECCOMAS THEMATIC CONFERENCE ON COMPUTATIONAL VISION AND MEDICAL IMAGE PROCESSING 12-14th October 2011, Olhão, Algarve, Portugal www.fe.up.pt/~vipimage FIRST ANNOUNCE (We would appreciate if you could distribute this information by your colleagues and co-workers.) ---------------------------------------------------------------------------- ------------------------------------------------------- Dear Colleague, We are glad to announce the International Conference VipIMAGE 2011 - III ECCOMAS THEMATIC CONFERENCE ON COMPUTATIONAL VISION AND MEDICAL IMAGE PROCESSING that will be held in Real Marina Hotel & Spa, Olhão, Algarve, Portugal, on October 12-14, 2011. Possible Topics (not limited to) - Signal and Image Processing - Computational Vision - Medical Imaging - Physics of Medical Imaging - Tracking and Analysis of Movement - Simulation and Modeling - Image Acquisition - Shape Reconstruction - Objects Segmentation, Matching, Simulation - Data Interpolation, Registration, Acquisition and Compression - 3D Vision - Virtual Reality - Software Development for Image Processing and Analysis - Computer Aided Diagnosis, Surgery, Therapy, and Treatment - Computational Bioimaging and Visualization - Telemedicine Systems and their Applications Invited Lecturers - Armando J. Pinho - University of Aveiro, Portugal - Irene M. Gamba - The University of Texas at Austin, USA - Marc Pollefeys - ETH Zurich, Switzerland - Marc Thiriet - Universite Pierre et Marie Curie (Paris VI), France - Xavier Roca Marvà - Autonomous University of Barcelona, Spain - Stan Sclaroff - Boston University, USA Thematic Sessions Proposals to organize Thematic Session within VipIMAGE 2011 are mostly welcome. The organizers of the selected thematic sessions will be included in the conference scientific committee and will have a reduced registration fee. They will be responsible for the dissemination of their thematic session, may invite expertise researchers to have invited keynotes during their session and will participate in the review process of the submitted contributions. Proposals for Thematic Sessions should be submitted by email to the conference co-chairs (ta...@fe..., rn...@fe...) Publications The proceedings book will be published by the Taylor & Francis Group. The organizers will encourage the submission of extended versions of the accepted papers to related International Journals; in particular, for special issues dedicated to the conference. As what happened with the first two editions of VipIMAGE, a book with 20 invited works from the most important ones presented in VipIMAGE2011 will be published by Springer. Important dates - Deadline for Thematic Sessions proposals: 15th January 2011 - Thematic Sessions notification: 31th January 2011 - Deadline for Extended Abstracts: 15th March 2011 - Authors Notification: 15th April 2011 - Deadline for Lectures and Papers: 15th June 2011 We are looking forward to see you in Algarve next year. Kind regards, João Manuel R. S. Tavares Renato Natal Jorge (conference co-chairs) PS. For further details please see the conference website at: www.fe.up.pt/~vipimage |
From: William Mc C. <wil...@ms...> - 2010-10-14 07:13:22
|
http://kundalinicentrobenessere.it/und7.html |
From: William Mc C. <wil...@ms...> - 2010-10-12 22:49:38
|
http://cdlove.it/und7.html |
From: William Mc C. <wil...@ms...> - 2010-10-11 18:37:56
|
http://ristorantelaneviera.it/und7.html |
From: William Mc C. <wil...@ms...> - 2010-10-11 03:11:18
|
http://caribbeanrenthouse.com/44_7.html |
From: William Mc C. <wil...@ms...> - 2010-10-11 00:15:04
|
http://www.jtmjumpstarters.ie/und7.html |
From: William Mc C. <wil...@ms...> - 2010-10-10 20:22:08
|
http://carrouselcontiero.it/44_7.html |
From: William Mc C. <wil...@ms...> - 2010-10-10 15:38:10
|
http://retezero.tv/44_7.html |
From: William Mc C. <wil...@ms...> - 2010-10-10 08:39:28
|
http://zanonweb.com/44_7.html |
From: William Mc C. <wil...@ms...> - 2010-10-09 21:54:31
|
http://hermesite.com/44_7.html |
From: William Mc C. <wil...@ms...> - 2010-10-09 05:56:52
|
http://www.parrocchiasantantonioabate.it/44_7.html |
From: William Mc C. <wil...@ms...> - 2010-10-08 23:54:47
|
http://sveti-primoz.zxq.net/44_7.html |
From: William Mc C. <wil...@ms...> - 2010-10-08 16:06:43
|
http://dariopellicani.com/44_7.html |
From: William Mc C. <wil...@ms...> - 2010-10-07 14:18:54
|
http://www.veneraimmobili.com/und7.html |
From: William Mc C. <wil...@ms...> - 2010-10-06 14:54:34
|
http://bacaflotte.com/44_7.html |