Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
graphics.h
- Page 1
Re: What should I look for in a reliable web design and development agency?
Digital Media
Digital Marketing
1 Week Ago
by graceweb
Hi Sasha, I really agree with your point about clear and consistent communication, without it, even the most skilled agency can fall short. I’d also add that flexibility is important too. Sometimes project needs change mid-way, and it helps to work with a team that can adapt without losing sight of the overall goals.
H
Re: Show computer name on a label
Programming
Software Development
1 Month Ago
by toneewa
… your example I did the following: Created header stdafx.
h
: #pragma once #include <iostream> #include…{ void DisplayComputerName(); } Created mr_m.cpp: #include "stdafx.
h
" using namespace System; using namespace MR_MNamespace; namespace MR_MNamespace {…
Re: Show computer name on a label
Programming
Software Development
1 Month Ago
by toneewa
…#using <System.Drawing.dll> #include "mr_m.
h
" [STAThread] void Main() { Application::EnableVisualStyles(); Application::SetCompatibleTextRenderingDefault… <ItemGroup> <ClInclude Include="mr_m.
h
" /> </ItemGroup> You'll have…
Re: Ja sa bong Here!
Community Center
Say Hello!
2 Months Ago
by Reverend Jim
Finished Red Matter 2 on the Oculus Quest recently. It was very well done and enjoyable. The
graphics
were excellent.
Re: Hello everyone, I'm threedslider
Community Center
Say Hello!
2 Months Ago
by threedslider
I am searching also for other peoples in computer
graphics
and share their knowledge as well :)
Re: Show computer name on a label
Programming
Software Development
1 Month Ago
by Mr.M
… with no error. Here are the includes #include "stdafx.
h
" #include <iostream> #include <fstream> #include…> #include <string> #include <Windows.
h
> #include <WinSock.
h
> Here are the namespaces using namespace System…
Re: Looking for a online dating service template
Digital Media
UI / UX Design
2 Months Ago
by flame_2
i like this topic
Re: graphics.h problem
Programming
Software Development
13 Years Ago
by Narue
graphics
.
h
is certainly a problem, why do you use a
graphics
library from two decades ago?
Re: graphics.h problem in VS.NET 2003 IDE
Programming
Software Development
17 Years Ago
by Colin Mac
graphics
.
h
is a header for the old Borland compilers. It won't work in your environment. You'll need TurboC++, but it's for DOS. It should run under XP, but not recommended.
graphics.h Borland C
Programming
Software Development
18 Years Ago
by amishosh
…
graphics
.
h
> #include <stdlib.
h
> #include <stdio.
h
> #include <conio.
h
…> int main(void) { /* request auto detection */ int gdriver = DETECT, gmode, errorcode; int midx, midy, i; /* initialize
graphics
… /* an error occurred */ { printf("
Graphics
error: %s\n", grapherrormsg(errorcode)); …
graphics.h problem in VS.NET 2003 IDE
Programming
Software Development
17 Years Ago
by jjt
… file. When i build the solution i ask me "
graphics
.
h
" and it is not include in the source file… try search in windows in my pc and add the
graphics
.
h
in the same folder, but it will give me fatal… error: couldn't find the include file
graphics
.
h
. What is the solution for this? Thanks in advance, JJ
graphics.h problem in VS.NET 2003 IDE
Programming
Game Development
17 Years Ago
by jjt
… file. When i build the solution i ask me "
graphics
.
h
" and it is not include in the source file… try search in windows in my pc and add the
graphics
.
h
in the same folder, but it will give me fatal… error: couldn't find the include file
graphics
.
h
. What is the solution for this? Thanks in advance, JJ
graphics.h problem in dev c++ version 4.9.9.2
Programming
Software Development
10 Years Ago
by Mubeshier
#include "
graphics
.
h
" #include <stdlib.
h
> #include <stdio.
h
> #include <conio.
h
> #include<…if (errorcode != grOk) { /* an error occurred */ printf("
Graphics
error: %s\n", grapherrormsg(errorcode)); printf("Press any…
Re: graphics.h with Borland C++ compiler
Programming
Software Development
18 Years Ago
by alexwinger
… me if I'am wrong). So I copied
graphics
.
h
and BGI files from a Turbo C++ compiler.… But I can't still run any
graphics
based functions. There are errors of a 'far'…assignment date is due. If the Turbo C++
graphics
.
h
is incompatible then how can I plot a …dos or win3.1. So that library programs
graphics
only for dos or win3.1 depending on…
graphics.h supplement?
Programming
Software Development
20 Years Ago
by evilsilver
… and in a book i found an example for a
graphics
.
h
program which is supposed to work but i have heard… running in) is there another type of thing other than
graphics
.
h
that will do approximatly the same thing? (please don't… want to know if there is another technique other than
graphics
.
h
that will do the same basic thing)
graphics.h with Borland C++ compiler
Programming
Software Development
18 Years Ago
by Akks_3
… (pls correct me if I'am wrong). So I copied
graphics
.
h
and BGI files from a Turbo C++ compiler. But I… can't still run any
graphics
based functions. There are errors of a 'far' variable like… as my assignment date is due. If the Turbo C++
graphics
.
h
is incompatible then how can I plot a graph in…
Graphics.h is not running in turbo c++ 4.5?
Programming
Software Development
14 Years Ago
by shankarz
… turbo c++ 4.5, why? [CODE]#include<
graphics
.
h
> #include<conio.
h
> void main() { int gd=DETECT, gm; initgraph…(); closegraph(); } [/CODE] Please give me a link to download c-
graphics
tutorial?
graphics.h problem
Programming
Software Development
13 Years Ago
by gourav1
…;
graphics
.
h
> #include <stdlib.
h
> #include <stdio.
h
> #include <conio.
h
> #include<dos.
h
> #include<math.
h
…;gmode, ""); errorcode = graphresult(); if (errorcode != grOk) { printf("
Graphics
error: %s\n", grapherrormsg(errorcode)); printf("Press any…
Re: graphics.h problem in dev c++ version 4.9.9.2
Programming
Software Development
10 Years Ago
by mike_2000_17
Headers like "conio.
h
" and "
graphics
.
h
" are extremely old and obsolete headers from another era. … IDE like Dev-C++ 4.9.9.2. The direct
graphics
(GDI) that this library uses has been deprecated for quite… a decade or two. Also, using `<stdlib.
h
>` and `<stdio.
h
>` is not standard C++, the standard equivalent…
Re: graphics.h problem in VS.NET 2003 IDE
Programming
Game Development
17 Years Ago
by Narue
>What is the solution for this? Rewrite the program using a modern
graphics
library.
graphics
.
h
is an ancient
graphics
library for an ancient compiler designed to run on an ancient OS. I believe Salem said it best: You're trying to put a rubber band engine in a Ferrari.
Re: Graphics.h alternate
Programming
Software Development
14 Years Ago
by mushahidh
… c e.g draw line,circle,rectangle etc... turbo c
graphics
.
h
is not working on my pc for whatever reason...and… that include msoftcon in your project is an alternate of
graphics
.
h
...but how can i include this header file i dont… like this....or tell me how can i include msoftcon.
h
in visual studio 2005...thanks
Re: graphics.h problem in dev c++ version 4.9.9.2
Programming
Software Development
10 Years Ago
by NathanOliver
Do you have
graphics
.
h
on your system? From what I remember
graphics
.
h
is a very old deprecated header from the good old DOS days. I wouldn't think it would be in GCC 4.x.
Re: graphics.h problem
Programming
Software Development
13 Years Ago
by gourav1
[QUOTE=Narue;1739376]
graphics
.
h
is certainly a problem, why do you use a
graphics
library from two decades ago?[/QUOTE] because my teacher in university want us to work on this. you can talk to him if u want for this.
Re: graphics.h supplement?
Programming
Software Development
20 Years Ago
by evilsilver
… i am now going over some of the
graphics
, i found out about
graphics
.
h
and saw how to use it and found…
Re: graphics.h supplement?
Programming
Software Development
20 Years Ago
by Narue
…'re willing to take any old
graphics
library instead of something approximately the same as
graphics
.
h
then you can search google and…
Re: graphics.h Borland C
Programming
Software Development
18 Years Ago
by ~s.o.s~
Have you got the
graphics
.
h
and the BGI file in the same location as that of your program ...? And btw post all the error messages, so that it would be easier to spot the problem.
Re: Graphics.h is not running in turbo c++ 4.5?
Programming
Software Development
14 Years Ago
by Ancient Dragon
[URL="http://lmgtfy.com/?q=
graphics
.
h
+tutorial"]Here it is[/URL]
Graphics.h alternate
Programming
Software Development
14 Years Ago
by mushahidh
Hi everyone, can anyone tell me what is an alternate of
graphics
.
h
in visual studio/visualc++.
Graphics
.
h
is not working on my turbo c complier.plz tell me..
Graphics.h Scrolling text
Programming
Software Development
12 Years Ago
by motrcolt
Im not really sure if you guys do
graphics
.
h
questions here but here it goes. Im trying to find … simple message like this. #include <iostream> #include "
graphics
.
h
" using namespace std; int main() { {initwindow(1000,800); settextjustify…
Re: graphics.h header file
Programming
Software Development
14 Years Ago
by WaltP
Find a copy and put it in the [I]include[/I] directory. But if you expect it to work, the real answer is you can't. VC++6 has no
graphics
functionality that works with
graphics
.
h
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC