Forum: Assembly Jan 4th, 2007 |
| Replies: 8 Views: 4,108 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: 2,668 Thanks, I forgot to add termination lines and after i have added it began to work...
Indeed i use 32-bit TASM, interrupts seem to be OK. |
Forum: Assembly Jan 3rd, 2007 |
| Replies: 2 Views: 2,668 Hello,
i wrote tiny program to output a single symbol, and it doesn't do the job. The whole code is below:
.MODEL SMALL
.DATA
.CODE
BEGIN: |
Forum: JavaScript / DHTML / AJAX Jul 26th, 2006 |
| Replies: 8 Views: 5,696 onChange is better off... thanks tgreer for informing me about this one |
Forum: JavaScript / DHTML / AJAX Jul 24th, 2006 |
| Replies: 8 Views: 5,696 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: 5,696 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: 5,696 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,553 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: 6,289 I'm not sure whether such option exists in html. I have the same question |
Forum: PHP Jul 20th, 2006 |
| Replies: 2 Views: 3,289 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: 6,289 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: 3,289 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.... |
Forum: PHP Jul 15th, 2006 |
| Replies: 4 Views: 1,470 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,470 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... |
Forum: Assembly Jul 13th, 2006 |
| Replies: 3 Views: 2,275 Thank thandermax for your reply... i think i got idea... |
Forum: Assembly Jul 11th, 2006 |
| Replies: 3 Views: 2,275 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... |