Can taskbar display seconds in time?? - Windows Mobile Development and Hacking General

I need show time in HH:mm:ss format in taskbar,but WM6.5 just show HH:mm, I need display seconds,how can I do it? thanks everyone...

IMHO yes. To change the time layout or format in taskbar you
1. Go to HKEY_LOCAL_MACHINE\nls\overrides
2. Edit the following values
STime STRING ":" - This setting allows you to modify the separator between hours and minutes, minutes and seconds
STFmt STRING "h:mm:ss tt" - Changes the time layout or format (see below list)
S1159 STRING "am" - Allows you to modify the AM suffix
S2359 STRING "pm" - Allows you to modify the PM suffix
Info:
Time Format String
h - Hours 12 Hour Clock with No Leading Zero
hh - Hours 12 Hour Clock with Leading Zero
H - Hours 24 Hour Clock with No Leading Zero
HH - Hours 24 Hour Clock with Leading Zero
m - Minutes with No Leading Zero
mm - Minutes with Leading Zero
s - Seconds with No Leading Zero
Ss - Seconds with Leading Zero
t - am/PM indicator - First Letter Only
tt - am/PM indicator - First Two Letters
ttt - am/PM indicator - First Three Letters

Thanks for help,but my default setting already is STFmt=HH:mm:Ss ,but in Wm6.5's taskbar only show hour and minute,no seconds,I don;t know why...

May be somebody know how do time with seconds on lock screen? Or how use HH:mm:ss ff in HKLM\nls\overrides or in other place...

Related

Change "workday" time in Calendar?

OK. silly question time. I have an XDA Mini S and I'm trying to change the default "workday time" in the calendar from 0800-1700hrs to 0600-1800hrs. In Outlook, this can be done by choosing Tools>Options>Calendar Options but I can't find anywhere on the Mini S to change this default time period.
Can anyone out there shed any light on this little annoyance? Thanks in advance for the help!
Red
Copied from the WM5 wiki
Change Calendar 'working hours'
If you wish to change the 'working hours' in the calendar, adjust the following:
For 8am-5pm (default):
HKLM\Software\Microsoft\Calendar\ActiveTimes\ActiveTimes = 2210003E (DWORD hexadecimal)
For 9am-5pm:
HKLM\Software\Microsoft\Calendar\ActiveTimes\ActiveTimes = 2212003E (DWORD hexadecimal)
For 2pm-10pm:
HKLM\Software\Microsoft\Calendar\ActiveTimes\ActiveTimes = 2C1C003E (DWORD hexadecimal)
Here's how this works.
The first 2 characters define the ending hour as a count of half hours since midnight, in hexadecimal. So for midnight, it would be 0 half hours in hexadecimal = 0. 5pm is 17 hours, or 34 half hours. 34 in hexadecimal is 22. 10pm is 22 hours, or 44 half hours. 44 in hexadecimal is 2C. You can use a calculator capable of hexadecimal conversions to get the hexadecimal number.
Similarly, the next 2 characters define the starting hour as a count of half hours since midnight, in hexadecimal. So for 8am.. 16 half hours, 16 in hexadecimal is 10. 9am = 18 half hours = 12. 14h = 28hh = 1C.
Using the above, you should be able to se the working hours to whatever you'd line.
Note that this value also adjusts the working DAYS. The examples here all use the default Mon-Fri workweek. See the "Change Calendar 'working days'" tweak to modify this.
Note that the ActiveTimes key and value may not exist. Simply create them first.
Note that you cannot set the End time earlier than the Start time, for obvious reasons
Note that you cannot set a Midnight end time. The best you can do is 11.30pm (2F)
Thanks for the assist!

How can I change the working time in calendar?

Hi guys!
I'd like to change the working time in calendar.
The defaultlt is 8 to 17 but I'd like to change it up in 9 to 18.
Anmy idea?
Change Calendar 'working hours'
If you wish to change the 'working hours' in the calendar, adjust the following:
For 8am-5pm (default):
HKLM\Software\Microsoft\Calendar\ActiveTimes\ActiveTimes = 2210003E (DWORD hexadecimal)
For 9am-5pm:
HKLM\Software\Microsoft\Calendar\ActiveTimes\ActiveTimes = 2212003E (DWORD hexadecimal)
For 2pm-10pm:
HKLM\Software\Microsoft\Calendar\ActiveTimes\ActiveTimes = 2C1C003E (DWORD hexadecimal)
Here's how this works.
The first 2 characters define the ending hour as a count of half hours since midnight, in hexadecimal. So for midnight, it would be 0 half hours in hexadecimal = 0. 5pm is 17 hours, or 34 half hours. 34 in hexadecimal is 22. 10pm is 22 hours, or 44 half hours. 44 in hexadecimal is 2C. You can use a calculator capable of hexadecimal conversions to get the hexadecimal number.
Similarly, the next 2 characters define the starting hour as a count of half hours since midnight, in hexadecimal. So for 8am.. 16 half hours, 16 in hexadecimal is 10. 9am = 18 half hours = 12. 14h = 28hh = 1C.
Using the above, you should be able to se the working hours to whatever you'd line.
Note that this value also adjusts the working DAYS. The examples here all use the default Mon-Fri workweek. See the "Change Calendar 'working days'" tweak to modify this.
Note that the ActiveTimes key and value may not exist. Simply create them first.
Note that you cannot set the End time earlier than the Start time, for obvious reasons
Note that you cannot set a Midnight end time. The best you can do is 11.30pm (2F)
I just tryed but it doesn't works on my Jamin....
I've not the entry ActiveTimes.... I create it and I do a soft reset but the working time doesn't change....
double check your entry after s-reset.. it may not have stick
The entry is okay after soft reset....
Does anyone test it on Jamin?

Calendar text in Weekly view (Outlook-PC Style)

This is a pocket outlook feature, disableb by default in 320x240 devices.
The text couldn't fit in the small space in those devices. Using a 128 or 96 DPI Athena is a usefull feature
A simple registry tweak is needed to activate
Show Calendar event text in Week View
The key Calendar and the ShowTextInWeekView may not exist - just create it if it doesn't
HKCU\Software\Microsoft\Calendar\ShowTextInWeekView = 1 (DWORD decimal)
To disable it again:
HKCU\Software\Microsoft\Calendar\ShowTextInWeekView = 0 (DWORD decimal)
Please note that your event must have long enough a duration to show the event text, and the week view (with its narrow columns) truncates long words easily
OTHER CALENDAR TWEAKS ARE
Change Calendar 'working days'
If you wish to change the 'working days' in the calendar, adjust the following:
For a Mon-Fri workweek (default):
HKLM\Software\Microsoft\Calendar\ActiveTimes\ActiveTimes = 2210003E (DWORD hexadecimal)
For a Mon-Sat workweek:
HKLM\Software\Microsoft\Calendar\ActiveTimes\ActiveTimes = 2210007E (DWORD hexadecimal)
For a Tue-Thu workweek:
HKLM\Software\Microsoft\Calendar\ActiveTimes\ActiveTimes = 22100016 (DWORD hexadecimal)
Here's how this works. When editing the value, switch to "Binary" mode. For the default Mon-Fri, you should see:
100010000100000000000000111110
The last 7 numbers are what we're interested in. They stand for the days of the week, in reverse order: Saturday, Friday, Thursday, Wednesday, Tuesday, Monday, Sunday. When the number is "1", it is a working day. If it is "0", it's not a working day. So to look at the above examples again:
Days : SFTWTMS
Mon-Fri: 0111110
Mon-Sat: 1111110
Tue-Thu: 0011100
Using the above, you should be able to set the working days to whatever you'd like. Note that this value also adjusts the working HOURS. The examples here all use the default 8am-5pm workday. See the "Change Calendar 'working hours'" tweak to modify this. Note that the ActiveTimes key and value may not exist. Simply create them first.
Change Calendar 'working hours'
If you wish to change the 'working hours' in the calendar, adjust the following:
For 8am-5pm (default):
HKLM\Software\Microsoft\Calendar\ActiveTimes\ActiveTimes = 2210003E (DWORD hexadecimal)
For 9am-5pm:
HKLM\Software\Microsoft\Calendar\ActiveTimes\ActiveTimes = 2212003E (DWORD hexadecimal)
For 2pm-10pm:
HKLM\Software\Microsoft\Calendar\ActiveTimes\ActiveTimes = 2C1C003E (DWORD hexadecimal)
(from xda-devs wiki)
Would be nice if someone could make a cab for this.
Thanks, useful to turn on this imho essential feature. Would be nice to reduce the font size and unbolden the appointment text.
I'm going to have to stick with day view for now: all-day appointments remain hidden in week view unless they're selected, and there's no way of knowing if you have more than one all-day appointment.
Correct me if I'm wrong, but aren't the work week tweaks mostly redundant? You can change this option in Tools-Options-General-Week View 5/6/7 day week and Tools-Options-General-1st day of week
yaughan said:
Thanks, useful to turn on this imho essential feature. Would be nice to reduce the font size and unbolden the appointment text.
I'm going to have to stick with day view for now: all-day appointments remain hidden in week view unless they're selected, and there's no way of knowing if you have more than one all-day appointment.
Correct me if I'm wrong, but aren't the work week tweaks mostly redundant? You can change this option in Tools-Options-General-Week View 5/6/7 day week and Tools-Options-General-1st day of week
Click to expand...
Click to collapse
Work week tweaks is just to have more control. You can chose a working week with mon and fri holidays 1011101 Knowledge is power
Change Calendar 'working hours'.
Here's how this works:
The first 2 characters define the ending hour as a count of half hours since midnight, in hexadecimal. So for midnight, it would be 0 half hours in hexadecimal = 0. 5pm is 17 hours, or 34 half hours. 34 in hexadecimal is 22. 10pm is 22 hours, or 44 half hours. 44 in hexadecimal is 2C. You can use a calculator capable of hexadecimal conversions to get the hexadecimal number.
Similarly, the next 2 characters define the starting hour as a count of half hours since midnight, in hexadecimal. So for 8am.. 16 half hours, 16 in hexadecimal is 10. 9am = 18 half hours = 12. 14h = 28hh = 1C.

Is it possible to switch speaker phone into device speaker in Dopod D810?

I want to switch the (internal) speaker phone to the device (built-in) speaker by passing some registry entries. Unfortunately I cannot find it.
If it is possible, may the reader suggest me the way to short cut the speaker phone to the device speaker without changing the hardware structure? I use Dopod D810, ROM version 3.00.707.17, Radio version 1.46.00.11, WinCE 5.2.1437 (WM 6 prof).
By the way, during the registry "surfing", I have changed some registry entries. Here the list some registry contents in my phone (I am sorry about my English).
- Enable/disable the SIM Contact Person List
(Note: 0=false=disable; 1 or other numbers = true = enable)
HKCU\ControlPanel\Phone\ShowSIM = 1 (default)
- Enable/disable SMS Unicode
HKCU\Software\Microsoft\Inbox\Settings\SmsUnicode=1 (default)
(It is same with choosing: Text Messages - Menu - Option - select Text Messages and check the Use Unicode When Necessary box)
- Enable/disable a message from device after sending an SMS
HKCU\Software\Microsoft\Inbox\Settings\SmsNoSentMsg=0 (default)
- Enable/disable the message from cellular provider
HKCU\Software\Microsoft\Inbox\Settings\SmsDeliveryNotify=0
(This registry is emerged after we choose (in Today Screen): Text Messages - Menu - Option - select Text Messages and check the Request Delivery Notifications box)
- Enable/disable audio recording when we are using camera
HKCU\Software\Microsoft\Pictures\Camera\USER\AudioEnabled=0
- Change the ring pattern
HKCU\ControlPanel\Sounds\RingTone0\Script (string)
(where: Script=apw3r (normal ring)
av3w3r (vibrate)
av0pw3r (vibrate and ring)
v3w3apw3r (vibrate then ring))
- Change the sound file of USSD buzzer
HKCU\ControlPanel\Sounds\USSDBuzz\Sound (string)
(To make the device vibrates only, it needs to change
HKCU\ControlPanel\Sounds\USSDBuzz\Script (string)
from "p" into "*vibrate*". It is also possible change "p" with "v3w3r" but without "a". The script "a" makes the device buzzes continuously)
- List of used file names
HKCU\Software\Microsoft\Shell\TaskSwitch\0
(0,1,2, and so on (string) contain the recent file names.
Weirdly, it needs soft reset to make the change takes effect)
- Switch the clock into Digital or Analog Clock
HKCU\Software\Microsfot\Shell\AnalogClock=0 (default)
(In Today Screen: press clock icon until a menu appears, and choose Analog or Digital)
- Enable the (built in) GPS receiver
HKLM\ControlPanel\GPS Setting\Hide = 1 (default)
- Turn off display screen when idle-time was reached
HKLM\System\CurrentControlSet\Control\Power\Timeouts\ACUserIdle=0 (in seconds)
HKLM\system\CurrentControlSet\Control\Power\Timeouts\BattUserIdle=0
- Soft Reset Counter
HKLM\Comm\BootCount = 1 (default)
- Enable/disable Lunar Calendar
HKLM\Software\Microsoft\Calendar\ShowLunarCalendar =0 (default)
(In Indonesia, some natives use Lunar Calendar to predict the probability of sea tiding, the first feast day, or to choose a best day for ritual celebrating, wedding, etc. So this feature is very useful for some people)
- Change the color of Today Screen
HKLM\Software\Microsoft\Color\BaseHue (dword)
- Change the way of cursor moving (in PIE) when the cursor was moved
HKLM\Software\Microsoft\InternetExplorer\Navigation\4-way Nav = 1 (default)
(0=scrolls page or moves to the next line; 1=jumps onto the next url line)
-Show TTY setting in Phone Setting Menu
HKLM\Software\OEM\PhoneSetting\ShowTtyPage=0 (default)
-Show UMTS setting in Phone Setting Menu
HKLM\Software\OEM\PhoneSetting\ShowUMTSBandPage=1 (default)
-Enable/disable HTC logo display at startup
HKLM\Software\HTC\StartUpAnimation\Enabled=0 (default)
-Enable/disable box message animation (it needs a soft reset)
HKLM\System\GWE\Animate = 0 (default)
-Enable/disable shutter sound in using camera
HKLM\Software\HTC\Camera\General\EnableShutterSound=0 (default)
-Show phone icon warning notification
HKLM\System\State\Hardware\Speaker =0 (default)
(Non zero value = display a notification with phone-talk icon)
-Change the icon of cellular connection
HKLM\System\State\Phone\Cellular Sytem Available = 17
1=icon GPRS, 8 =EDGE, 16=3G. (Just icon, it does not affect the system)
-Data for battery power
HKLM\System\State\Battery\Main (DWord)
---
End of list
Part_D
Errata for a wrong registry entry
I made a mistake, wrote hklm as hkcu in
HKLM\ Software\ Microsoft\ Inbox\ Settings\ SmsNoSentMsg=0 (default)
I have got a trouble, after a hard reset and rewritten the registry followed to this thread, it did not work as before (it might be wrong because of the result of careless copy-paste operations. I am very sorry.. )
To avoid the double ringtone sounds, I always disable the SMSNoSentMsg (=1) when I need the Request Delivery Notification from provider.
So the correct registry is:
HKLM\ Software\ Microsoft\ Inbox\ Settings\ SMSNoSentMsg
0 = Enable the notification
1 = Disable
The Settings and SMSNoSentMsg must be created first.
Here some threads refer to this registry:
http://forum.xda-developers.com/archive/index.php/t-322503.html
http://forum.xda-developers.com/archive/index.php/t-324280.html
http://forum.xda-developers.com/archive/index.php/t-225333.html
http://forum.xda-developers.com/archive/index.php/t-336266.html
http://forum.xda-developers.com/archive/index.php/t-448745.html
and many more....

How to change Htc Touch2 Date display format?

How can change Date display format from default [Sep 16, 2009] to [Wed, Sep 2] as pictures attached? registry tweak?
Indeed make some changes in registry......see this link with all options...http://forum.xda-developers.com/showthread.php?t=375288.....
Have fun....
Tried but no luck.
I think it could be related to TouchFlo Manila 2d setting, instead of changing system time format in nls folders.
HKLM\SOFTWARE\HTC\MANILA2D\..... <---could be here? just dunno which
Did you do soft reset after changing the registry changes.....?
...........
Just tried my self......and made some changes....due to all rom flashing forgot to adapt myself.....
Go to HKLM\nls\overrides.....and change SSDte according instructions and your taste...
doesn't work
wish it could show day follow by month & date. e.g. (Wed, Sep 2) as picture attached herein.
I used as example: ddd-MMM-dd ......Tue-Febr-23.
Homepage for Manila to be touch register. If you do not have it create the value manually:
[HKLM\Software\HTC\Manila2d\Home]
"CustomerTimeFormat"=dword:2
2 - short date format
3 - long date format
View of the short format is set here:
[HKEY_LOCAL_MACHINE\nls\overrides]
"SSDte"=M / d / yy
________________________________________________________
d - Single digit date no leading 0 (7/3/07)
dd - date with leading 0 (09/03/07)
ddd - Day name Short (Mon)
dddd - Day name long (Monday)
M - single digit month (7/3/07)
MM - Month with leading 0 (09/03/07)
MMM - Short month name (Mar)
MMMM - Long month name (March)
y - Short year (7/3/7)
yy - Short year with leading 0 (7/3/07)
yyyy - Full year (04/11/2007)
Thanks Villain, very complete.....our friend should be able to do te job......
villain72 said:
Homepage for Manila to be touch register. If you do not have it create the value manually:
[HKLM\Software\HTC\Manila2d\Home]
"CustomerTimeFormat"=dword:2
2 - short date format
3 - long date format
View of the short format is set here:
[HKEY_LOCAL_MACHINE\nls\overrides]
"SSDte"=M / d / yy
________________________________________________________
d - Single digit date no leading 0 (7/3/07)
dd - date with leading 0 (09/03/07)
ddd - Day name Short (Mon)
dddd - Day name long (Monday)
M - single digit month (7/3/07)
MM - Month with leading 0 (09/03/07)
MMM - Short month name (Mar)
MMMM - Long month name (March)
y - Short year (7/3/7)
yy - Short year with leading 0 (7/3/07)
yyyy - Full year (04/11/2007)
Click to expand...
Click to collapse
______________
Thanks a lot!
I had searched a lot of methods to this ,but only yours were useful.
Thanks guys and Villain72 for helping
the home screen date displayed format is now making more sense to me.
htc centre couldnt give me the answer yet.
Thanks
Hello guys, it seems that I am doing something wrong. Following on the instructions I could not reformat the date. Currently I do not have the "CustomerTimeFormat" in my registry. How do I create it - as key, dword or string? I am using SKTools Registry Explorer. 10x in advance.
Hello, check the message above.....is Dword
sea this
settings-system-regional settings-time-time style-hh:mm:ss tt
Bringing this thread up again with my very 1st post...
i just got the right display on the home screen, only it displays the day twice...
it displays like this on the home screen:
Monday__________________03:00 pm
Mo 16 august 2010
now how do i remove the day display in front of the time and put the full date there so it gives me:
Mo 16 august 2010________03:00 pm
Thanks for solution....it was great....

Categories

Resources