Forum: JavaScript / DHTML / AJAX Jul 28th, 2008 |
| Replies: 0 Views: 515 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. |
Forum: Windows Software Jun 13th, 2008 |
| Replies: 1 Views: 518 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... |
Forum: JavaScript / DHTML / AJAX Jun 13th, 2008 |
| Replies: 4 Views: 2,333 Thanks, document.body.innerHTML should be useful too |
Forum: JavaScript / DHTML / AJAX Jun 12th, 2008 |
| Replies: 4 Views: 2,333 Thanks Adam, that did help a lot!
Cheers! |
Forum: JavaScript / DHTML / AJAX Jun 12th, 2008 |
| Replies: 4 Views: 2,333 I'm trying to get some HTML code from a page. The only way to do this that I know of is
document.getElementById('id').innerHTML = 'newhtml';
But the problem is that the page is taken from the web... |
Forum: Assembly Jun 11th, 2008 |
| Replies: 2 Views: 1,171 |
Forum: C++ Jun 10th, 2008 |
| Replies: 10 Views: 3,668 Nope, I don't even know the original poster. I was just browsing around and I found it an interesting topic.
And thanks for all the help!
It seems characters are stored once every 2 bytes in the... |
Forum: C++ Jun 10th, 2008 |
| Replies: 10 Views: 3,668 sorry, I still can't make it work... if I try clip++ to move to the next character it says HANDLE: unkown size. How am I supposed to do that? |
Forum: C++ Jun 10th, 2008 |
| Replies: 10 Views: 3,668 I tried to cout the text in the clipboard with this
HANDLE clip;
if (OpenClipboard(NULL))
clip = GetClipboardData(CF_UNICODETEXT);
string text;
while (clip != 0)
... |
Forum: Assembly Jun 10th, 2008 |
| Replies: 2 Views: 1,171 Hello all! I'm new here
I was looking through a program and I was wondering what this instruction is:
LEA EAX,DWORD PTR SS:[EBP-34]
I know that LEA moves the offset of the second argument into... |