Thread: [Dev-C++] (no subject) (Page 5)
Open Source C & C++ IDE for Windows
Brought to you by:
claplace
From: <he...@na...> - 2002-04-05 14:10:55
|
Sorry for my bad english, I'm from Brazil. Recentely, I install "The Windows Millenium", and when I try to compile my programs, I had a problem on resources. The problems compile fine on W98, and Dev-C++4, but on WME... Help-me guys, please. Helano. |
From: Paolo M. <pao...@un...> - 2002-04-09 17:00:44
|
confirm 196580 =B0=B0=B0=B0=B0=B0=B0=B0=B0=B0=B0=B0=B0=B0=B0=B0=B0=B0=B0=B0=B0=B0=B0=B0=B0= =B0=B0=B0=B0=B0=B0=B0=B0=B0=B0=B0=B0=B0=B0=B0=B0=B0=B0=B0=B0=B0=B0=B0=B0=B0= =B0=B0=B0=B0=B0=B0=B0 Maresca Paolo - assistant professor - researcher Dis - Universita' "Federico II" Napoli Via Claudio, 21 80125 Napoli Phone +39 081 7683168 Fax +39 081 7683816 Email pao...@un... http://maresca.ing.unina.it/ |
From: micheal l. <mic...@ho...> - 2002-04-13 14:39:49
|
looking for "graphics.h"to work as a graphic interface with "Bloodshed = Dev-C++ 4". = Thanks=20 |
From: micheal l. <mic...@ho...> - 2002-04-13 14:49:23
|
looking for "graphics.h"to work as a graphic interface with "Bloodshed = Dev-C++ 4". = Thanks=20 |
From: Yeoh H. <ye...@ye...> - 2002-04-15 01:55:54
|
Hi, IMHO, it is better to use OpenGL for graphics programming with Dev-C++. = There's a template application that comes with Dev-C++. . Another option is to use Win32 graphics functions. Also, you can use = DirectX with Dev-C++. "graphics.h" if I remember correctly was used in Borland C and C++ = compiler systems for DOS. Regards, Yeoh ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~ Author of "How to Create an eBook Using Visual C++" Free Downloads at http://www.yeohhs.com ICT eBooks by Yeoh HS ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~ ----- Original Message -----=20 From: micheal leclerc=20 To: dev...@li...=20 Sent: Saturday, April 13, 2002 10:49 PM Subject: [Dev-C++] (no subject) looking for "graphics.h"to work as a graphic interface with = "Bloodshed Dev-C++ 4". = Thanks=20 |
From: Peter L. <pl...@ya...> - 2002-04-19 11:27:28
|
Hi. I'm using Dev-C++ 4 on win 98SE When I use the Insert button from the special tool bar for #include, the command shows like: #include "LIB.H" My questions are: 1) is there any way getting it in the right way from the beginning, i.e.: #include <LIB.H>? 2) or will #include "LIB.H" compile correctly in C? Any help will be appreciated Peter Lelkes CRNA & ICU-nurse Self-thought computer nerd Stockholm, Sweden, Europe |
From: Ioannis V. <no...@ho...> - 2002-04-19 17:32:24
|
-----Original Message----- From: dev...@li... [mailto:dev...@li...] On Behalf Of Peter Lelkes Sent: Friday, April 19, 2002 2:27 PM To: dev...@li... Subject: [Dev-C++] (no subject) Hi. I'm using Dev-C++ 4 on win 98SE When I use the Insert button from the special tool bar for #include, the command shows like: #include "LIB.H" My questions are: 1) is there any way getting it in the right way from the beginning, i.e.: #include <LIB.H>? You can type it yourself. That's what i do. 2) or will #include "LIB.H" compile correctly in C? It will, but if the header file is placed in the default compiler header file directory better use the <> notion. Ioannis * Ioannis Vranos * Programming pages: http://www.noicys.cjb.net <http://www.noicys.cjb.net/> * Alternative URL: http://run.to/noicys |
From: tony <su...@wa...> - 2002-04-28 09:06:39
|
From: Hotmail <ma...@ho...> - 2002-05-04 17:00:44
|
Hi All, I beginner, where find example and source for programming with MySql ? |
From: Yeoh H. <ye...@ye...> - 2002-05-04 22:20:59
|
Hi, there's a C++ API for MySQL at = http://www.mysql.com/downloads/api-mysql++.html. In the packages, there are test programs and example codes. Another site that you might want to look at is : = http://www.johnydog.cz/projects.php. It has a libmysqlclient MinGW port . <extract from the website> This package is provided for those who needs to (cross-)compile MySQL = programs for Windows, using the mingw32 compiler. It contains either sources, or binaries and header files. <end extract> Regards, Yeoh ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~ Author of "How to Create an eBook Using Visual C++" Free Downloads at http://www.yeohhs.com ICT eBooks by Yeoh HS ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~ ----- Original Message -----=20 From: Hotmail=20 To: dev...@li...=20 Sent: Sunday, May 05, 2002 12:59 AM Subject: [Dev-C++] (no subject) Hi All, =20 I beginner, where find example and source for programming with MySql ? =20 =20 |
From: Nancy A. <nai...@ho...> - 2002-05-16 02:47:04
|
Can somebody help me? I dont`t get display the messages whith any program. For example this? ======================================================== /* Chapter 5 - Program 6 - BACKWARD.C */ #include <stdio.h> /* Prototypes for standard Input/Output */ #include <string.h> /* Prototypes for string operations */ void forward_and_backwards(char line_of_char[], int index); int main() { char line_of_char[80]; int index = 0; strcpy(line_of_char, "This is a string.\n"); forward_and_backwards(line_of_char, index); return 0; } void forward_and_backwards(char line_of_char[], int index) { if (line_of_char[index]) { printf("%c", line_of_char[index]); index++; forward_and_backwards(line_of_char, index); } printf("%c", line_of_char[index]); } /* Result of execution This is a string. .gnirts a si sih */ =================================== _________________________________________________________________ Únase con MSN Hotmail al servicio de correo electrónico más grande del mundo. http://www.hotmail.com |
From: Hongli L. <h....@ch...> - 2002-05-16 12:35:40
|
Why doesn't anybody read the FAQ or use the Console App template... Add system("pause"); to the end of your main() function. Nancy Alvarez wrote: > > Can somebody help me? > > I dont`t get display the messages whith any program. For example this? > > ======================================================== > > /* Chapter 5 - Program 6 - BACKWARD.C */ > #include <stdio.h> /* Prototypes for standard Input/Output */ > #include <string.h> /* Prototypes for string operations */ > > void forward_and_backwards(char line_of_char[], int index); > > int main() > { > char line_of_char[80]; > int index = 0; > > strcpy(line_of_char, "This is a string.\n"); > > forward_and_backwards(line_of_char, index); > > return 0; > } > > > void forward_and_backwards(char line_of_char[], int index) > { > if (line_of_char[index]) > { > printf("%c", line_of_char[index]); > index++; > forward_and_backwards(line_of_char, index); > } > printf("%c", line_of_char[index]); > } > > > > > /* Result of execution > > This is a string. > > .gnirts a si sih > > */ |
From: Luigi S. <gi...@li...> - 2002-05-16 17:58:43
|
At 02:46 16/05/02 +0000, Nancy Alvarez wrote: >Can somebody help me? > >I dont`t get display the messages whith any program. For example this? I suppose you are using Dev-C++, and running programs from within the IDE. So you only see a flashing black screen. You will hear about putting some line of code in your program that pauses it, allowing you to read the output, I personally believe that no extra line of code should be added to the program, because the problem is related to the OS (Windows) not to the program itself, instead you should run this kind of programs from a DOS box (in fact they are console applications, and as such, the natural way of using them, is within a console). >... >/* Result of execution > >This is a string. > >.gnirts a si sih > >*/ BTW: your program has a small bug. In fact, The 'T' of "This" is not displayed in the reversed string (while the terminating '\0' is displayed twice). I'm tempted to fix it, but that would take the fun away from you :) -- Luigi gi...@li... |
From: Teodorescu C. <te...@xt...> - 2002-05-27 07:13:51
|
Why don't ypu wrote it in c++.Many of us will improve that code. I don't like PASCAL * * * * * * * * * * * * * * * * * * * * * | /|\ |
From: Hongli L. <h....@ch...> - 2002-05-27 13:16:03
|
On Mon, 2002-05-27 at 09:14, Teodorescu Cristian wrote: > Why don't ypu wrote it in c++.Many of us will improve that code. > I don't like PASCAL Because writing it in Delphi is so much easier and faster. And the code is already so old, we can't just ditch it and rewrite everything from scratch. |
From: Gerald G. <voo...@ho...> - 2002-05-30 15:19:22
|
Dev-C++ is really great and id like to thank the authors for exerting so much effort into this wonderful software. Before I used the older version for testing purposes because I have several compilers in my system, those compilers were for sale but I got them from free source. Those compilers had a lot of features but now that I have this new beta version I am going to remove some of these compilers that I have. I just hope that you guys read all the bug reports and feature request... I hope you guys wont mind me comparing but here are some features I like about some of the compilers/packages: MS Visual C++ has a good source level debugger and a "step into feature", Borland is a great compiler and offers a lot of help on both the compiler and editor. The potential of this product is really great and I hope I could donate some bucks for this in the future. So far Im doing almost all of my work on Dev-C++ and still inspecting it and typing down whatever bug i find. Gerald R. Generoso _________________________________________________________________ MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx |
From: meftahghrissi <mef...@so...> - 2002-05-31 15:48:36
|
Dear All, I'm new in the mailing list and in Dev-C++ environnement. I'm looking = for serial communication function under Dev-C++, like initcom, readcom, = writecom, etc.. Does somebody has a piece of working code or drive me on = the library to use for this? Thanks in advance Regards ----- Meftah GHRISSI R&D Department SOTUFEM Km 6,5 route de Sousse=20 2013 Ben Arous Tunisia Voice: 216 71 384 100 Fax: 216 71 384 105 Mobile: 216 98 244 746 mailto :mef...@so... |
From: prasad a. <pra...@ho...> - 2002-06-11 10:31:47
|
hello im trying to improve my program by colouring the text. Im not sure how exactly in devcpp to do this. I am also trying to find out whther it is possible to print via a USB printer port Thanks _________________________________________________________________ MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx |
From: Ioannis V. <no...@ho...> - 2002-06-11 10:44:30
|
> -----Original Message----- > From: dev...@li... > [mailto:dev...@li...] On Behalf > Of prasad athreya > Sent: Tuesday, June 11, 2002 1:31 PM > To: dev...@li... > Subject: [Dev-C++] (no subject) > > > hello > im trying to improve my program by colouring the text. Im not > sure how > exactly in devcpp to do this. You can use some 3rd party library, like Allegro. > I am also trying to find out whther it is possible to print via a USB > printer port Of course it is, you will use some system extension, e.g some Win32 API call which comes with Dev-C++. I do not know the particular call however. Ioannis * Ioannis Vranos * Programming pages: http://www.noicys.cjb.net * Alternative URL: http://run.to/noicys |
From: balamurali m. <bal...@re...> - 2002-06-11 13:54:59
|
confirm 399103 _________________________________________________________ Click below to visit monsterindia.com and review jobs in India or Abroad http://monsterindia.rediff.com/jobs |
From: Nancy A. <nai...@ho...> - 2002-06-14 00:18:34
|
Hi, Somebody can say what to do for calculate sin, cossin, tangent. How are entries.? For example: I have a function x(tan x) If x=5 , Do I write 5(tan 5) in my routine? Thanks _________________________________________________________________ Descargue GRATUITAMENTE MSN Explorer en http://explorer.yupimsn.com/intl.asp. |
From: Abhijit S. <mu...@gm...> - 2002-06-14 07:51:11
|
You'll have to convert the mathematical expression into a C-style expression. For example: #include <math.h> x = r * cos(theta); y = r * sin(theta); In your program you'll have to use x = 5; y = x * tan(x); Note that y should be a float or double if you want to use it practically. So, y = (float)x * tan(x); Check math.h for more functions. -------------------------- http://mudeth.tripod.com ----- Original Message ----- From: "Nancy Alvarez" <nai...@ho...> To: <dev...@li...> Sent: Friday, June 14, 2002 5:48 AM Subject: [Dev-C++] (no subject) > > > Hi, > > Somebody can say what to do for calculate sin, cossin, tangent. How are > entries.? For example: I have a function x(tan x) If x=5 , Do I write > 5(tan 5) in my routine? > > Thanks > |
From: Nancy A. <nai...@ho...> - 2002-06-15 04:38:36
|
Hi, again. Now, I want show the results in a file. What I do? Thanks for your help. NAISA _________________________________________________________________ Descargue GRATUITAMENTE MSN Explorer en http://explorer.yupimsn.com/intl.asp. |
From: Fernandes E. <Eve...@aa...> - 2002-06-26 08:03:56
|
Hi, Just wondering how I can get to the new beta release. When I try to get it, it seems to direct me to the "old" .3 release. Thanks, Sander ************************************************************************ DISCLAIMER The information contained in this e-mail is confidential and is intended for the recipient only. If you have received it in error, please notify us immediately by reply e-mail and then delete it from your system. Please do not copy it or use it for any other purposes, or disclose the content of the e-mail to any other person or store or copy the information in any medium. The views contained in this e-mail are those of the author and not necessarily those of GEHE Group companies. ************************************************************************ |
From: I K. N. <ke...@an...> - 2002-07-01 09:02:31
|