Forum: Assembly Jan 4th, 2007 |
| Replies: 8 Views: 3,152 Re: counting digits How do i test the most/last significant bits of register?
In a general, is there list of all assembly functions available somewhere on web, i haven't found one ? |
Forum: Assembly Jan 3rd, 2007 |
| Replies: 2 Views: 1,974 |
Forum: Assembly Jan 3rd, 2007 |
| Replies: 2 Views: 1,974 |
Forum: JavaScript / DHTML / AJAX Jul 26th, 2006 |
| Replies: 8 Views: 3,933 |
Forum: JavaScript / DHTML / AJAX Jul 24th, 2006 |
| Replies: 8 Views: 3,933 Re: Loading image to HTML I hadn't done good research on JS events before posted this question...There is onFocus event for "file" type, which occures whenever file input field is modified. The problem is solved. |
Forum: JavaScript / DHTML / AJAX Jul 22nd, 2006 |
| Replies: 8 Views: 3,933 Re: Loading image to HTML It doesn't work either way. I altered my code and added a special button to load image.
<input name="Preview" value="Preview picture" onclick="preview();" type="button">
This code works when i... |
Forum: JavaScript / DHTML / AJAX Jul 22nd, 2006 |
| Replies: 8 Views: 3,933 Loading image to HTML Hello people,
I have just started to learn JS, and have a question. I want make my script to load (for preview) an image file chosen by user through HTML form. My code is following:
<html... |
Forum: PHP Jul 20th, 2006 |
| Replies: 2 Views: 1,158 Program-contolled delay I want to create a slideshow of images. Image files will be uploaded from harddisk to the browser and change each other at specified duration.
How can i generate delay (after which the next image... |
Forum: PHP Jul 20th, 2006 |
| Replies: 7 Views: 3,420 |
Forum: PHP Jul 20th, 2006 |
| Replies: 2 Views: 2,109 Re: File upload problem Thanks Zippee,
I use move_uploaded_file() and it does the job perfectly.
is_uploaded_file() automatically creates directory with the name like C:/Program Files/wamp/tmp\phpB.tmp, which doesn't seem... |
Forum: PHP Jul 19th, 2006 |
| Replies: 7 Views: 3,420 Re: browse directory window Insert the following lines into your form
<input name="userfile" type="file"> <input value="Submit" type="submit" value="DoAnything"/>
I believe that's what you need |
Forum: PHP Jul 19th, 2006 |
| Replies: 2 Views: 2,109 File upload problem Hi,
I have problem with uploading images by php script.
I created a HTML form for user to input image file, and simple PHP script which accepts this file from form and prints it in the browser. My... |
Forum: PHP Jul 15th, 2006 |
| Replies: 4 Views: 1,112 Re: Thumbnailed images Thanks Puckdropper,
I want to generate thumbnails from image files, so that clicking on thumbnail will load file in its full size. I don't have thumbnail image of the file. Does PHP have tools to... |
Forum: PHP Jul 15th, 2006 |
| Replies: 4 Views: 1,112 Thumbnailed images Hi,
I am beginner in PHP and need to want to create a gallery of thumbnailed images so that user could load the original image (in separate window) after clicking on its thumbnail.
Is it possible to... |
Forum: Assembly Jul 13th, 2006 |
| Replies: 3 Views: 1,832 |
Forum: Assembly Jul 11th, 2006 |
| Replies: 3 Views: 1,832 Displaying numeric data Hi, I'm new to 80x86 Assembler...
My question is very simple one: how should i print number on screen?
I used the following code to print ascii data:
mov ah,09h ;load code of print... |