The New EBAY PHISHING SCAM Community Center by ! ! … actually phony[/QUOTE] [url="http://www.siliconvalley.com/mld/siliconvalley/13376864.htm"]http://www.siliconvalley.com/[/url][url="http://www….siliconvalley.com/mld/siliconvalley/13376864.htm"]mld/siliconvalley/13376864.htm… (Newbie question) Variable problem Programming Software Development by Salizer … to use Roby´s programming tutorial: [url]http://geocities.com/SiliconValley/Park/3230/x86asm/asml1001.html[/url] The problem is that… Re: ive got a Q Programming Software Development by Killer_Typo …][url="http://www.geocities.com/SiliconValley/2151/pcgpe.html"]http://www.geocities.com/SiliconValley/2151/pcgpe.html[/url][/color] [color… Re: ive got a Q Programming Software Development by Sphyenx …][url="http://www.geocities.com/SiliconValley/2151/pcgpe.html"]http://www.geocities.com/SiliconValley/2151/pcgpe.html[/url][/color] [color… Re: OpenGL GLUT help Programming Game Development by John A … and how to use them. [URL]http://www.geocities.com/SiliconValley/2151/matrices.html[/URL] [URL="http://www.geocities.com… Re: cursor movement? Programming Software Development by Alex_ This may be helpful [URL="http://www.geocities.com/siliconvalley/2072/asm.htm"]http://www.geocities.com/siliconvalley/2072/asm.htm[/URL] Re: intergrating ASM to C++ Programming Software Development by infamous …/~thiebaut/ArtOfAssembly/artofasm.html[/url] [url]http://www.geocities.com/SiliconValley/Lab/1563/assembly.html[/url] in short, on IA-32… Re: A request for information on Windows programming in C Programming Software Development by N3wbi3C0d3r [url]http://www.geocities.com/SiliconValley/Software/5562/[/url] for an example, 5 minutes using google, … Re: Great Freewares Hardware and Software Microsoft Windows by cancer10 …://xs.tech.nu/[/url] QuickSFV - [url]http://www.geocities.com/SiliconValley/Mouse/4668/[/url] png2ico - [url]http://winterdrache.de/freeware/png2ico… Re: GUI with C++ Programming Software Development by Asif_NSU I sort of stumbled upon this: [url]http://www.geocities.com/SiliconValley/Vista/7184/guitool.html[/url] It says Qt is the best. Could anyone tell me what is the relation between Qt and MinGW? Re: Anyone good at maths? Help me! Programming Computer Science by iamthwee [url]http://www.geocities.com/SiliconValley/2151/math3d.html[/url] Re: Convert a VB.Net app to a web app? Community Center by MattEvans … of ( MS only ) HTML code. [url]http://www.geocities.com/SiliconValley/Horizon/3950/ActiveX.htm[/url] [this is for the old… Re: need C program help Programming Software Development by Colin Mac I think you might be looking for this function [url]http://www.cs.colorado.edu/~main/cs1300/doc/bgi/getimage.html[/url] See this too. [url]http://www.geocities.com/SiliconValley/Park/3230/pas/pasl2007.html[/url] Re: Teach me variables Programming Software Development by Duoas … with concrete examples[/URL]. [URL="http://www.geocities.com/siliconvalley/park/3230/x86asm/asml1010.html"]Some actual assembly examples… Re: Doesn't work, any idea? Programming Software Development by MosaicFuneral You're telling it to compare two elements away from the first one, being the third one not the second one. [url]http://www.geocities.com/SiliconValley/Park/3230/x86asm/asml1012.html[/url] Re: Create a homepage Programming Software Development by ArkM [url]http://www.webs.com/[/url] [url]http://www.geocities.com/SiliconValley/6658/free.html[/url] and so on... Re: Assembly in ARM Devices Programming Software Development by Nathan Campos … to the project home page: [url]http://www.geocities.com/SiliconValley/Hub/6461/arm/[/url] Let's do some copies of… Re: forgot how to repeat a character Programming Software Development by BestJewSinceJC … looping a character A jmp statement? http://www.geocities.com/SiliconValley/Park/3230/x86asm/asml1006.html Re: Using entered data to replace text in code? Programming Software Development by AndreRet …'"Shell Notifications" page at 'http://www.geocities.com/SiliconValley/4942/ '------------------------------------------------------ Public Const MAX_PATH As Long = 260 'Defined as an… Re: (Newbie question) Variable problem Programming Software Development by jt_murphree I am assuming codeseg is the start of your code segment and I believe that is where your problem is. Your variable needs to be defined in the data segment. I am not sure what assembler you are using but I am only familiar with NASM and MASM. In MASM you would declare it in the .data section and NASM in the .bss section. Then you would use a mov … Re: (Newbie question) Variable problem Programming Software Development by Salizer [QUOTE=jt_murphree;754472]I am assuming codeseg is the start of your code segment and I believe that is where your problem is. Your variable needs to be defined in the data segment. I am not sure what assembler you are using but I am only familiar with NASM and MASM. In MASM you would declare it in the .data section and NASM in the .bss section. … Re: (Newbie question) Variable problem Programming Software Development by jt_murphree Not really. I haven't done a lot of tutorials on line. The basic principle of the code I posted will be the same but the syntax differs between assmblers. I ran into that when I started writing with NASM. I had been used to MASM. I would suggest looking at the documentation for TASM to see how the data and code segments are set up. To do the same … Re: (Newbie question) Variable problem Programming Software Development by Salizer Looked at some other tutorials that used TASM and there they defined .data... Think the only problem was the guides examples. Thanks:)