On the "Outlook Today" screen, under the "Calender" section it lists the appointments by day. Is there a way to modify it so that it also displays the day's date?
I can modify it to show more than the default days which is what I would like to do. The only problem is that it only says Monday or Tuesday and it can get confusing. So I want to add the actual date in there too.
Page 1 of 1
Modifying Outlook 2000 with Reshacker
#2
Posted 26 August 2004 - 02:16 PM
i'm sure there it's a way but i don't recommend play with outlook exes, it's a too "sensible program" and many AV will detect changes in the .exe size
#3
Posted 26 August 2004 - 11:25 PM
You are working with a .dll file not an .exe. first of all.
I can go in there and customise any of the existing things no problem.
All I believe it needs is the addition of the right html code string.
I can go in there and customise any of the existing things no problem.
All I believe it needs is the addition of the right html code string.
#4
Posted 27 August 2004 - 06:04 AM
always at your own risk. taken from here
works?
Quote
<font color="#000000">
<script type="text/javascript">
var d=new Date()
var weekday=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var monthname=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
document.write(weekday[d.getDay()]+ " ")
document.write(d.getDate() + ". ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getFullYear())
</script></font>
<script type="text/javascript">
var d=new Date()
var weekday=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var monthname=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
document.write(weekday[d.getDay()]+ " ")
document.write(d.getDate() + ". ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getFullYear())
</script></font>
works?
Share this topic:
Page 1 of 1



Help
Back to top








