- Strength to Increase Rep
- +4
- Strength to Decrease Rep
- -1
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
Re: The best way to start making a programming language is by learning a current language as much as you can. Then begin by making an interpreter. Making a compiler requires a lot of knowledge of machine code etc., but with an interpreter you can pretty much make your own machine … | |
If I have an EXE file what command can I use to link a RES file into the EXE!? I have tried many different linker programs and can't figure out how to do this simple task with any of them. | |
Re: [QUOTE]I would say SDL is the way to go if you want to use C/C++/C#. It's super easy to pick up and use and can be used as a base for 3D OpenGL stuff later on, if you so choose. There are lots of viable alternatives out there, I just … | |
I am trying to alphabetize by generating a weight of a word, saving those numbers, and then comparing which numbers are greater. Don't ask me why I need to do this way. So I am trying to come up with a function that calculates the value of a certain word. … | |
Re: I think you may need to forward the ports on your router. | |
Re: Simple. There is a built in split function. [url]http://www.vb6.us/tutorials/vb-string-array-functions-split-join-filter[/url] | |
I wrote the following code in Python. It does not sort the list. Can anyone help me out? [CODE] theList = [] def simpleSort(): pos = 1 comps = 0 while pos < len(theList): comps += 1 if ord(theList[pos]) >= ord(theList[pos - 1]): pos += 1 else: temp = theList[pos] … | |
Re: I had to write a triply nested recursive algorithm to draw squares on the screen. Your probably thinking how hard could it possibly be to just draw squares on the screen? Well look at the code below. Anyway, I don't understand why CS teachers emphasize recursion so much. In my … | |
I am having a problem with flash in firefox 7. I am not sure this is the right forum, but someone can move it if they see fit. Anyway, say I write some embed code like this: [CODE] <html> <body> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/ cabs/flash/swflash.cab#version=6,0,40,0" width="800" height="600" id="mymoviename"> <param name="movie" value="Adv1.swf" … | |
Re: [QUOTE]Can anybody give the list of environment variable functions list.[/QUOTE] There's only one environment variable function on windows and that is getenv(). FYI: When entering the environment variable, it is entered like getenv("TMP") not getenv("%TMP%"). Did you mean you wanted the list of variables? [URL="http://libertyboy.free.fr/computing/reference/envariables/index.php"]http://libertyboy.free.fr/computing/reference/envariables/index.php[/URL] | |
Re: You will probably need to open the file in a hex editor and look at the first 2 to 3 bytes to figure out the file type or maybe you can just open it in a text editor. After that, you can google those characters to find out the file … | |
Re: [QUOTE]Cause I have lost my working project as a result of formating my PC[/QUOTE] [QUOTE]Sorry, but that will be "hacking" someone else's code.[/QUOTE] It's his code! You can try this tool: [URL="http://www.soft32.com/download_124248.html"]http://www.soft32.com/download_124248.html[/URL] Or just google vb6 exe decompiler. You won't be able to get the code back exactly as you … | |
Re: [QUOTE]write a simple vb exe written in notepad[/QUOTE] Impossible. You need to install VB6 to make exes. Install it. Then do what AndreRet said. | |
I was looking at the following site because I am interested in making a basic-like interpreter in c. Can someone explain how the switch case works in this particular program? You probably need to read the code to know what I mean. I know how to use switch case, just … | |
I am a VB programmer, so I know a lot about programming. I am just new to C and want to ask a simple question. How can I read a file and use strtok with space as the delimiter and have access to all tokens in memory? The example provided … | |
The line fullpath = temp; doesn't actually reset the var. I am not sure what I have to do. I have tried fullpath = *temp;. Could someone tell me why this is not working? [CODE] #include "stdio.h" #include "stdlib.h" //Used for getenv(); #include "string.h" //Used for strcat(); int main(int argc, … | |
I am trying to make a file extraction program in C and I can't get it to work. It compiles ok, but it has a run-time error. I hope you can figure out what I am trying to do here. I don't know if there is a standard way to … | |
I am just starting to learn x86 assembly language because eventually I want to make my own OS. I wrote a boot sector in fasm and it doesn't load the second sector into memory. Because I just started, there is probably something obvious wrong with the code. Could anyone tell … |