Computer Science Canada

Messenger

Author:  StarGateSG-1 [ Fri Jan 07, 2005 8:41 am ]
Post subject:  Messenger

This is a simple messenger that uses net send in turing. It is great for sending notes to nayone on your network.
For Canadians in ontario use your last 7 digits of you student ID
or use the computer name.
Every one else use the computer.

Damn bell rang again post it later.
[/code]

Author:  zomg [ Fri Jan 07, 2005 11:38 am ]
Post subject: 

suggestion: dont press submit if u cant post an attachment, post all when u have time

Author:  StarGateSG-1 [ Fri Jan 07, 2005 12:22 pm ]
Post subject: 

Here it is the school bellringing time is messed up.
code:

var message : string
var user : string
var msgtimes : int
loop
    put "Please enter the user number: " ..
    get user : *
    if user = "exit" or user = "Exit" then
        quit
    end if
    put "How many messages would you like to send"
    get msgtimes
    put "Please enter the message you would like to send"
    get message : *
    for i : 1 .. msgtimes
        var send := Sys.Exec ("net send " + user + " " + message)
    end for
end loop

Author:  apomb [ Sat Jan 08, 2005 12:48 am ]
Post subject: 

well, Posted Image, might have been reduced in size. Click Image to view fullscreen.
i think you get my point ,however, try finding something that actually works to send messages, but good try,simple enough concept

Author:  Andy [ Sat Jan 08, 2005 4:03 pm ]
Post subject: 

i think net send only works in nt

Author:  StarGateSG-1 [ Mon Jan 10, 2005 12:26 pm ]
Post subject: 

Net send works in most of the new boards XP computers unless your network admin put a lot of restrictions on.

FYI : net send works on all windows higher than ME as far as I know.
I use XP here.

Author:  Andy [ Mon Jan 10, 2005 9:39 pm ]
Post subject: 

like i said, nt

Author:  StarGateSG-1 [ Tue Jan 11, 2005 8:30 am ]
Post subject: 

I went of a 98 machince yesterday after the post and net send does work.
As far I know my messeger works but if you try usign net send in dos in might not. Also most likely you ppl have higher network reatrictions. I had the same problems before my school opened up net send for my programing class.

Author:  StarGateSG-1 [ Tue Jan 11, 2005 8:32 am ]
Post subject: 

Quote:
i think you get my point ,however, try finding something that actually works to send messages, but good try,simple enough concept

What Point?
I can't read that screenshot it is to small.

Author:  apomb [ Wed Jan 12, 2005 3:50 pm ]
Post subject: 

ya, sorry bout that, ne way, i understand y i couldn't use it ... like ANDY said .. nt i have ME. not a problem tho, good consept

Author:  gandalf11111 [ Wed Jan 12, 2005 5:38 pm ]
Post subject: 

I trust you made this by yourself, but doesn't Turing come with something like this in the Examples folder. I may be wrong, since I only took a quick look at most of the examples.

Author:  DArkspider1 [ Fri Jan 14, 2005 12:24 pm ]
Post subject:  Examples

Yeah, Turing has a chat program within the examples which has been modified several times and posted as well. Just make it better if you are even thinking of putting it up ...


: