(Link to AcmlmWiki) Offline: thank ||bass
Register | Login
Views: 13,040,846
Main | Memberlist | Active users | Calendar | Chat | Online users
Ranks | FAQ | ACS | Stats | Color Chart | Search | Photo album
06-16-24 07:10 PM
Acmlm's Board - I3 Archive - - Posts by HyperHacker
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
User Post
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6328 days
Last view: 6328 days
Posted on 11-07-06 03:22 AM, in Four words at a time story Link
(an oddly-named rocket).
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6328 days
Last view: 6328 days
Posted on 11-07-06 03:23 AM, in The WHAT IF? Thread!!!! Link
People'd be more screwed than they actually were.

What if Yoshis really roamed the streets?
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6328 days
Last view: 6328 days
Posted on 11-07-06 03:24 AM, in Throw something at the next poster! Link
*stares at the game as it flies by and makes a joke about Tifa even though she's in a different game*

*throws pineapples*

I'm reminded of something me and my brother made up.
Guy 1: "Dude, Xbox 360! Now Tifa's boobs have even more polygons!"
Guy 2: "Dude that's not even on Xbox."
Guy 1: "Shut up, boobs!"


(edited by HyperHacker on 11-07-06 02:25 AM)
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6328 days
Last view: 6328 days
Posted on 11-07-06 03:50 AM, in Various text drawing methods are ignoring font colour Link
Originally posted by MS Documentation
The TextOut function writes a character string at the specified location, using the currently selected font, background color, and text color.

Or not. TextOut, ExtTextOut, DrawText, etc, they all seem to ignore the text and background colour for the most part and just choose arbitrary colours. Generally black on white, but if I set the background to dark blue (0, 0, 127) it becomes white on black. Tried setting a font, pen colour, brush colour etc, nothing works.

//Some global variables
HDC WindowBackDC = NULL, WindowDC = NULL;
HBITMAP WindowBMP = NULL, OldWindowBMP = NULL;
RECT TextRect;
HFONT hFont = NULL, hOldFont = NULL;

LRESULT CALLBACK ProcMessage(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
char S1[] = "I'm testing";
char S2[] = "Hey another test";
SIZE Size;

switch(msg)
{
case WM_CREATE:
WindowBackDC = CreateCompatibleDC(0);
WindowBMP = CreateCompatibleBitmap(WindowBackDC, WindowWidth, WindowHeight);
OldWindowBMP = SelectObject(WindowBackDC, WindowBMP);
if(!WindowBackDC || !WindowBMP || !OldWindowBMP)
DebugOut(DO_NONE, "Failed to create graphic buffer (%08X, %08X, %08X)\n", WindowBackDC, WindowBMP, OldWindowBMP);
WindowDC = GetDC(hWindow);

hFont = CreateFont(0, 0, 0, 0, 0, false, false, false, ANSI_CHARSET, OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS, DEFAULT_QUALITY, DEFAULT_PITCH | FF_DONTCARE, "terminal");
hOldFont = SelectObject(WindowBackDC, hFont);

//SetBkMode(WindowBackDC, TRANSPARENT);
break;


case WM_LBUTTONDOWN:
TextRect.top = 5;
TextRect.left = 20;
TextRect.bottom = 20;
TextRect.right = 100;

GetTextExtentPoint32(WindowBackDC, S1, sizeof(S1), &Size);

//if(SetTextColor(WindowBackDC, RGB(0, 255, 0)) == CLR_INVALID)
// DebugOut(DO_MINOR, "Failed to set text colour\n");

//SetBkColor(WindowBackDC, RGB(0, 0, 127));
SetDCPenColor(WindowBackDC, RGB(0, 255, 0));
SetDCBrushColor(WindowBackDC, RGB(255, 0, 0));


//DrawText(WindowBackDC, S1, sizeof(S1), &TextRect, DT_LEFT | DT_CALCRECT | DT_NOPREFIX | DT_SINGLELINE | DT_VCENTER | DT_WORD_ELLIPSIS);
//DrawText(WindowBackDC, S1, sizeof(S1), &TextRect, DT_LEFT | DT_NOPREFIX | DT_SINGLELINE | DT_VCENTER | DT_WORD_ELLIPSIS);
TextOut(WindowBackDC, TextRect.left, TextRect.top, S1, sizeof(S1));

//TextRect.top += (TextRect.bottom - TextRect.top);
TextRect.top += Size.cy;
TextRect.bottom += Size.cy;

//DrawText(WindowBackDC, S2, sizeof(S2), &TextRect, DT_LEFT | DT_NOCLIP | DT_NOPREFIX | DT_SINGLELINE | DT_VCENTER | DT_WORD_ELLIPSIS);
TextOut(WindowBackDC, TextRect.left, TextRect.top, S2, sizeof(S2));
BitBlt(WindowDC, 0, 0, WindowWidth, WindowHeight, WindowBackDC, 0, 0, SRCCOPY);

//Window_Redraw(hWindow);
break;


case WM_RBUTTONDOWN:
ProgramRunning = false;
break;


case WM_CLOSE:
ProgramRunning = false;
break;


default:
return DefWindowProc(hWnd, msg, wParam, lParam);
break;
}
}


You can see I've tried pretty much every method to no avail. I can set the text colour and read it back again, but the text drawing routines simply ignore it.
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6328 days
Last view: 6328 days
Posted on 11-07-06 03:52 AM, in HTML on the reply page Link
I think the best solution is to not store passwords in the cookie at all, but rather session IDs. Cookies store user IDs and decrypting the password is pretty easy.
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6328 days
Last view: 6328 days
Posted on 11-07-06 03:59 AM, in NO VOMITTING IN THIS THREAD Link
Well sure, it's difficult to aim when you take a leak without touching some things.
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6328 days
Last view: 6328 days
Posted on 11-08-06 05:42 AM, in Various text drawing methods are ignoring font colour Link
Ah, thanks. Using the window's DC in both CreateCompatibleDC and CreateCompatibleBitmap did it. I thought it might have been monochrome but I could swear I've done the same before and it worked.

Anyway since I'm here, is there a way to disable the mouse entirely? I'd use BlockInput() but that disables the keyboard too and it becomes enabled again when the program closes. I want to write a program that just prevents any program from responding to the mouse, even after it's closed, until it's run again to re-enable it. Reason being I like to use my computer as an alarm clock, so I'd like to just turn the monitor off through software when I set the alarm and have it come back on when the alarm goes off or when I press a key. I can do that but my mouse likes to randomly send "wheel scrolled" messages when it's just sitting there, turning the monitor back on in the middle of the night.
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6328 days
Last view: 6328 days
Posted on 11-08-06 05:45 AM, in Regarding the latest dumbass spree Link
I had a 5-button mouse, but it broke. The extra two buttons could be set to do various things like minimize, back/forward, etc. I never really used them.


The mouse of the future. Also, a waste of post 4000.


(edited by HyperHacker on 11-08-06 05:05 AM)
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6328 days
Last view: 6328 days
Posted on 11-08-06 05:59 AM, in Count Down from 1,000 Link
Well, 692 is kinda close to 666...
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6328 days
Last view: 6328 days
Posted on 11-08-06 06:00 AM, in Throw something at the next poster! Link
*corrects the spelling and throws the NUCLEAR bomb*
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6328 days
Last view: 6328 days
Posted on 11-08-06 06:01 AM, in Word Association Link
Prostitution
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6328 days
Last view: 6328 days
Posted on 11-08-06 06:02 AM, in What penises are NOT used for Link
Raking leaves.
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6328 days
Last view: 6328 days
Posted on 11-08-06 06:07 AM, in The WHAT IF? Thread!!!! Link
Idiots'd do it.

What if I hadn't wasted my 4000th post?

Originally posted by Koitenshin +∞
Well it worked for me

Tripood (not a typo lolz) does that.
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6328 days
Last view: 6328 days
Posted on 11-08-06 06:08 AM, in Post your clipboard! Link
http://www.accesskeyboards.co.uk/images/kiosk%20keyboard%20with%20trackball.jpg

Originally posted by Peardian
not-really-upcoming Dukes of Hazzard Meets Inuyasha movie


Find where I got this and get a cookie. :3

HyperHacker can't answer.

Can I at least ask why the heck you copied that?
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6328 days
Last view: 6328 days
Posted on 11-08-06 06:09 AM, in This is not - The Thread Link
Originally posted by Lakithunder
smily!

That's not spelled wrong.
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6328 days
Last view: 6328 days
Posted on 11-08-06 06:09 AM, in Four words at a time story Link
find a golden pair.

(Pair as in fruit. )
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6328 days
Last view: 6328 days
Posted on 11-08-06 06:10 AM, in The story about the single word. Link
enough
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6328 days
Last view: 6328 days
Posted on 11-08-06 06:11 AM, in The Ultimate Letter Experience V1.0 Link
Slip
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6328 days
Last view: 6328 days
Posted on 11-08-06 06:12 AM, in 100 ways to get Acmlm to post Link
#1.1: Ask him really really nicely.
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6328 days
Last view: 6328 days
Posted on 11-08-06 06:21 AM, in Lik-Sang shuts doors thanks to Sony lawsuits Link
Well I can't blame you for not throwing out your existing Sony products. I still use my Playstation (albeit mostly for NES emulation) sometimes. Buying new products and using the ones you already have are quite separate.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
Acmlm's Board - I3 Archive - - Posts by HyperHacker


ABII

Acmlmboard 1.92.999, 9/17/2006
©2000-2006 Acmlm, Emuz, Blades, Xkeeper

Page rendered in 0.035 seconds; used 466.59 kB (max 613.48 kB)