Clear the screen in MASM?

487 byte By Sivakk at 2007-11-20 11:47:26
Anyone got the DOS call needed to clear the screen entirely and move the cursor to the very top so you can start up there?Also, is there a way to clear only a certain part of the screen?I've found a few through a search, but they're all for FASM or TASM or pretty much anything that ISN...

change just the value of a hidden field in a form

768 byte By rogernem at 2007-11-20 11:47:52
I have in my form a hidden field<input type="hidden" name="field" value="1" id="field">Id like to know what I have to do to change just the value of this field. 1) Ive tryied with: document.getElementById('field').value = "2";Didnt work2) Ive also tryied with:<div id="field">1&...

16 bit code, shifting pages in dos, beginner

1650 byte By ninjikiran at 2007-11-20 11:47:53
Alright I am currently writing a program to make a calendar as a project, to which using the ascii table to make borders and the such. So now I have a month completed, now I need to make a keyboard input to shift between a month foward and a month backwards. Like when the program loads it will sho...

Spammer sneaking javascript on page

457 byte By tcmagnumpi at 2007-11-20 11:48:36
I recently went to a site and being the nosy coder I am I checked the source to see if there was any javascript being used to grab info or otherwise spy or spam. There was a javascript being linked to and I grabbed the code. I'm not very good at javascript so I wanted to see if anyone on this...

Delete Records From The Sql Server Table

891 byte By svgeorge at 2007-11-20 11:48:45
I AM TRYING TO DELETE RECORDS FROM THE SQL SERVER TABLE,I AM USING THE COMMAND BELOW TO DELETE THOSE 71 RECORDS BUT MY WHOLE TABLE 1198 records GOT DELETED AND HAD TO RECOVER FROM BACKUP..SO WHAT IS WRONG WITH THE SYNTAX GIVEN BELOWPlease give me the correct syntax please I am reffering to the tabl...

Reload(refresh) last page in history

77 byte By BeachBum at 2007-11-20 11:49:49
Is there a way to call the last page (back) and refresh it in the same click?

Pass Form Value on Click

210 byte By BeachBum at 2007-11-20 11:49:50
Hi All,<br/>How can I pass the value of a Checkbox when it is clicked to a hidden value in another form on the page?<br/>And if there is more then one checkbox clicked it will pass all checked values.

XML coding

126 byte By sooner at 2007-11-20 11:53:18
O! Are you very expert in using XML coding?<br/>I am not familiar with that..<br/>could you make a sample for it?<br/>thanks:)

Dijkstras algorithm with GET or POST

428 byte By klotz at 2007-11-20 11:53:26
Hello, i have a Problem using variables GET or POST. The dijkstra class doesn`t accept this.There is no output.For example:This doesn`t work: $fromClass=$_GET[fromClass];$toClass=$_GET[toClass];$dijkstra->findShortestPath($fromClass, $toClass); This works well: $dijkstra->findShortestPath(1, 5...

MySQL WONT UNINSTALL!!

239 byte By Josef_Stalin at 2007-11-20 11:53:37
I want to reinstall, and it won't uninstall. Deleting the program and a few registry settings didn't help me either.<br/>Since the program won't work, how can I manually uninstall it, and then bring in a fresh install?

[PHP] end of a file..

694 byte By Rooting at 2007-11-20 11:53:51
hi friends..i'm now writting for a new problem in php..from a file as imput, i would every line make a variables,and the cicle must be stopped when the file end..to assign thge variable of te lines i use the explode function..as$file = "file.txt";$open = fopen($file "r");$context = fread($open,...

Why does my page save a textarea wrongly?

1796 byte By Debbie-Leigh at 2007-11-20 11:54:07
Hi,I have a PHP page (page 1) with a textarea on it, which is saved to a database. I also have a validation page (page 2) that has the same value as the textarea posted to it, which it needs to compare with the database value.Unfortunately, when I save the value using page 1, it doesn't match t...

2 actions with same submit button

1735 byte By TDK at 2007-11-20 11:54:10
I have searched all over this forums and search engines but could not find the result, so I'll post the code and hopefully someone will understand what I want to do.I have a simple, 1 textbox form, that I want to save the text (a website URL) into a text file and then continue with the normal o...

how to restrict the number of occurences

987 byte By nadiamihu at 2007-11-20 11:55:04
Hello all,I have this code: <xsd:complexType name="aliasEntryType"> <xsd:sequence> <xsd:element name="alias" type="xsd:string" /> </xsd:sequence> </xsd:complexType> <xsd:complexType name="aliasEntryListType"> <xsd:sequence>...

LC3 help

157 byte By beenhang at 2007-11-20 11:55:17
I need help programming in LC3 that use the sieve of eratosthenes algorithm which basic-ly you print out prime numbers but then number have to b 2 though 99

c to mips conversion

325 byte By agramma at 2007-11-20 11:55:29
hi , must convert the following c code to mips assembly for my university:odd = 1020000; /* 0xF9060 */j= 0;loop: if (j & 0x1) {printf(odd\n);odd++;}j = j + 1;if (j < 5) goto loop;printf(%d\n,odd); variables j and odd must be stored at registers $8 and $9($t0 and $t1)...