Posted February 4, 200916 yr Hi all! Just thought to share my keygen template coded in C. Enjoy! src+bin: http://cyclops.ueuo.com/sources/Template.rar Edited May 23, 201015 yr by Cyclops
February 5, 200916 yr Nice job. I like how you kept all your code clean and abstracted And the skin plain rocks. Great work! Its nice to see another C/C++ coder around these parts....
February 15, 201015 yr "Invalid or Deleted File"any chance of seeing this reUped? Edited February 15, 201015 yr by dofoge
March 18, 201015 yr This is great as I've been wanting to learn more Win32 API programming and haven't found many good examples. At quick glance I'm a bit confused about your variable hwnd. I'm guessing it is there to hold the string the user enters? However, i'm not following where it first reads it. Maybe you can comment...
March 19, 201015 yr This is great as I've been wanting to learn more Win32 API programming and haven't found many good examples. At quick glance I'm a bit confused about your variable hwnd. I'm guessing it is there to hold the string the user enters? However, i'm not following where it first reads it. Maybe you can comment...HWND is just a handle to a window, or another similar type of object. It's a Windows defined type, defined as:typedef HANDLE HWND;
March 26, 201015 yr Cyclops,First thanks for the great keygen template, I have a question regarding your source base and a modification...I made the following adjustment to make the background textboxes transparent case WM_CTLCOLORSTATIC: ret = (HBRUSH)GetStockObject(NULL_BRUSH); SetBkMode((HDC)wParam,TRANSPARENT); SetTextColor((HDC)wParam, RGB(255, 255, 255)); return (LRESULT)ret; break; case WM_CTLCOLOREDIT: ret = (HBRUSH)GetStockObject(NULL_BRUSH); SetBkMode((HDC)wParam,TRANSPARENT); SetTextColor((HDC)wParam, RGB(255, 255, 255)); return (LRESULT)ret; break; But as a result, whenever the text is updated on the forum, its like overlapping and mushing together, im not sure what causes it but was hoping you might know.Thanks !
April 15, 201015 yr ..text.. Don't think we'll get a reply from him anytime soon seeing as his last visit was almost a year ago
May 23, 201015 yr Author Sorry for the long delay, was kinda busy with *you know what* @ph0six: you have to repaint the textbox or whole form. You can use InvalidateRect(hWnd, NULL, FALSE) to repaint the whole form. Try this link for better discussion: http://forum.tuts4you.com/index.php?showtopic=8344&st=0
November 30, 201014 yr Hey.How do you create the .rgn file?Edit: Nevermind, found out. Edited November 30, 201014 yr by MulleDK19
August 23, 201114 yr hey ! bumping this cuz it helped me out with embedding .xm in my exe ! thanks cyclops ! very helpful !
August 23, 201114 yr I personally use bin2c to embedd the stuff as a array. Much easier to do, if your library supports loading music from memory.
August 23, 201114 yr Why not use LoadResource, that's as simple as it gets. That is if you don't care about people ripping the xm, but unless the xm is actually yours I don't see the point. Edited August 23, 201114 yr by Killboy
August 23, 201114 yr I personally use bin2c to embedd the stuff as a array. Much easier to do, if your library supports loading music from memory.Another way is to including the sound by nasm and incbin directive as object with a global.Then playing from memory, if lib is supporting that.works with c++,masm,nasm...
May 9, 201411 yr Super bro . . . Nice jobplease provide more templates like ways. . .Very VeryThankyou for this one . , .
Create an account or sign in to comment