Programming and Coding
Programming and coding tips, help and solutions...
1,894 topics in this forum
-
does someone has a clue wtf is goin on. i try to use terminal font inside edit box. font=CreateFont(-8,0,0,0,FW_NORMAL,0,0,0,DEFAULT_CHARSET,0,0,0,0,"Terminal"); hEdit=GetDlgItem(hWnd,MINT_EDIT); SendMessage(hEdit,WM_SETFONT,(WPARAM)font,1); well it sets font to terminal but some of chars are incorrect, but when i run ollydbg in background or run it in olly then somehow magical all chars are like ansi in dos. and question is what do i have to set more to get same effect without olly, i could do it all as bitmap but im too lazy to recode asm back to c++
-
Months ago - (I can't remember how far back) this XP STyle manifest did the job of changing buttons etc to XP Style. One of the WINXP hotfixes over the last few months has changed something. <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> <assemblyIdentity name="Microsoft.Windows.Keygen" processorArchitecture="x86" version="1.0.0.0" type="win32"/> <description>SnD Keygen</description> <dependency> <dependentAssembly> <assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" …
-
Daemon Tools,Alcohol,etc. let you mount an image to a virtual drive, but they're for pre-made images. And the mounted image is not writable at all. Is it possible to make a virtual drive which is writable? To select it from any of the burning softwares, and the burned data will be written to an image file on the hard drive. I found some solutions - open source virtual drive makers, but after hours of discovering the code,I realized that I don't have enough experience to upgrade it. And I also don't know is it generally possible.Any solution? found sources: http://www.acc.umu.se/~bosse/filedisk.zip http://www.torry.net/pages.php?id=922 http://www.jeffothy.com/weblog/filedi…
-
Here is a Delphi example code on how to play multiple XM files in a DLL using uFMOD Delphi_XM_Player_Source_Code.zip Ted.
-
I'm back (after months ) well i'm trying to learn MASM and i've copied the code of lioczar's tutorial on a new file in Quick Editor, just to see if it works, but it doesn't. Why? The code: .386 .model flat, stdcallinclude \masm32\include\windows.inc include \masm32\include\user32.inc include \masm32\include\kernel32.incincludelib \masm32\lib\user32.lib includelib \masm32\lib\kernel32.lib.DATA ClassName db "SimpleWinClass",0 AppName db "Our First Window",0 .DATA? hInstance HINSTANCE ? CommandLine LPSTR ?.CODE start: invoke GetModuleHandle, NULL mov hInstance,eax invoke GetCommandLine mov CommandLine,eax invoke WinMain, hInstance,NULL,CommandLine, SW_SHOWDEF…
-
hey guy's, since angel-55 is off for some days, I was trying to make my own keygen layout, and I wanted a sinusscroller on the top, one that just make sinus movements steady on one place, not moving I mean this skin: that top text: "
-
please i want a source code with masm for calcul ( a mod B )... thnks
-
this is my first scanner .... mini scanner for Winupack 0.39 version beta coded by MASM Please encourage your Winupack_Scan.rar
-
what does Encoding.get_Default().GetBytes(whatever) do ? and BitConverter.GetBytes(num2 + 1) do ? and text1 = Encoding.get_Default().GetString(buffer1, 5, num4); do ? thanks
-
Hi, am a n00b to delphi but i've been trying to making a small program so good so far but the only problem i am having is that i want to be able to change the font colour and the tmemo background colour and not sure how to do this. many thanks
-
Where can find info on how to build scripts for Olly ? Thanks in advance!
-
Hi all, this is my first post overhere. I have this simple asm program that shows a messagebox (I have win xp and I'm using winasm): .386 .model flat, stdcall option casemap: none include windows.inc include kernel32.inc include user32.inc includelib kernel32.lib includelib user32.lib Encr_Routine proto .data MsgBoxTxt db "Test Message",0 MsgBoxCaption db "Crypting",0 .data? ;initialized variables hInstance HINSTANCE ? .code start: mov edi,a_end-1 mov ecx, a_end-a invoke GetModuleHandle, hInstance mov hInstance,eax a: invoke MessageBox,NULL, addr MsgBoxTxt, addr MsgBoxCaption, MB_OK a_end: invoke ExitProcess, NULL Encr_Routine proc decr_next_byte: …
-
Hello! I developed some keygens written in Visual Basic 6.0 BUT i believe that i have compatibilty problems when i am trying to execute the compiled exe files on computer system without the Visual Basic runtime files (.OCX etc).... Any solutions how can i avoid these type of problems?! Can i attach these #%$#% runtime files in my program code?! (I just want to have a compatible keygen written in Visual Basic on an xp system without any "x file is missing" problems...) I already know that unistalling VB and have a fresh start programming in asm is a good solution... Thank You in advance
-
Hi all RE Experts, I would appreciate if you can help a noob here. Ok , i have a server application(only binary code no source) that i have added additional functions-using olly . I would like to add a protection system to this server application. Thus ,i wrote a VB application which will ask for serial key and automatically close the program if the serial key is invalid . Also ,it will allow the user to carry out 30 mins trial. The serial key will be specific to each computer based on the hardware ID and MAC address . I would like to integrate this VB application to the server file so that it can protect the file . How do i do that so that it will not be recognised as a …
-
Does someone know how to used RGN file in coding in MASM? Need some help here mates...... AnTroBs
-
http://www.woodmann.com/forum/showthread.php?t=10003 xm.VMCompiler.By.Orp.zip
-
-
Hi, i'm new here on this board. I want to code an Offset converter in Delphi. There is only one problem!! How can I calculate the section from the RVA or from the VA? (sections .text, .data, .idata ....)
-
-
I need to change this: byte_[Fix]_Enable_9_Character_Slots_(Recommended):59FFA:117:235 byte_[Fix]_Enable_9_Character_Slots_(Recommended):F1C49:116:144 byte_[Fix]_Enable_9_Character_Slots_(Recommended):F1C4A:7:144and change it to 18 is that possible??
-
Is there a way to extract the codeing for a CP like ROCP ? Be it thru source code or what?
-
File Name: deleted File Submitter: floodeur-666 File Submitted: 7 May 2007 File Updated: 22 May 2007 File Category: Source Code Admin please deleted my release source code Click here to download this file
-
I wanted to know , is there a direct way of creating and then hiding registry keys created during execution of any app.In other words, the key should not be visible through 'regedit'. Or even if it is visible, then how to encrypt it , so that the key value could not be known? Help in any coding language would be appreciated Oricode.
-
http://tuts4you.com/download.php?view.1612 Ted.
-
I was trying for coding a starfield...and no need to tell i failed ..So what i did...just ripped the code from a C++ keygen and made it readable in asm...I hope it will be useful for the poor programmers like me Attached source along with a compiled exe...Have Fun!!!ORiON.rar