Re: how to create a simple elevator simulation? Programming Software Development by trueframe To make a basic elevator simulation, first, identify the floors and the elevator's capacity. Then, use loops and conditionals in programming to mimic its movement. Include buttons for users to call the elevator and select floors. Test thoroughly for accuracy. Re: Improve HAVING BY performance Programming Databases by toneewa …; #include <mysql_driver.h> #include <mysql_connection.h> #include <cppconn/driver.h> #include <cppconn/connection.h> #include <…;cppconn/statement.h> #include <cppconn/exception.h Re: Read file properties of video files in C++ Programming Software Development by toneewa …. extern "C" { #include <libavformat/avformat.h> #include <libavformat/avio.h> } int main() { AVFormatContext* fmt_ctx = NULL; int… GCC Fails to Recognize Parameters Programming by snah19 …"libavutil/avassert.h" #include "os_support.h" #include "avformat.h" #include "internal.h" #if … char *urlcontext_to_name(void *ptr) { URLContext *h = (URLContext *)ptr; if (h->prot) return h->prot->name; else return "… Re: GCC Fails to Recognize Parameters Programming by toneewa … changing: #include "os_support.h" #include "avformat.h" #include "internal.h" #if CONFIG_NETWORK #include …#include "libavformat/os_support.h" #include "libavformat/avformat.h" #include "libavformat/internal.h" #if CONFIG_NETWORK #include… Re: GCC Fails to Recognize Parameters Programming by Reverend Jim I can't offer any suggestions other than to just download the compiled app for your system instead of building it yourself. Re: GCC Fails to Recognize Parameters Programming by rproffitt Here's another problem. When we change the OS not only must we setup the compiler, environment and such but sometimes an OS API could be deprecated or removed. You made mention of a possible OS change so that's a possibility. You obtained this code from somewhere. Go back there and see if they updated it for your new OS. Re: Trying to animate sprite using DirectX9 Programming Software Development by Pavel_11 Hello, it is unneccessarily to use right movex or leftmovex , because it is to much variables. You should to use one variable movex to make it with minus or plus sign in your update function; by pressing left or right keys; because the one thing which is changable is a picture; I mean in global sense; variables like leftx, right x should be one… Re: Download conio.h Programming Software Development by nbaztec conio.h is a header file which comes with Borland compilers. If you're on VC++ you may ask some one to give it to you ( I can) but I'm not sure whether it will work or not. BTW it's not standard. Re: Include functions Programming Software Development by mike_2000_17 …read the little [URL="http://en.wikipedia.org/wiki/Conio.h"]wiki[/URL] on it. The only function that requires… conio.h in that piece of code is the final statement getch…is used and there are no namespaces. Some headers, like conio.h, are C header files, which can generally be included in… Re: need help in conversion :) Programming Software Development by ahamed101 conio.h is not supported in Unix C. Are you using Unix C? You must be using conio.h probably for getch() I guess, if so you may use getchar(). Re: Problem with code Programming Software Development by necrolin conio.h isn't a part of the C/C++ standard. It … Re: doubt in c?? Programming Software Development by MosaicFuneral conio.h isn't used, and should never be. Macros used like that are dangerous. It's: [icode]int main() { return(0); }[/icode] Re: Dev ++ Help its Not Working Programming Software Development by jbennet conio is nonstandard, it doesnt exist for anything other ancient compilers like turbo c [url]http://en.wikipedia.org/wiki/Conio.h[/url] Re: How to add random numbers Programming Software Development by iamthwee conio.h is non standard, remove that and replace the getch() with cin.get() And it should be <ctime> not <time> Re: what's wrong with this code ? Programming Software Development by zandiago conio.h works fine for me in Borland DevC++ Re: Shortest Job First Algorithm Programming Software Development by jephthah conio.h, check. alloc.h, check. goto, che ... wait, what? GOTO? is this a joke? where do you people come from? Re: Change text color using visual c++ Programming Software Development by FireNet conio.h It has a lot funtions for console input/output.Take a look at it. TextColor(RED); TextBackground(BLUE); The color values range from 0-15 with 0 being black and 15 being white [i]warning,i am not too sure of the funtion names,been a while since i used this, though i used it almost everywhere, man time flies[/i] Re: Print a character like a triangle Programming Software Development by Lerner conio.h isn't bundled with many compilers/IDEs. You can do … Re: Large Integer Calculator using linked-list Programming Software Development by csurfer conio.h is an [B]EXTINCT[/B] header file.And we don'… Re: User input data into array Programming Software Development by asifalizaman conio.h is header file that hold the screen some time when … Re: Having trouble on this program that i'm making... Programming Software Development by Hiroshe `conio.h` is not standard. Furthermore it's old and unsupported, and … Re: conio.h Programming Software Development by newbiecoder Thank you very much. Buy my question is how I can use it? Should I put conio.h file into a specific folder? Or just put into the same folder with main? And will I include it as [CODE]"conio.h"[/CODE] or [CODE]<conio.h>[/CODE]? Thanks.. conio.h Programming Software Development by newbiecoder … two things from the Internet 1. Linux c++ implementation of conio.h [URL="http://sourceforge.net/projects/linux-conioh/"]http… Re: conio.h Programming Software Development by jonsca Well, you're not going to use conio.h (as just copying that header over into Linux won't … conio.h Library Replacement Programming Software Development by deceptikon I've needed to write sample code using conio.h over the years, but my compilers don't support all … class to help me. Not all of the conio.h functions are present, such as cgets() and cscanf(), because I … class that can be inherited from for specific implementations. The conio.h library is *very* platform specific, and I've included a… conio.h help Programming Software Development by anantk …something that has been asked repeatedly, and that conio is outdated, it is completely non-standard, …cprintf(),etc that require conio.h.. I've tried the conio libraries from here : [url]http://conio.sourceforge.net/[/url] … parameters), but I get this error regarding the new conio.h [code] error: conflicting declaration 'BLACK' error: 'BLACK… Re: conio.h help Programming Software Development by anantk There were double declarations for the colours enum in both graphics.h from winbgim and conio.h that was causing the conflict.. Deleted the one in conio.h. Re: conio.h alternative Programming Software Development by Narue …is there any way to make my own "conio.h" and just include it in my compilation[/B]…maintain portability. Is it possible to reproduce the functionality of conio.h? Absolutely, but all of those methods are (surprise surprise…right back where you started. My usual recommendation with conio.h is to seriously consider whether it's needed in … Re: conio.h alternative Programming Software Development by riahc3 …is there any way to make my own "conio.h" and just include it in my compilation[/B]…maintain portability. Is it possible to reproduce the functionality of conio.h? Absolutely, but all of those methods are (surprise surprise…right back where you started. My usual recommendation with conio.h is to seriously consider whether it's needed in …