Jump to content

Modifying Outlook 2000 with Reshacker


Recommended Posts

Posted

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.


Posted

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

Posted

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.

Posted

always at your own risk. taken from here

<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>

works?

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
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...