Jump to content

Recommended Posts

Posted

Hi,

 

We have just been told that students will need to be able to create an example email for an assessment they will be doing but they can not have internet access.

 

They need to be able to enter a to:, cc:, subject and the message text. They then need to printscreen the email but not send it.

 

I've had a look at some portable email clients but I dont think it will work too well.

 

Does anyone know of any flash swf that can replicate an email client? or can suggest anything different?

 

Thanks,

 

Michael

Posted (edited)
[ATTACH]8169[/ATTACH]

 

I've just bodged this up.

 

Fantastic - Do you have the au3 file so I can have a play around to see how you did it? As I don't seem to be able to use enter to go to the next line in the message box.

Edited by linkazoid
More info
Posted
; Script Start - Add your code below here

#include 
#include 
#include 
#include 
#include 
#Region ### START Koda GUI section ### Form=C:\Program Files (x86)\Koda\Forms\mock email\Form1.kxf
$Form1 = GUICreate("New Email", 640, 456, 221, 312)
$Label1 = GUICtrlCreateLabel("To:", 8, 10, 20, 17)
$Label2 = GUICtrlCreateLabel("CC:", 8, 43, 21, 17)
$Input1 = GUICtrlCreateInput("", 72, 8, 545, 21)
$Input2 = GUICtrlCreateInput("", 72, 41, 545, 21)
$Label3 = GUICtrlCreateLabel("Subject:", 8, 76, 43, 17)
$Input3 = GUICtrlCreateInput("", 71, 74, 545, 21)
$Label4 = GUICtrlCreateLabel("Message:", 8, 104, 50, 17)
$Button1 = GUICtrlCreateButton("Send", 544, 408, 75, 25, $WS_GROUP)
$Input4 = GUICtrlCreateInput("", 72, 104, 545, 277, $ES_MULTILINE)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit

EndSwitch
WEnd

Posted

I have tried the thunderbird option as suggested above. I have downloaded the portable version and have installed it on a shared drive. It works ok but as soon as another user trys to open it, it says that another user is already using it.

 

Does anyone know how I can get round this?

 

Michael

Posted
I have tried the thunderbird option as suggested above. I have downloaded the portable version and have installed it on a shared drive. It works ok but as soon as another user trys to open it, it says that another user is already using it.

 

Does anyone know how I can get round this?

 

Michael

 

Try making the share read only, although this will probably just kill it dead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...