Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~5K People Reached
Favorite Tags

5 Posted Topics

Member Avatar for n00b3

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 …

Member Avatar for Panda_007
0
5K
Member Avatar for SirDorius

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.

0
70
Member Avatar for SirDorius

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 …

Member Avatar for OlyComputers
0
96
Member Avatar for SirDorius

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 …

Member Avatar for SirDorius
0
155
Member Avatar for SirDorius

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 …

Member Avatar for SirDorius
0
128

The End.