One newbie question.
We have a disk and tape backup system. With tapes out of the house. We have three weeks recycling. (?!?)
But now the HDD is full, and I dont know if I can delete the oldest files and folders directly in windows explorer, or is there some way to do it in the legato networkers...
ok so i was playing around with asm and did this simple program:
.model small
.stack 100h
.data
sum dw ?
.code
extrn Writeint:proc, Crlf:proc
main proc
mov ax,@data
mov ds,ax
mov dx,1
mov bx,10
mov ax,0
L1:
add ax,dx
add dx,dx
mov sum,ax
call Writeint
call Crlf
loop L1
mov ax,4c00h
int 21h...
Hi Guys,
I have just written an app that draws a scatter plot and I want to be able to click on a point and bring up the corresponding information, also I would like to be able to select multple points by drawing a freeform shape around them that will select everything inside (sort of like the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.