Re: gotoxy() substitute Programming Software Development by Ancient Dragon gotoxy() was NEVER EVER a standard c or c++ function, but … Re: gotoxy function in turbo c++ Programming Software Development by Ancient Dragon gotoxy is indeed a text mode function. You didn't say you wanted graphics mode so I assumed you wanted text mode. My error. I don't know enough about graphics.h to tell you what to do, I haven't used that compiler in over 20 years. gotoxy Programming Software Development by guy40az In borland there is a function gotoxy to position output to the screen is there a command in visual c++ 6.0 that does this. Re: gotoxy, for loops , Sleep() Programming Software Development by superchica08 … letters, etc)? Dave[/QUOTE] i already have the gotoxy() function i just dont understand how to make the …shapes with for loop, heres the gotoxy function [CODE] void gotoxy(int x, int y) { static HANDLE hStdout …making something with a for loop [CODE] void FirstInitial() { gotoxy(16,8); for (int i=0; i <=16;… gotoxy() within bounds of a matrix Programming Software Development by manobaby … inside the matrix that,s like as below: [CODE]void gotoxy( short x, short y ) // function to handle position of cursor… gotoxy() substitute Programming Software Development by GreenDay2001 In earlier versions of c++, there was a function gotoxy() which could take me anywhere in the screen. Its available with borland compilers now too but not with visual c++ express. Is there any substitute for that. Re: gotoxy() substitute Programming Software Development by dwks Here's another gotoxy() link: [url]http://faq.cprogramming.com/cgi-bin/smartfaq.cgi?answer=1044844545&id=1043284392[/url] Here's another useful Windows Console programming link, perhaps you'll find what you're looking for there: [url]http://www.adrianxw.dk/SoftwareSite/index.html[/url] gotoxy function in turbo c++ Programming Software Development by joydsouza90 … the max values that can be entered in turbo c++ gotoxy function..... the help says that (35,25) is the bottom… Re: gotoxy function in turbo c++ Programming Software Development by WaltP … the max values that can be entered in turbo c++ gotoxy function..... the help says that (35,25) is the bottom… Re: gotoxy function in turbo c++ Programming Software Development by joydsouza90 … from lower portions of the screen So i replaced the gotoxy function with this [code=cplusplus] do { occupation[++i]=getch(); if… gotoxy, for loops , Sleep() Programming Software Development by superchica08 … my initials A and G and plot them on using gotoxy() function to make some thing that look like the picture… Re: gotoxy function in turbo c++ Programming Software Development by sorena1987 hi guy I use borland C++ and I have Question : Q : can anyone tell me what include gotoxy needed?? Re: gotoxy function in turbo c++ Programming Software Development by Ancient Dragon I don't think he's asking to change the font, just to input text at specific coordinates. All sahil needs are these two lines. gotoxy(x,y) fgets(text,sizeof(text),stdin); Re: gotoxy function in turbo c++ Programming Software Development by Schol-R-LEA Ah, I had been of the impression that `gotoxy()` was a console mode function; I didn't think it would work for text in a graphics mode application (which the particular coordinates mentioned implied). If I was wrong in that, I apologize. Re: Help in gotoxy using mv studio 2005? Programming Software Development by Ancient Dragon gotoxy() is a function only supported by Turbo C and Turbo … thing, such as write your own gotoxy() function. [URL="http://lmgtfy.com/?q=gotoxy+function+for+windows"]You can find… Re: Need help understanding gotoxy() Programming Software Development by nxt200 gotoxy is a C function that can move the text cursor to a different location on the screen... And with in the function is the SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), coord); This is part of the gotoxy function it looks it is setting the position of a cursor... This is the best i can tell you i am not familiar with C only C++ Re: gotoxy Programming Software Development by John A >is there a command in visual c++ 6.0 that does this. [URL="http://msdn2.microsoft.com/en-us/library/ms686025.aspx"]Yes[/URL]. Re: gotoxy function Programming Software Development by Hiroshe >[COLOR="Red"]You can't do a gotoxy function in pure C, you'll have to read into … your system (I don't know what that is)[/COLOR] gotoxy() doesn't have much to do with os dependancy. It… Re: gotoxy function Programming Software Development by winrawr … it can always be different. You can't do a gotoxy function in pure C, you'll have to read into… Help on finals project, item transaction program w/ gotoxy Programming Software Development by langzhen …(5);cprintf("¼"); } { gotoxy(13,11); printf("Item"); gotoxy(23,11); printf("Price"); gotoxy(33,11); printf("…;Qty."); gotoxy(42,11); printf("Subtotal"); gotoxy(53,11); printf("… Re: Help on finals project, item transaction program w/ gotoxy Programming Software Development by langzhen …(5);cprintf("¼"); } { gotoxy(13,11); printf("Item"); gotoxy(23,11); printf("Price"); gotoxy(33,11); printf("…;Qty."); gotoxy(42,11); printf("Subtotal"); gotoxy(53,11); printf("… pragram problem here with gotoxy, show plane! Programming Software Development by dinamit875 … letters, rows, pax); } } while (!mouseAtSeat); gotoxy(mouseX, mouseY); cout <<(char)219; letters…pax--; showPlane(); populatePlane(letters, rows, pax); gotoxy(0,21); cout << endl <… Re: pragram problem here with gotoxy, show plane! Programming Software Development by WaltP … fine)... but having some small problem here I am using gotoxy and it gives me an error, it says that… gotoxy undeclared. Could anyone help me with this please, correct the … C++[/B] documentation, what does it say about the [ICODE]gotoxy()[/ICODE] function? What ate the parameters? What header is needed… Re: pragram problem here with gotoxy, show plane! Programming Software Development by Sir Cris Evans Hi , does it still give the error when you uncomment line 50 and the function definition in lines 535 - 544? Because from the above code as it is, I dont see the declaration of the function gotoxy as i expected, neither is the function definition activated. Cheers. Re: pragram problem here with gotoxy, show plane! Programming Software Development by dinamit875 … it is, I dont see the declaration of the function gotoxy as i expected, neither is the function definition activated. Cheers… Re: pragram problem here with gotoxy, show plane! Programming Software Development by dinamit875 [QUOTE=WaltP;1139811]In the [B]Dev C++[/B] documentation, what does it say about the [ICODE]gotoxy()[/ICODE] function? What ate the parameters? What header is needed?[/QUOTE] hi there, sorry but i don't really know about all these documentations, but one thing I know and everyone is being talking about is that gotoxy is Borland function(( Re: pragram problem here with gotoxy, show plane! Programming Software Development by WaltP … C++[/B] documentation, what does it say about the [ICODE]gotoxy()[/ICODE] function? What ate the parameters? What header is needed… I know and everyone is being talking about is that gotoxy is Borland function(([/QUOTE] Yeah, I know, too. I wish… Re: pragram problem here with gotoxy, show plane! Programming Software Development by jonsca … I finally saw that OP had written his own function gotoxy as it was commented out -- no excuse I know(I… Re: pragram problem here with gotoxy, show plane! Programming Software Development by dinamit875 … I finally saw that OP had written his own function gotoxy as it was commented out -- no excuse I know(I… Need help with 2d arrays and gotoxy() Programming Software Development by 78jimm … char keypress; char a[24][79]; void gotoxy(short x, short y) { HANDLE hConsoleOutput;… left_key)) direction = keypress; if (direction == 'a') { gotoxy(mx,my); cout<<"@"; mx=mx-1…