Forum: Assembly Jul 12th, 2006 |
| Replies: 3 Views: 2,286 Separation code you need to develop .
It's easy, just mask the upper nibble(4 bit) and get lower nibble .
mask the lower nibble and shift 4 times to left and get the upper nibble.
AND the... |
Forum: Assembly Jul 12th, 2006 |
| Replies: 3 Views: 2,286 Var contains data which will be evaluated as ASCII , but as 4 is in deciaml it will be evaluated as ASCII value 4 , which is a nonprintable chracter.
You need to convert 4 to ASCII "4" . To... |
Forum: VB.NET Jul 12th, 2006 |
| Replies: 3 Views: 16,527 WHAT RESPONSE IT GIVES (i.e. server ) ?
Can u give me ? |
Forum: Assembly Jul 12th, 2006 |
| Replies: 4 Views: 3,056 No , You Need To Code A Driver / Kernel Moddule To |
Forum: Assembly Jul 11th, 2006 |
| Replies: 4 Views: 4,159 DOS uses a internal DTA buffer to do it's internal disk access job.
Also u shold not interrupt the DOS in the middle of some work.. As DOS in nonreentrant.
U shold check the status of DOS BUSY... |
Forum: Assembly Jul 11th, 2006 |
| Replies: 10 Views: 8,963 Actual EXE MZ header...
START(hex) OFFSETS(dec) DISCRIPTIONS
00 00 Always 4D 5A. Marks this file as an .EXE file
*02 02 Remainder after dividing load module's size by 512
*04 04 Size of file... |
Forum: Assembly Jul 11th, 2006 |
| Replies: 10 Views: 8,963 Com structure :=>
jump here
data1 db ?
data2 db ?
.
.
.
. |
Forum: Assembly Jul 11th, 2006 |
| Replies: 4 Views: 3,056 Linux runs in 32bit protected mode whre all ports are blocked .
The code u r showing will only gonna work in real mode (i.e. 16 bit , MsDos style).
If you really need to execute in/out... |
Forum: C Jul 11th, 2006 |
| Replies: 5 Views: 2,302 Mainly used in TSR programming in old days , where old IVT vector function 's address is stored as a pointer to a function. |
Forum: C Jul 11th, 2006 |
| Replies: 4 Views: 6,458 Just do a while(1) loop and inside read all running prosesses by using PSAPI . CreateToolhelpSnapshot(..) as far i can remember .
Next do a CreateRemoteThread for all process (you need to have... |
Forum: VB.NET Jul 11th, 2006 |
| Replies: 3 Views: 16,527 You need to learn how to write network programming using Socket .
Use the socket to connect to a host by ip or resolve the ip by DNS search , and to the port 23.
Upon connect you need to parse... |
Forum: VB.NET Jul 11th, 2006 |
| Replies: 2 Views: 2,000 You r tring to write a GUI programming but using Console output .
Please change the Console.**** to something else in GUI |
Forum: PHP Jun 18th, 2005 |
| Replies: 2 Views: 6,943 Copied from PHP Manual! Ha Ha.
But Usefull |
Forum: PHP Jun 18th, 2005 |
| Replies: 2 Views: 3,655 Dear all members,
I have a problem . As i use dial up network as a mean to get to the internet it is some times costly to upload my code to internet and then test . As i am learning PHP recently ,... |