Programming and Coding
Programming and coding tips, help and solutions...
1,894 topics in this forum
-
Hi all! I have just finished going though Lenas' tut and I wanted to know how to make more of the XM music file files that Lena151 included in the keygentemplate source code, which I must say is a terrific tut. It's a pity the tut had to end there,but I guess Lena151 can't spend the rest of life teaching us newbies. Anyway, can someone explain how to do it?
-
http://rapidshare.de/files/25159045/bass_src.zip.htmlsuported files MO3 / IT / XM / S3M / MTM / MOD / UMX/ MP3/WAV/MIDI AND MORE enjoy -Fudo
-
i wanna start learning these languages: ASM, C , C++ , Java. What's the best way to start ? can you share with us your experience ? How did you start, yor schedule, the problems you faced, how did you bypassed 'em, how much did it took for you to learn ? Especially, links to free referencing ebooks, or if you've some free ones spidering in your HD, share 'em with us please !! Thank you allllllllllll in advance ! greets,
-
Hi. I wanna recognize and code keygen. My routine of serial have 2 parts: 1_Part: Generate digits (second part of serial) 1_Part: Genarate one letter from part1 serial in hex This is part2 : MOV EAX,ESI ** ===> Move A657C to EAX (A657C is my hex serial) MOV ECX,1A ** ===> Move 1A to ECX (1A is constant) CDQ ** ===> CDQ mean EAX to "EDX:EAX" so "5:A657C" (EDX is 5 and it is constant) IDIV ECX ** ===> Divide ??? by 1A ADD EDX,41 ** ===> Add "A"+ 41 = 4B (char K) PUSH EDX ** ===> Push edx So my problem is with understand CDQ. I readed about it and this mean "Divide EDX by EAX…
-
I have a program which checks if u have passed your trail if not u get a screen saying u passed your trail time and that u can buy. If not u can run the game now i know it start a new process which runs as blabla.dll in the folder it also looks like a dll, but if u rename it to .exe it gets the game icon but it crashes on launch. Now my question what API calls can be used to start a new process, becuase i cant find where the program start the other program. list of API calls: Calls.txt: http://www.ewa-clan.co.uk/calls.txt
-
i read the tut by gopitt and when i assemble(go all) .386 .model flat, stdcall option casemap:none include windows.inc include kernel32.inc include user32.inc includelib kernel32.lib includelib user32.lib.data MsgBoxCaption db "Simple MessageBox Program",0 MsgBoxText db "Hello World!",0 .code start: invoke MessageBox, NULL, addr MsgBoxText, addr MsgBoxCaption, MB_OK invoke ExitProcess,0 end starti get an error \Masm32\Bin\rc /v /I"\Masm32\Include" "D:\Program Files\WinAsm\Samples\Dialog\Dialog.rc" Make error: Cannot create process. \Masm32\Bin\ML /c /coff /Cp /nologo /I"\Masm32\Include" "D:\Program Files\WinAsm\Samples\Dialog\Dialog.asm" Make error: Cannot cr…
-
hello I know c programming and currently learning asm (masm). I know that you can combine c and asm together, but its still confusing to me. Are there any resources that can help me with this? also... would it matter which asm assembler i learn for combining asm with c, because of the different syntax in each?
-
I'm coding an application in TASM and it has self-modifying code. But when I compile it, by default code section doesn't have write attribute, so my app gets exception. Of course I can change section attributes for example in PETools after compiling, but I recompile it rather often, so it annoys me. How can I change section attributes? Maybe some parameter should be given to linker? Maybe not in tasm, but in other asm (MASM/FASM)?
-
How would i go about and find the code for repressing for example: In most games when u shoot a pistol it will fire only once till u press it again, or Quake games where if u press and hold space in mid air u will automaticly jump again once u hit the ground. but then wont jump again unless u release and repress space. Dont know how i should look for it :X Thanks for the help.
-
Thanks!! Chris I found winasm, that makes life sooooooo much easier!!! chris
-
http://rapidshare.de/files/21576646/bassmodasm.zip.html Enjoy -FudoWarez
-
Any ideas how i can close exe's down when opened with shellexecute. Or is there another way i can open and close these exe's but keep the default exe directory path. Thanks again
-
In the 16'th tutorial lena shows a modifyed olly with an extra menu with his other tools. Now adding the menu wasnt that hard. But how do tell the program start those programs when clicking that menu button. A litle explantion or a point in the right direction or a tutorial would be very appriciated. Scale. (sorry if this wasnt in the correct section)
-
How do you test if a mouse is hovering over a certain button?
-
I need to have a multiline readonly editcontrol in a Delphi 2005 app - the equivalent of the ES_MULTILINE MASM resource flag. I can't find anything in the Delphi 2005 documentation describing how to do this. Web search didn't find anything helpful either - maybe I'm not looking in the right place ? Any help appreciated please. Z
-
Hello I am still new to programming in asm, and I would like to ask how is it possible i could run *.mod files in assembly for music? i came across a tutorial to run *.xm files in asm which was great, but i wanted to know how it would be possible to add mod files.
-
I want to change the background colour of a ComboBox control. For static and edit controls this can easily be done by handling the WM_CTLCOLORSTATIC or WM_CTLCOLOREDIT messages. But I don't know what to use for a ComboBox. WM_CTLCOLORLISTBOX doesn't work and a search hasn't turned up much of any use. Any help appreciated please. Z
-
Hi all, I'm facing these days a problem with my delphi coding. To be brief, the problem is that Delphi doesn't provide in its internal functions a function that can search for a hex value in a file. I coded my own function but it seems that it takes too much time, I also looked around in the net, but nothing found. If you can help me either by suggesting a delphi function found on the net, or a delphi component or your own algo (even in different language) or maybe an API function that could do this job . The most important thing is that it must take less time (very quick). Thnks for your help. SC.
-
Most here will probably be checking ARTeam tutorials and releases on a regular basis. For those who have missed it, Goppit has released a very nice tutorial on w32ASM coding for reversers. Great release: />http://cracking.accessroot.com (follow links to tutoial section) Thanx to Goppit and ARTeam for their effort writing this one!