No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
Re: I tried to cout the text in the clipboard with this [CODE=c++] HANDLE clip; if (OpenClipboard(NULL)) clip = GetClipboardData(CF_UNICODETEXT); string text; while (clip != 0) { text += *clip; clip++; } cout << text; [/CODE] But it isn't working because a handle can't be dereferenced with *handle. So, how DO … | |
How can I show a message in the Firefox message bar (you know, the yellow one that also says when it's blocked a popup) using JS ? I've seen some sites do this but I can't remember which. Thanks. | |
I'm looking for a Virtual Machine that can boot up an already installed Linux (Fedora). I tried VirtualBox a bit, but I understand you have to install an OS on a virtual disk to make it boot. I just want to boot it without reinstalling, and I remember I had … | |
I'm trying to get some HTML code from a page. The only way to do this that I know of is [CODE=javascript]document.getElementById('id').innerHTML = 'newhtml';[/CODE] But the problem is that the page is taken from the web and it has no IDs to get and I can't modify it by putting … | |
Hello all! I'm new here I was looking through a program and I was wondering what this instruction is: [CODE]LEA EAX,DWORD PTR SS:[EBP-34][/CODE] I know that LEA moves the offset of the second argument into EAX but I don't understand the segund argument very much: [CODE]DWORD PTR SS:[EBP-34][/CODE] I'm guessing … |
The End.