dev-cpp-users Mailing List for Dev-C++ (Page 17)
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: Heedle B. <hee...@gm...> - 2009-05-10 16:14:23
|
Sorry, I forgot to mention that it needs to close the program upon the pressing of the escape key. |
From: Heedle B. <hee...@gm...> - 2009-05-10 16:13:04
|
Hello. I need a program to display the windows shutdown screen, turn off the monitor and sound, and (if possible) the LED on the power button on the computer? I would just need the commands for it, but if anybody is up for a challenge writing the program for me would be greatly appreciated. I understand if people don't really have the time to make the program, so I would just need the commands. Thank you, Heedle |
From: Per W. <pw...@ia...> - 2009-05-08 21:14:17
|
A string is just an array of characters, so you just assign characters to the array. enum { MAX_INPUT_LEN = 200, }; char my_string[MAX_INPUT_LEN]; int len = 0; int ch = 0; my_string[0] = '\0'; for (;;) { if (have_new_character()) { ch = get_next_character(); if (len < MAX_INPUT_LEN) { my_string[len++] = ch; my_string[len] = '\0'; } } } How to read from the keyboard will depend on the environment. A graphical Windows application will get events for each character. A command-line application may read from stdin. A MS-Dos application may use BIOS calls for accessing keyboard input. /pwm On Fri, 8 May 2009, frederico schardong wrote: > Some function needed a const char *name.. and how I can get char by > char by the keyboard and concatenate them to pass to this function? > > > Thanks > > ------------------------------------------------------------------------------ > The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your > production scanning environment may not be a perfect world - but thanks to > Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700 > Series Scanner you'll get full speed at 300 dpi even with all image > processing features enabled. http://p.sf.net/sfu/kodak-com > _______________________________________________ > 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: frederico s. <fre...@gm...> - 2009-05-08 16:54:52
|
Some function needed a const char *name.. and how I can get char by char by the keyboard and concatenate them to pass to this function? Thanks |
From: João M. R. S. T. <ta...@fe...> - 2009-05-07 16:25:29
|
---------------------------------------------------------------------------- ----------------------- (Apologies for cross-posting) Special Track Computational Bioimaging 5th International Symposium on Visual Computing (ISVC09) Las Vegas, Nevada, USA, November 30 - December 2, 2009 http://www.isvc.net We would appreciate if you could distribute this information by your colleagues and co-workers. ---------------------------------------------------------------------------- ----------------------- Dear Colleague, Within the ISVC09 5th International Symposium on Visual Computing (http://www.isvc.net), to be held in Las Vegas, Nevada, USA, in November 30 - December 2, 2009, we are organizing the Special Track ST6 - Computational Bioimaging (http://www.isvc.net/ST6.pdf). The main goal of the Special Track ST6 - Computational Bioimaging is to bring together researchers working in the related fields of Image Acquisition, Segmentation, Registration, Tracking, Matching, Shape Reconstruction, Motion and Deformation Analysis, Medical Imaging, Software Development, Grid, Parallel and High Performing Computing, to discuss and share ideas that will lead us to set the major lines of development for the near future. Therefore, the Special Track ST6 - Computational Bioimaging will gather researchers representing the various fields of Computational Vision, Computational Mechanics, Mathematics, Statistics, and Biomedical Imaging. This track intends to contribute more realistic computational models extracted from images of living organisms and attempts to establish a bridge between practitioners and researchers from these diverse fields. Due to your research activities in those fields, we would like to invite you to submit your work and participate in the Special Track ST6 - Computational Bioimaging. TOPICS The topics of interest include but are not limited to the following areas: - Image Processing and Analysis for Computational Bioimaging; - Segmentation, Reconstruction, Tracking and Motion Analyse in Biomedical Images; - Biomedical Signal and Image Acquisition and Processing; - Computer Aided Diagnosis, Surgery, Therapy, Treatment and Telemedicine Systems; - Software Development for Computational Bioimaging; - Grid and High Performance Computing for Computational Bioimaging. SUBMISSION/PROCEEDINGS Instructions for authors are available in the website of ISVC'09 (http://www.isvc.net/author.html). Authors should submit electronically their contributions through the website of ISVC'09 (http://www.isvc.net), selecting the Special Track ST6 - Computational Bioimaging. Accepted papers will appear in the symposium proceedings which will be published by Springer-Verlag in the Lecture Notes in Computer Science (LNCS) series. IMPORTANT DATES - Submission deadline: July 10, 2009; - Notification of acceptance: August 31, 2009; - Camera-ready version: September 14, 2009. SCIENTIFIC COMMITTEE - Alberto De Santis, Università degli Studi di Roma "La Sapienza", Italy - Alexandre Cunha, California Institute of Technology, USA - Alexandre Xavier Falcão, University of Campinas, Brazil - Ana Mafalda Reis, University of Porto, Portugal - Arrate Muñoz Barrutia, University of Navarra, Spain - Begoña Calvo, University of Zaragoza, Spain - Constantine Kotropoulos, Aristotle University of Thessaloniki, Greece - Daniela Iacoviello, Università degli Studi di Roma "La Sapienza", Italy - Denilson Laudares Rodrigues, PUC Minas, Brazil - Dinggang Shen, University of Pennsylvania, USA - Djemel Ziou, University of Sherbrooke, Canada - Eduardo Borges Pires, Instituto Superior Técnico, Portugal - Fiorella Sgallari, University of Bologna, Italy - Francisco Perales, Balearic Islands University, Spain - Gustavo Rohde, Carnegie Mellon University, USA - Hanchuan Peng, Howard Hughes Medical Institute, USA - Hélder C. Rodrigues, Instituto Superior Técnico, Portugal - Hemerson Pistori, Dom Bosco Catholic University, Brazil - Huiyu Zhou, Brunel University, UK - Igor Yanovsky, Jet Propulsion Laboratory, USA - Jason Corso, SUNY at Buffalo, USA - João Manuel R. S. Tavares, University of Porto, Portugal - Javier Melenchón Maldonado, Open University of Catalonia, Spain - Jorge M. G. Barbosa, University of Porto, Portugal - Jorge S. Marques, Instituto Superior Técnico, Portugal - Jose M. García Aznar, University of Zaragoza, Spain - Jussi Tohka, Tampere University of Technology, Finland - Luminita Vese, University of California at Los Angeles, USA - Luís Paulo Reis, University of Porto, Portugal - Mahmoud El-Sakka, The University of Western Ontario London, Canada - Manuel González Hidalgo, Balearic Islands University, Spain - Maria Elizete Kunkel, Universität Ulm, Germany - Metin N. Gurcan, Ohio State University, USA - Michael Liebling, University of California at Santa Barbara, USA - Patrick Dubois, Institut de Technologie Médicale, France - Renato M. N. Jorge, University of Porto, Portugal - Reneta P. Barneva, State University of New York, USA - Roberto Bellotti, University of Bari, Italy - Sabina Tangaro, National Institute of Nuclear Physics, Italy - Shawn Newsam, University of California at Merced, USA - Susana Branco Silva, University of Lisbon, Portugal - Todd Pataky, University of Liverpool, UK - Valentin Brimkov, State University of New York, USA - Yongjie Zhan, Carnegie Mellon University, USA With kind regards, João Manuel R. S. Tavares, University of Porto, Portugal, ta...@fe... Renato Natal Jorge, University of Porto, Portugal, rn...@fe... Alexandre Cunha, California Institute of Technology, USA, cu...@ca... (Organizers of the Special Track ST6 - Computational Bioimaging and Visualization) PS. For more information about the Special Track ST6 - Computational Bioimaging, please download its flyer at: www.fe.up.pt/~tavares/downloads/calls/bima09.pdf |
From: John H. <jhi...@ya...> - 2009-05-01 19:34:56
|
Yes, I put "using namespce std;" I made sure of it and tried again, I still get compiling error: undefined symbol "iterator". Jess ________________________________ From: Heedle Blambeedle <hee...@gm...> To: John Higgins <jhi...@ya...> Cc: Dev...@li... Sent: Tuesday, April 28, 2009 8:25:04 PM Subject: Re: [Dev-C++] Iterator for stack and queue Probably forgot using namespace std; On Sun, Apr 26, 2009 at 2:43 PM, John Higgins <jhi...@ya...> wrote: I read in a book: "...You could use the STL stack class, which has an iterator...". When I coded the following, I got a compiling error: undefined symbol "iterator" #include <stack> stack<int> numbers; stack<int>::iterator cursor; I was trying to use iterator to display the content of a stack. Can anyone help me? Jess ------------------------------------------------------------------------------ Crystal Reports - New Free Runtime and 30 Day Trial Check out the new simplified licensign option that enables unlimited royalty-free distribution of the report engine for externally facing server and web deployment. http://p.sf.net/sfu/businessobjects _______________________________________________ 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: Heedle B. <hee...@gm...> - 2009-04-29 03:25:20
|
Probably forgot using namespace std; On Sun, Apr 26, 2009 at 2:43 PM, John Higgins <jhi...@ya...> wrote: > I read in a book: "...You could use the STL stack class, which has an > iterator...". > > > > When I coded the following, I got a compiling error: undefined symbol > "iterator" > > #include <stack> > > stack<int> numbers; > > stack<int>::iterator cursor; > > I was trying to use iterator to display the content of a stack. > > > > Can anyone help me? > > > > Jess > > > > > > > > ------------------------------------------------------------------------------ > Crystal Reports - New Free Runtime and 30 Day Trial > Check out the new simplified licensign option that enables unlimited > royalty-free distribution of the report engine for externally facing > server and web deployment. > http://p.sf.net/sfu/businessobjects > _______________________________________________ > 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: <toa...@ya...> - 2009-04-28 22:10:11
|
In Order to use WinXP visual styles for your controls, you should do the following: Create a XML manifest file called <programfilemane>.manifest (for example: installer.exe.manifest) and place it in the same folder of your program executable file: <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> <assemblyIdentity version="1.0.0.0" processorArchitecture="X86" name="CompanyName.ProductName.YourApp" type="win32" /> <description>Your application description here.</description> <dependency> <dependentAssembly> <assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="X86" publicKeyToken="6595b64144ccf1df" language="*" /> </dependentAssembly> </dependency> </assembly> Then link comctl32.dll library into your program (in MinGW, for example, add -lcomctl32 to the linker command line), and include commctrl.h header file. In the program source, call InitControlsEx function as follows: INITCOMMONCONTROLSEX iccs; iccs.dwSize=sizeof(INITCOMMONCONTROLSEX); iccs.dwICC=ICC_STANDARD_CLASSES; /*See MSDN Library links below for further options */ InitControlsEx(&iccs); More details at MSDN Library: http://msdn.microsoft.com/en-us/library/ms997646.aspx http://msdn.microsoft.com/en-us/library/bb775697(VS.85).aspx http://msdn.microsoft.com/en-us/library/bb775507(VS.85).aspx ________________________________ De: Frederico Marques <the...@ho...> Para: dev...@li... Enviadas: Terça-feira, 28 de Abril de 2009 7:26:15 Assunto: [Dev-C++] [C/C++][Windows XP][GUI] CreateWindowEx()/CreateWindow() does not create buttons with "XP look-and-feel". Hello people. I am currently developing a application that should simulate NeoSoft, InstallShield, and similar installers. I am aware that such packages are available from the Web, however I desire to gain knowledge about such applications. At the moment, I have a problem when I try to create buttons. The buttons created are Win98 like, gray, with no 3d-effect. I tried chaging the button stryles, in the dwStyle argument, and also messing around with dwExStyle, with no success. Below follows a snippet with relevant code only ( for readability purposes. ) /** C code. { */ /** Please assume hwnd as a created window. The following code is triggered it WM_CREATE. */ HANDLE hButtonOk = NULL ; if ( ( hButtonOk = CreateWindowEx( WS_EX_LEFT | WS_EX_TOPMOST, "BUTTON", "Seguinte", WS_CHILD | WS_VISIBLE | BS_TEXT | BS_PUSHBUTTON, // Styles. 250, 330, 100, 25, hwnd, (HMENU)0, hThis, NULL )) == NULL ) { MessageBoxA( hwnd, "Erro Irrecuperável", "Ocorreu um erro irrecuperável a criar um elemento de Gui : hButtonOK", MB_ICONERROR|MB_OK); SendMessageA( hwnd, WM_QUIT, 0, 0 ); return -1; } /** }*/ Please let me know if something is unclear, and of course, if you know the sollution :) Thanks every1 ;D Frederico Marques ________________________________ Quer deixar seu Messenger turbinado de emoticons? Clique aqui e baixe agora. É grátis! Veja quais são os assuntos do momento no Yahoo! +Buscados http://br.maisbuscados.yahoo.com |
From: Frederico M. <the...@ho...> - 2009-04-28 10:26:20
|
Hello people. I am currently developing a application that should simulate NeoSoft, InstallShield, and similar installers. I am aware that such packages are available from the Web, however I desire to gain knowledge about such applications. At the moment, I have a problem when I try to create buttons. The buttons created are Win98 like, gray, with no 3d-effect. I tried chaging the button stryles, in the dwStyle argument, and also messing around with dwExStyle, with no success. Below follows a snippet with relevant code only ( for readability purposes. ) /** C code. { */ /** Please assume hwnd as a created window. The following code is triggered it WM_CREATE. */ HANDLE hButtonOk = NULL ; if ( ( hButtonOk = CreateWindowEx( WS_EX_LEFT | WS_EX_TOPMOST, "BUTTON", "Seguinte", WS_CHILD | WS_VISIBLE | BS_TEXT | BS_PUSHBUTTON, // Styles. 250, 330, 100, 25, hwnd, (HMENU)0, hThis, NULL )) == NULL ) { MessageBoxA( hwnd, "Erro Irrecuperável", "Ocorreu um erro irrecuperável a criar um elemento de Gui : hButtonOK", MB_ICONERROR|MB_OK); SendMessageA( hwnd, WM_QUIT, 0, 0 ); return -1; } /** }*/ Please let me know if something is unclear, and of course, if you know the sollution :) Thanks every1 ;D Frederico Marques _________________________________________________________________ Emoticons e Winks super diferentes para o Messenger. Baixe agora, é grátis! http://specials.br.msn.com/ilovemessenger/pacotes.aspx |
From: Alessandro B. <ale...@is...> - 2009-04-27 19:42:37
|
Maybe you forget using namespace std; Alessandro John Higgins ha scritto: > > I read in a book: "...You could use the STL stack class, which has an > iterator...". > > > > When I coded the following, I got a compiling error: undefined symbol > "iterator" > > #include <stack> > > stack<int> numbers; > > stack<int>::iterator cursor; > > I was trying to use iterator to display the content of a stack. > > > > Can anyone help me? > > > > Jess > > > > > > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------------ > Crystal Reports - New Free Runtime and 30 Day Trial > Check out the new simplified licensign option that enables unlimited > royalty-free distribution of the report engine for externally facing > server and web deployment. > http://p.sf.net/sfu/businessobjects > ------------------------------------------------------------------------ > > _______________________________________________ > 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 > -- ************************************************ Prof. Alessandro Bugatti Docente di Informatica Istituto Tecnico Industriale Statale B. Castelli E-mail: ale...@is... Sito web: www.imparando.net ************************************************ |
From: John H. <jhi...@ya...> - 2009-04-26 21:43:57
|
I read in a book: "...You could use the STL stack class, which has an iterator...". When I coded the following, I got a compiling error: undefined symbol "iterator" #include <stack> stack<int> numbers; stack<int>::iterator cursor; I was trying to use iterator to display the content of a stack. Can anyone help me? Jess |
From: João M. R. S. T. <ta...@fe...> - 2009-04-21 17:19:55
|
---------------------------------------------------------------------------- -------------------------------- (Apologies for cross-posting) EURASIP Journal on Advances in Signal Processing Special issue on Image Processing and Analysis in Biomechanics http://www.hindawi.com/journals/asp/si/ipab.html 2nd Call for papers We would appreciate if you could distribute this information by your colleagues and co-workers. ---------------------------------------------------------------------------- -------------------------------- Dear Colleague, A critical component for true realistic biomechanical analysis and simulations is to obtain accurately, from images, the geometric data and the behavior of the desired structures. For that, the use of automatic, efficient, and robust techniques of image processing and analysis is mandatory. The main objective of this Special Issue, of the EURASIP Journal on Advances in Signal Processing, on Image Processing and Analysis in Biomechanics is to bring together recent advances in the related fields (not limited to): - Signal processing in biomechanical applications; - Data interpolation, registration, acquisition and compression in biomechanics; - Segmentation of objects in images for biomechanical applications; - 3D reconstruction of objects from images for biomechanical applications; - 2D/3D tracking and object analysis in images for biomechanical applications; - 3D vision in biomechanics; - Biomechanical applications involving image processing and analysis algorithms; - Virtual reality in biomechanics; - Software development for image processing and analysis in biomechanics. Submission Instructions: Authors should follow the journal Author Guidelines (http://www.hindawi.com/journals/asp/guidelines.html) and submit their manuscript through the journal Manuscript Tracking System (http://mts.hindawi.com/), according to the following timetable: - Manuscript Due: May 1, 2009; - First Round of Reviews: August 1, 2009; - Publication Date: November 1, 2009. Lead Guest Editor João Manuel R. S. Tavares, University of Porto, Portugal (ta...@fe...) Guest Editor R. M. Natal Jorge, University of Porto, Portugal (rn...@fe...) |
From: Wagner, F. <F.W...@wi...> - 2009-04-17 07:15:24
|
Hello, go to the Code::Blocks Forum and then to the nightly builds posts. Download the latest nightly build and extract it into your Code::Blocks install directory. Mit freundlichen Grüßen / Kind regards Frank Wagner Entwicklung - Prozesstransmitter WIKA Alexander Wiegand GmbH & Co. KG Alexander Wiegand-Straße 30 63911 Klingenberg am Main Tel: 09372-132-8995 Fax: 09372-132-9976 E-mail: f.w...@wi... <mailto:m.r...@wi...> Von: German Nieto Moreno [mailto:gn...@mi...] Gesendet: Freitag, 17. April 2009 04:58 An: dev...@li... Cc: in...@co... Betreff: [Dev-C++] Code::Blocks Dears: I have the Code Blocks release 8.02. Could you be so kind and write me how to upgrade it? Many Thanks. gn...@mi... -- Bevor Sie diese E-Mail ausdrucken, überlegen Sie bitte, ob dies wirklich erforderlich ist. Please think before you print. -- WIKA Alexander Wiegand GmbH & Co. KG Alexander-Wiegand-Straße 30 - 63911 Klingenberg - Germany Kommanditgesellschaft: Sitz Klingenberg - Amtsgericht Aschaffenburg HRA 1819 Komplementärin: WIKA Alexander Wiegand Verwaltungs GmbH - Sitz Klingenberg - Amtsgericht Aschaffenburg HRB 306 Geschäftsführer: Alexander Wiegand Telefon: (09372) 132-0 Internet: www.wika.com -- The information contained in this E-Mail and any attached files are strictly confidential and may be subject to legal privilege. If you are not the intended recipient, his representative or the person responsible for delivering the message to the intended recipient, be advised that you have received this message in error and that any dissemination, copying or use of this message or attachment is strictly forbidden, as is the disclosure of the information therein. If you have received this E-Mail in error, please notify us immediately by E-Mail or telephone and delete this message and all its attachments subsequently. All reasonable precautions have been taken to ensure no viruses are present in this E-Mail. |
From: Per W. <pw...@ia...> - 2009-04-14 11:02:10
|
Make sure the compiler knows that you have multiple grade() functions before you make the call. At the point of error, the compiler only knows about the grade function that takes a reference to a struct, and it see you send three floating-point numbers. That makes the compiler unhappy. With function prototypes before the call, the compiler will know which grade() function to use. /pwm On Mon, 13 Apr 2009, Chedtha Intaravitak wrote: > Hi > > I tried to complie an attached source code for a simple student grading > program with Dev C++. > > > The error I got was with the following lines of code: > double grade(const Student_info& s) > { > return grade(s.midterm, s.final, s.homework); > } > > The error said: > > 47 C:\Users\chedtha\Documents\Accelerated C++\students_grade4.cpp "invalid > initialization of reference of type 'const Student_info&' from expression of > type 'const double'" > > > What does it mean? And what should I do? > > Thanks > Chedtha > |
From: edison i. <edi...@gm...> - 2009-04-12 18:08:49
|
Hi, Thank you for your educational articles. To calculate a bill you get the difference between the current reading and last reading for the previous month. The difference in the meter reading gives the total units to be charged for. The cost is 5 .shillings only. A fixed charge fee is added to the cost of water for routine service. The readings were10075 for march 1,2009 and at 10100 as at march 31 2009.Now, can someone out there help me write an algorithm for a computer program to compute the a monthly water bill for march? Edison On Sat, Apr 11, 2009 at 3:06 PM, < dev...@li...> wrote: > Send Dev-cpp-users mailing list submissions to > dev...@li... > > To subscribe or unsubscribe via the World Wide Web, visit > https://lists.sourceforge.net/lists/listinfo/dev-cpp-users > or, via email, send a message with subject or body 'help' to > dev...@li... > > You can reach the person managing the list at > dev...@li... > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Dev-cpp-users digest..." > > > Today's Topics: > > 1. Avik Ghose sent you a Friend Request on Yaari (Avik Ghose) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Fri, 10 Apr 2009 21:04:04 -0400 > From: Avik Ghose <avi...@ya...> > Subject: [Dev-C++] Avik Ghose sent you a Friend Request on Yaari > To: dev...@li... > Message-ID: <9e77260f31347adc2fbb2be0f0af7299@localhost.localdomain> > Content-Type: text/plain; charset="iso-8859-1" > > Avik Ghose wants you to join Yaari! > > Is Avik your friend? > > <a href=" > http://yaari.com/?controller=user&action=mailregister&friend=1&sign=YaariSPF549CNN246ZSV562SVN494">Yes, > Avik is my friend!</a> <a href=" > http://yaari.com/?controller=user&action=mailregister&friend=0&sign=YaariSPF549CNN246ZSV562SVN494">No, > Avik isn't my friend.</a> > > Please respond or Avik may think you said no :( > > Thanks, > The Yaari Team > ____ > If you prefer not to receive this email tell us <a href=" > http://yaari.com/?controller=absn&action=addoptout&email=dev...@li...">here</a>. > If you have any concerns > regarding the content of this message, please email ab...@ya.... > Yaari LLC, 358 Angier Ave, Atlanta, GA 30312 > > > YaariSPF549CNN246ZSV562SVN494 > > -------------- next part -------------- > An HTML attachment was scrubbed... > > ------------------------------ > > > ------------------------------------------------------------------------------ > This SF.net email is sponsored by: > High Quality Requirements in a Collaborative Environment. > Download a free trial of Rational Requirements Composer Now! > http://p.sf.net/sfu/www-ibm-com > > ------------------------------ > > _______________________________________________ > Dev-cpp-users mailing list > Dev...@li... > TO UNSUBSCRIBE: http://www.noicys.cjb.net/devcpp/ub.htm > https://lists.sourceforge.net/lists/listinfo/dev-cpp-users > > > End of Dev-cpp-users Digest, Vol 35, Issue 6 > ******************************************** > |
From: Avik G. <avi...@ya...> - 2009-04-11 01:19:11
|
Avik Ghose wants you to join Yaari! Is Avik your friend? <a href="http://yaari.com/?controller=user&action=mailregister&friend=1&sign=YaariSPF549CNN246ZSV562SVN494">Yes, Avik is my friend!</a> <a href="http://yaari.com/?controller=user&action=mailregister&friend=0&sign=YaariSPF549CNN246ZSV562SVN494">No, Avik isn't my friend.</a> Please respond or Avik may think you said no :( Thanks, The Yaari Team ____ If you prefer not to receive this email tell us <a href="http://yaari.com/?controller=absn&action=addoptout&email=dev...@li...">here</a>. If you have any concerns regarding the content of this message, please email ab...@ya.... Yaari LLC, 358 Angier Ave, Atlanta, GA 30312 YaariSPF549CNN246ZSV562SVN494 |
From: Per W. <pw...@ia...> - 2009-04-09 09:51:25
|
Using a separate MinGW installation means that you can use a many years newer MinGW - Dev-C++ ships with an ancient version. But for new users, I recommend a look at the Code::Blocks IDE. It supports a large number of compilers and has better integration with the tools than Dev-C++. /pwm On Thu, 9 Apr 2009, Gösta Ljungdahl wrote: > Yes, there is a version of the Dev-C++ IDE that does not contain the > compiler. Personally I prefer this version since the Dev-C++ version of > MinGW is tailored to the IDE and therefore requires more fiddling with > settings and build configurations if you want to add libraries that are > not included as Dev-C++ packages. By using the stock MinGW you'll get a > system that is easier to extend. The drawback is that it takes a bit > more work to hook the IDE to the compiler. No big deal, though. What is > best to do depends on what you want and how much time you want to spend > to get it. By the way, I've given up using Dev-C++ in favor of the > Crimson Editor which is free and does just as good a job as an IDE > because of the possibility to add user tools which also means that > you're not limited to C and C++. The only drawback is that with Crimson > Editor you have to write the makefile yourself. Dev-C++ does this for > you. If you're used to your system I believe that it would take you a > bit more work to get used to Dev-C++ rather than the Crimson Editor. But > it's all a matter of taste. Try them both out. > > Best wishes, > > Gösta Ljungdahl > -- > David J. Pfaltzgraff wrote: > > I have a WinXP system with MSYS, MinGW and FLTK installed. I just learned > > about the DevC++ package and would like to install it. > > > > Can I install it 'over' what I have or would it be best to uninstall and > > start over? > > > > The current versions on my system are: > > MinGW 4.1.0 > > MSYS 1.0.10 > > FLTK 2.0 > > > > Thanks, > > Dave > > > > > > > > > > > > ------------------------------------------------------------------------------ > > This SF.net email is sponsored by: > > High Quality Requirements in a Collaborative Environment. > > Download a free trial of Rational Requirements Composer Now! > > http://p.sf.net/sfu/www-ibm-com > > _______________________________________________ > > 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 > > > ------------------------------------------------------------------------------ > This SF.net email is sponsored by: > High Quality Requirements in a Collaborative Environment. > Download a free trial of Rational Requirements Composer Now! > http://p.sf.net/sfu/www-ibm-com > _______________________________________________ > 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: Gösta L. <go...@fo...> - 2009-04-09 09:20:02
|
Yes, there is a version of the Dev-C++ IDE that does not contain the compiler. Personally I prefer this version since the Dev-C++ version of MinGW is tailored to the IDE and therefore requires more fiddling with settings and build configurations if you want to add libraries that are not included as Dev-C++ packages. By using the stock MinGW you'll get a system that is easier to extend. The drawback is that it takes a bit more work to hook the IDE to the compiler. No big deal, though. What is best to do depends on what you want and how much time you want to spend to get it. By the way, I've given up using Dev-C++ in favor of the Crimson Editor which is free and does just as good a job as an IDE because of the possibility to add user tools which also means that you're not limited to C and C++. The only drawback is that with Crimson Editor you have to write the makefile yourself. Dev-C++ does this for you. If you're used to your system I believe that it would take you a bit more work to get used to Dev-C++ rather than the Crimson Editor. But it's all a matter of taste. Try them both out. Best wishes, Gösta Ljungdahl -- David J. Pfaltzgraff wrote: > I have a WinXP system with MSYS, MinGW and FLTK installed. I just learned > about the DevC++ package and would like to install it. > > Can I install it 'over' what I have or would it be best to uninstall and > start over? > > The current versions on my system are: > MinGW 4.1.0 > MSYS 1.0.10 > FLTK 2.0 > > Thanks, > Dave > > > > > > ------------------------------------------------------------------------------ > This SF.net email is sponsored by: > High Quality Requirements in a Collaborative Environment. > Download a free trial of Rational Requirements Composer Now! > http://p.sf.net/sfu/www-ibm-com > _______________________________________________ > 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: David J. P. <Da...@Pi...> - 2009-04-08 21:30:49
|
I have a WinXP system with MSYS, MinGW and FLTK installed. I just learned about the DevC++ package and would like to install it. Can I install it 'over' what I have or would it be best to uninstall and start over? The current versions on my system are: MinGW 4.1.0 MSYS 1.0.10 FLTK 2.0 Thanks, Dave |
From: Heedle B. <hee...@gm...> - 2009-04-04 15:44:40
|
Hello. I am trying to write a program to put a given file to a given directory on a website. Any help? -Heedle |
From: Franco B. <fbr...@gm...> - 2009-04-03 13:44:20
|
Fibonacci For each of two posted cases, try the C code below: /* code begin */ #include <stdio.h> #include <conio.h> int main() { const int FIBO_SIZE = 100; double a = 0, b = 1, c, fibonacci[FIBO_SIZE]; int d, i; printf("\n\n First case\n"); /* first case */ while (b < 10) { printf("%3.0f\n", b); c = a + b; a = b; b = c; } printf("\n\n Press a key to run Second case"); getch(); printf("\n Second case\n"); /* returning to initial values, to the second answer */ a = 0; b = 1; for (i = 0; i < FIBO_SIZE - 1; ++i) { c = a + b; a = b; b = c; d = i + 1; *(fibonacci + i) = a; *(fibonacci + d) = b; printf("%3d %25.0f\n", i, *(fibonacci + i)); } printf("%3d %25.0f\n\n\n Press a key to exit ", d, *(fibonacci + d)); getch(); return 0; } /* code end */ I hope it helps. Franco 2009/4/3 <dev...@li...> > Send Dev-cpp-users mailing list submissions to > dev...@li... > > To subscribe or unsubscribe via the World Wide Web, visit > https://lists.sourceforge.net/lists/listinfo/dev-cpp-users > or, via email, send a message with subject or body 'help' to > dev...@li... > > You can reach the person managing the list at > dev...@li... > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Dev-cpp-users digest..." > > Today's Topics: > > 1. Re: Dev-cpp-users Digest, Vol 35, Issue 1 (edison ibanda) > 2. Re: Dev-cpp-users Digest, Vol 35, Issue 1 (Per Westermark) > 3. Re: Dev-cpp-users Digest, Vol 35, Issue 1 (rodolfo d'Ettorre) > > > ---------- Mensagem encaminhada ---------- > From: edison ibanda <edi...@gm...> > To: dev...@li... > Date: Fri, 3 Apr 2009 08:41:16 +0300 > Subject: Re: [Dev-C++] Dev-cpp-users Digest, Vol 35, Issue 1 > Hi over there, > Can someone over there help me write a program to display a series of 100 > fibonachi numbers in an array.With each number against its index? > Will be greartful for your help. > Edison. > > On Thu, Apr 2, 2009 at 3:04 PM, < > dev...@li...> wrote: > >> Send Dev-cpp-users mailing list submissions to >> dev...@li... >> >> To subscribe or unsubscribe via the World Wide Web, visit >> https://lists.sourceforge.net/lists/listinfo/dev-cpp-users >> or, via email, send a message with subject or body 'help' to >> dev...@li... >> >> You can reach the person managing the list at >> dev...@li... >> >> When replying, please edit your Subject line so it is more specific >> than "Re: Contents of Dev-cpp-users digest..." >> >> >> Today's Topics: >> >> 1. Re: dev-c++ & postgresql 8.3.7 (Windows XP) (Reid Thompson) >> >> >> ---------------------------------------------------------------------- >> >> Message: 1 >> Date: Wed, 01 Apr 2009 22:47:29 -0400 >> From: Reid Thompson <rei...@at...> >> Subject: Re: [Dev-C++] dev-c++ & postgresql 8.3.7 (Windows XP) >> To: Osvaldo Demierre <osv...@ya...> >> Cc: dev...@li... >> Message-ID: <49D...@at...> >> Content-Type: text/plain; charset=ISO-8859-1; format=flowed >> >> Osvaldo Demierre wrote: >> > Hello. >> > I work on Windows XP and I am trying run a program "c" compiled under >> > DEP-C++ 4.9.9.2, to access POSTGRESQL 8.3.7. >> > The program is compiled/linked OK, but don't work. >> > Anyone can help me? (the source is below...) >> > Thank in advance... >> > >> what error are you getting. >> >> >> >> ------------------------------ >> >> >> ------------------------------------------------------------------------------ >> >> >> ------------------------------ >> >> _______________________________________________ >> Dev-cpp-users mailing list >> Dev...@li... >> TO UNSUBSCRIBE: http://www.noicys.cjb.net/devcpp/ub.htm >> https://lists.sourceforge.net/lists/listinfo/dev-cpp-users >> >> >> End of Dev-cpp-users Digest, Vol 35, Issue 1 >> ******************************************** >> > > > > ---------- Mensagem encaminhada ---------- > From: Per Westermark <pw...@ia...> > To: edison ibanda <edi...@gm...> > Date: Fri, 3 Apr 2009 10:12:53 +0200 (CEST) > Subject: Re: [Dev-C++] Dev-cpp-users Digest, Vol 35, Issue 1 > Would your school teacher also be grateful for our help? > > I would think that the code skills needed for this project would already > have been covered during the classes. It is just a question of combining > the building blocks into something meaningful. > > By the way - don't reply to the daily summary without first removing all > the noise. > > /pwm > > On Fri, 3 Apr 2009, edison ibanda wrote: > > > Hi over there, > > Can someone over there help me write a program to display a series of > 100 > > fibonachi numbers in an array.With each number against its index? > > Will be greartful for your help. > > Edison. > > > > > > > ---------- Mensagem encaminhada ---------- > From: rodolfo d'Ettorre <rod...@ho...> > To: <pw...@ia...>, <edi...@gm...> > Date: Fri, 3 Apr 2009 10:47:47 +0000 > Subject: Re: [Dev-C++] Dev-cpp-users Digest, Vol 35, Issue 1 > > Fibonacci?? I have got an example: > > ... a, b = 0, 1 > > >>> while b < 10: > > ... print b > > ... a, b = b, a+b > > > Ohhh, just one problem, it is in Python, but anybody can translate it in C. > > Enjoy > > Rodolfo d'Ettorre > > > > Date: Fri, 3 Apr 2009 10:12:53 +0200 > > From: pw...@ia... > > To: edi...@gm... > > CC: dev...@li... > > Subject: Re: [Dev-C++] Dev-cpp-users Digest, Vol 35, Issue 1 > > > > Would your school teacher also be grateful for our help? > > > > I would think that the code skills needed for this project would already > > have been covered during the classes. It is just a question of combining > > the building blocks into something meaningful. > > > > By the way - don't reply to the daily summary without first removing all > > the noise. > > > > /pwm > > > > On Fri, 3 Apr 2009, edison ibanda wrote: > > > >> Hi over there, > >> Can someone over there help me write a program to display a series of > 100 > >> fibonachi numbers in an array.With each number against its index? > >> Will be greartful for your help. > >> Edison. > > > > > > > > > ------------------------------------------------------------------------------ > > _______________________________________________ > > 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 > > _________________________________________________________________ > Looking to change your car this year? Find car news, reviews and more > > http://a.ninemsn.com.au/b.aspx?URL=https%3A%2F%2Ffanyv88.com%3A443%2Fhttp%2Fsecure%2Dau%2Eimrworldwide%2Ecom%2Fcgi%2Dbin%2Fa%2Fci%5F450304%2Fet%5F2%2Fcg%5F801459%2Fpi%5F1004813%2Fai%5F859641&_t=762955845&_r=tig_OCT07&_m=EXT > > > > ------------------------------------------------------------------------------ > > _______________________________________________ > Dev-cpp-users mailing list > Dev...@li... > TO UNSUBSCRIBE: http://www.noicys.cjb.net/devcpp/ub.htm > https://lists.sourceforge.net/lists/listinfo/dev-cpp-users > > |
From: rodolfo d'E. <rod...@ho...> - 2009-04-03 10:47:50
|
Fibonacci?? I have got an example: ... a, b = 0, 1 >>> while b < 10: ... print b ... a, b = b, a+b Ohhh, just one problem, it is in Python, but anybody can translate it in C. Enjoy Rodolfo d'Ettorre > Date: Fri, 3 Apr 2009 10:12:53 +0200 > From: pw...@ia... > To: edi...@gm... > CC: dev...@li... > Subject: Re: [Dev-C++] Dev-cpp-users Digest, Vol 35, Issue 1 > > Would your school teacher also be grateful for our help? > > I would think that the code skills needed for this project would already > have been covered during the classes. It is just a question of combining > the building blocks into something meaningful. > > By the way - don't reply to the daily summary without first removing all > the noise. > > /pwm > > On Fri, 3 Apr 2009, edison ibanda wrote: > >> Hi over there, >> Can someone over there help me write a program to display a series of 100 >> fibonachi numbers in an array.With each number against its index? >> Will be greartful for your help. >> Edison. > > > > ------------------------------------------------------------------------------ > _______________________________________________ > 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 _________________________________________________________________ Looking to change your car this year? Find car news, reviews and more http://a.ninemsn.com.au/b.aspx?URL=https%3A%2F%2Ffanyv88.com%3A443%2Fhttp%2Fsecure%2Dau%2Eimrworldwide%2Ecom%2Fcgi%2Dbin%2Fa%2Fci%5F450304%2Fet%5F2%2Fcg%5F801459%2Fpi%5F1004813%2Fai%5F859641&_t=762955845&_r=tig_OCT07&_m=EXT |
From: Per W. <pw...@ia...> - 2009-04-03 08:13:11
|
Would your school teacher also be grateful for our help? I would think that the code skills needed for this project would already have been covered during the classes. It is just a question of combining the building blocks into something meaningful. By the way - don't reply to the daily summary without first removing all the noise. /pwm On Fri, 3 Apr 2009, edison ibanda wrote: > Hi over there, > Can someone over there help me write a program to display a series of 100 > fibonachi numbers in an array.With each number against its index? > Will be greartful for your help. > Edison. |
From: edison i. <edi...@gm...> - 2009-04-03 05:41:23
|
Hi over there, Can someone over there help me write a program to display a series of 100 fibonachi numbers in an array.With each number against its index? Will be greartful for your help. Edison. On Thu, Apr 2, 2009 at 3:04 PM, <dev...@li... > wrote: > Send Dev-cpp-users mailing list submissions to > dev...@li... > > To subscribe or unsubscribe via the World Wide Web, visit > https://lists.sourceforge.net/lists/listinfo/dev-cpp-users > or, via email, send a message with subject or body 'help' to > dev...@li... > > You can reach the person managing the list at > dev...@li... > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Dev-cpp-users digest..." > > > Today's Topics: > > 1. Re: dev-c++ & postgresql 8.3.7 (Windows XP) (Reid Thompson) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Wed, 01 Apr 2009 22:47:29 -0400 > From: Reid Thompson <rei...@at...> > Subject: Re: [Dev-C++] dev-c++ & postgresql 8.3.7 (Windows XP) > To: Osvaldo Demierre <osv...@ya...> > Cc: dev...@li... > Message-ID: <49D...@at...> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > Osvaldo Demierre wrote: > > Hello. > > I work on Windows XP and I am trying run a program "c" compiled under > > DEP-C++ 4.9.9.2, to access POSTGRESQL 8.3.7. > > The program is compiled/linked OK, but don't work. > > Anyone can help me? (the source is below...) > > Thank in advance... > > > what error are you getting. > > > > ------------------------------ > > > ------------------------------------------------------------------------------ > > > ------------------------------ > > _______________________________________________ > Dev-cpp-users mailing list > Dev...@li... > TO UNSUBSCRIBE: http://www.noicys.cjb.net/devcpp/ub.htm > https://lists.sourceforge.net/lists/listinfo/dev-cpp-users > > > End of Dev-cpp-users Digest, Vol 35, Issue 1 > ******************************************** > |
From: Reid T. <rei...@at...> - 2009-04-02 06:59:53
|
Osvaldo Demierre wrote: > Hello. > I work on Windows XP and I am trying run a program "c" compiled under > DEP-C++ 4.9.9.2, to access POSTGRESQL 8.3.7. > The program is compiled/linked OK, but don't work. > Anyone can help me? (the source is below...) > Thank in advance... > what error are you getting. |