English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

Programming & Design - November 2006

[Selected]: All categories Computers & Internet Programming & Design

Code

dosseg
.model small
.stack
.data
.code

main proc
mov ax, @data
mov ds, ax
mov cx, 7

mov dl, 41h

next_char: mov ah, 02h
int 21h
inc dl
loop next_char

Exit: mov ax, 4c00h
int 21h

main endp
end main




Pls explain each line....comment it... Thanx

2006-11-16 01:21:55 · 3 answers · asked by Anonymous

2006-11-16 01:17:54 · 2 answers · asked by can't find a way 3

i want lots of animation for my biology course work ...i went through lots of websites,i seen lots of good animation for my work BUT i couldn't save them ......i want todo in the power point presentation.....thats why...peoples where can i get animation it must be allowed to save the animation to my work ........ok?help!!!!!!!!!!!!!!!!!!!!!!!!!

2006-11-16 00:59:03 · 3 answers · asked by Shali 2

2006-11-16 00:46:51 · 5 answers · asked by Anonymous

$a1 = "blue"
$a2 = "red"
$a3 = "black
$-- = "--"
$a100 = "purple"

So i have 100 variables defined

If i want to display alll of the variables in a table, but each one on a separate row, how could i look it, i dont have to type in al 100 rows

for ($i = 1; $i < 100; $i++) {
$tempvar = "a".$i

}
echo " $i\n";

i cant figure out how to get the value of of the a's(a1,a2,a3, etc.) to incorporate themselves into the loop. Please help, ty

2006-11-16 00:19:16 · 3 answers · asked by f1avor_f1av 3

what is the c code i need to write to count the functions,arrays,variables,constants,display those function names,array names etc. in a c program

2006-11-16 00:07:30 · 3 answers · asked by Anonymous

I want to put my name in my blog's home page , but I want it ghotic .

2006-11-15 23:33:27 · 5 answers · asked by HellRaiSer 4

Hi , I am new to the OOPs concepts and i came across a problem in a textbook on "drawing a class diagram on Railway Reservation system".So please help me.
Regards, Rajiv Nair

2006-11-15 23:18:21 · 3 answers · asked by Anonymous

I want to give the file I open the current date in it's name. I allready insert some parameters into the file's name with sprintf command. example:

char filename1[64];
sprintf(filename1,"The_file_name_%g.dat",parameter1);

but how do I get it to write the date(preferebly 4 digits)?

2006-11-15 22:57:19 · 3 answers · asked by Ilham Aliyev 2

I use length of file divided by record length to find the number of records, but although the record length shows correctly, the number of records is one more than it should be. Is that because LOF is incorrect? How can you tell? If you put a break point on it and let the cursor hover over that line nothing is shown as a value of LOF. The .dat file seems to be ok.

Open App.Path & "\Customers.dat" For Random As #1 Len = Len(Customer(Index))
NumberOfRecords = LOF(1) / Len(Customer(Index))
For Count = 1 to NumberOfRecords
Get #1, Count, Customer(Index)
Index = Index + 1
Next Count
Close #1
For i = 0 to Index
lstCustomerList.AddItem (Customer(i).CustomerID)
Next i

2006-11-15 22:41:29 · 1 answers · asked by Older&Wiser 5

2006-11-15 21:58:58 · 3 answers · asked by Dragon Knight 1

I have a question I have an website (free service) but like to purchase a domain name but the money is not in the budget this year. Are there anyway you can get a domain name for free please forgive me I am new at this so I really don't know much about website stuff yet so any answer will help thanks

2006-11-15 21:42:27 · 5 answers · asked by Mattie98 1

2006-11-15 21:35:54 · 3 answers · asked by Anonymous

all my work goes into 1 file but if i delete the duplicate will it affect original

2006-11-15 21:24:04 · 1 answers · asked by Snot Me 6

I am trying to create a database that I expect to grow to about 500,000 entries in the next year and a half. I am thinking about using a stand-alone MySql to start, with the hope of making the scaling easier. Could someone suggest how to go about this?
Thanks

2006-11-15 20:59:56 · 6 answers · asked by Olu 1

please help me!!!!!

2006-11-15 19:10:04 · 1 answers · asked by Alex 2

If a batch file contained the text (Taskkill /im process) you would have to have the "Taskkill.exe" file in the system32 folder in order for this batch file to work.If you take that batch file and use a "bat to exe. converter" on it you now have an executive file that performs the same task,but what happens if you no longer have the "taskkill.exe"file,will the exe. file work? What im asking is does the exe. file created from the batch file read from the system32 folder also. Thanks in advance

2006-11-15 18:45:28 · 2 answers · asked by Anonymous

I have lost soucre code of my software(.exe,.ocx,.dll etc). I want to update my software. So I want original source code to do that. Any one can tell me how can I get source Code of my software.

Thanks in advance

2006-11-15 17:47:06 · 3 answers · asked by Jack J 1

2006-11-15 16:52:59 · 7 answers · asked by Sheikh Aatif 1

1. How do you post your own song on your MySpace profile?
2. How do you post your own video on your MySpace profile?
3. How do you enter a new line on your MySpace profile?
4. How do you center align your sentences on your MySpace profile?
5. How do you right align your sentences on your MySpace profile?
6. How do you justify your sentences pn your MySpace profile?
7. How do you add Flash Games to your MySpace profile that is not from MySpaceSupport?
8. Is there a way to do all of this or just some? Or None?

2006-11-15 16:42:03 · 2 answers · asked by xinnybuxlrie 5

2006-11-15 16:37:24 · 2 answers · asked by Anonymous

Hello all
I am beginner to VBA. I populate all the professers name in one combobox , and when i select one professer name then thier designation, department, and specialisation (I m thinking of either label or textbox to display theses value ) will automatically display from database field designation
For each field i have table in database.

How to code for this? Ca anybody please give some ready code? I really appreciate that.
Thanks in advance

2006-11-15 15:51:43 · 1 answers · asked by SAM 1

Hi all ,
I'd really appreciate an insight on this ..

i am trying to subtract two date values

dateS = "06:03:00"
dateE = "06:00:00"

SimpleDateFormat timeFormat = new SimpleDateFormat("hh:mm:ss");
timeFormat.setTimeZone(TimeZone.getTimeZone("GMT"));

java.util.Date dateStart = timeFormat.parse(dateS);
java.util.Date dateEnd = timeFormat.parse(dateE);

long diff = dateStart.getTime() - dateEnd.getTime();
return timeFormat.format(new Date(diff));


06:03:00 - 06:00:00 = 12:03:00 WHY ? I want my answer to be 00:03:00

Thanks alot

2006-11-15 15:43:40 · 5 answers · asked by Amber G 1

2006-11-15 15:29:00 · 1 answers · asked by Anonymous

I have a table with 17 fields and data that I inserted 1 by 1 for testing. I exported that data via the phpmyadmin export tab and exported it as a CSV for Excel with fields names in the first row. I then deleted the data (not the structure) from the table. I then deleted the data (not the structure) and went to import the same exact file I exported but could not import it no matter what I did.

I uploaded the data.csv exported file to my main directory and used the following SQL statement but it didn't import:

LOAD DATA LOCAL INFILE 'data.csv'
INTO TABLE data
FIELDS TERMINATED BY ','
LINES TERMINATED BY "\r\n";

I used to import my data using the "Insert data from a text file into the table" located under the Import Tab but it doesn't function as it used to.

Can anyone advise the best way to import my data?

Yahoo uses phpMyAdmin 2.6.3-pl1 and MySQL 4.1.14.

Thanks.

2006-11-15 15:19:06 · 2 answers · asked by shortdahri 1

fedest.com, questions and answers