Watcom pascal Programming Software Development by jodhy How can i create a button in watcom pascal, that can be clicked which has a certain variable in it. the program then advances depending on what you click? Re: Hangman in watcom pascal Programming Software Development by jodhy watcom is the newer version on turbo i think LOLL Re: Watcom pascal Programming Software Development by Ionelul Hi, I don't know the difference between Pascal and Watcom Pascal, but this code works for pascal: [code] var i : integer; begin randomize; i := random(3) + 1;// +1 because random returns a number between 0 and n-1, and arrays in pascal go from 1 to n writeln(array[i]); end. [/code] Cheers, Ionut Re: Watcom pascal Programming Software Development by jodhy It didnt work in my watcom pascal. wpas Compiling on Open Watcom Programming Software Development by Caglow I realize that nobody seems to use Open Watcom's C/C++ compiler but it's the only precompiled … errors. I am using Code::Blocks 8.02 with Open Watcom 1.8: [code] Linking dynamic library: ..\bin\libci.so Error… currently have one of two explanations on this: either Open Watcom does not support creating .so libraries or I'm not… Re: Compiling on Open Watcom Programming Software Development by Caglow … therefore am not able to install Linux on it. Open Watcom has a set of libraries for Linux, Windows, OS/2… platform. Also, just for reference, I did not compile Open Watcom. Re: Compiling on Open Watcom Programming Software Development by Caglow … doing wrong, is there a board with an "Open Watcom" forum? I've been in to the IRC channel… Re: Opening a file using Open Watcom Programming Software Development by ArkM …; and <fstream> headers and namespace std with Open Watcom C++ STL (incomplete) implementation (OWSTL) now. The old good… WATCOM is a rather specific compiler. It seems the best place … Re: Hangman in watcom pascal Programming Software Development by jodhy This code doesnt work in watcom pascal, i need to know how it is done in watcom pascal Like OMG!!! Opening a file using Open Watcom Programming Software Development by Fouly Hi all, I'm a beginner at Open Watcom and i'm trying to R/W from and into … Hangman in watcom pascal Programming Software Development by jodhy Can someone please give me code for hangman in watcom pascal please thank u this is for personal purposes only thank you Hangman in watcom pascal Programming Software Development by jodhy Can someone give me code for hangman in watcom pascal please, thank you Re: Hangman in watcom pascal Programming Software Development by jodhy [QUOTE=jodhy;1228136]Can someone give me code for hangman in watcom pascal please, thank you[/QUOTE] i need to know how to make it so that when the person enters in a letter, it removes that letter from the actual word, that is what i am stuck on. Re: Hangman in watcom pascal Programming Software Development by FlamingClaw hey,what is the "watcom" pascal? I send a delphi code.It is working well in delphi(7 or 2006) as well as in turbo pascal 7.0(1992,I think :) ) Code in watcom pascal Programming Software Development by jodhy This is my code in watcom pascal, its sort of like trubo but ok so that … Watcom pascal Programming Software Development by jodhy How can i randomize words that i have put into an array so for example if an array has the words: hi bye what how would i make it say a random one? THANK YOU Re: Compiling on Open Watcom Programming Software Development by Salem What exactly are you trying to achieve here? > it's the only precompiled C compiler for Windows which[COLOR="Red"] compiles code to Linux [/COLOR] > (I tried building GCC in every way imaginable without success). I've successfully built a few hello world > programs without much trouble. However, with a bigger (10,000 line … Re: Compiling on Open Watcom Programming Software Development by Salem Are you allowed to install virtual machines on it? Re: Compiling on Open Watcom Programming Software Development by Caglow I am a limited user on this computer with no access to BIOS or any administrative controls. Re: Compiling on Open Watcom Programming Software Development by Salem Tell whoever is in charge that your setup is basically inadequate for someone writing large programs which need to be portable. Fine for students doing homework on a single machine. But being a "limited user" and trying serious cross-platform software development - forget it. The next noose around your neck will be a similar … Re: Compiling on Open Watcom Programming Software Development by iamthwee Is this some kind of a joke? Are you telling me you don't have your own computer to install something like vmware, or god forbid, even QEMU? And then download a linux iso, wack it onto your virtual machine with relative piece of mind it won't F*** up anything else? Then compile your the same code on the linux OS so you know for a FACT it's … Re: Compiling on Open Watcom Programming Software Development by Caglow No this is not a joke. I programming for free and open source software, not commercially. In other words, even a $500 laptop would be beyond my range. Before this project and another 5,000 line project, my code wasn't even OS portable. I have someone else who does run Linux who tests if something works. I would have that person compile, however, he… Re: Compiling on Open Watcom Programming Software Development by Salem As for fixing your code, all I can suggest is you compare a project which works, with one that doesn't in GREAT detail. Your first post looked like it was missing libc entirely. Were you in the right place when you did ..\ in your relative path? As for your circumstance, start asking round (politely) the local businesses to see if they have any … Re: Compiling on Open Watcom Programming Software Development by Caglow I probably am missing libc and now I'm trying to figure out which file that is! I will take your advise and try doing a comparison of the linker options. As for the local businesses, there really aren't that many around. It's probably 0.5 miles to the closest "store" around here and it's not really a store. Well, thanks for that tip … Re: Opening a file using Open Watcom Programming Software Development by cikara21 path going to..? Re: Opening a file using Open Watcom Programming Software Development by Fouly a path to file ex:c://windows....... Re: Opening a file using Open Watcom Programming Software Development by cikara21 Path for input and output..Isn't it same?.. Re: Hangman in watcom pascal Programming Software Development by TrustyTony This is Python forum. Show effort to write the code and in case of problems post to Pascal/Delphi group your code and description of your problem. Luck with coding! Re: Hangman in watcom pascal Programming Software Development by FlamingClaw Any effort? Try to send some of your code,then maybe I can help you.Thank you. Re: Hangman in watcom pascal Programming Software Development by FlamingClaw [CODE=delphi] program Project1; {$APPTYPE CONSOLE} uses SysUtils; const ch = 'a'; var user,temp:string; i:byte; begin {main} temp:=''; write('Write me a word:'); readln(user);{catch the word...} {analize it,char by char} for i:=1 to length(user)do begin if user[i]<>ch then temp:=temp+user[i]; end; writeln('I …