How to I set the contact list to display First name, Last name - Touch Diamond2, Pure General

I want to change the layout of the contact list on the TD2 to display names in First Name, Last Name format. I can do this in the other WM device I had before but I couldn't find this function on the TD2. Anyone can help?

j824 said:
I want to change the layout of the contact list on the TD2 to display names in First Name, Last Name format. I can do this in the other WM device I had before but I couldn't find this function on the TD2. Anyone can help?
Click to expand...
Click to collapse
You do it on each individual contact. Edit the contact and find the "File As" as set it accordingly.

Nope - There IS an app at XDA that does exactly what you want.
search for it and you will see the magic

Contact Changer 1.3
j824 said:
I want to change the layout of the contact list on the TD2 to display names in First Name, Last Name format. I can do this in the other WM device I had before but I couldn't find this function on the TD2. Anyone can help?
Click to expand...
Click to collapse
I believe this might help...
http://www.shubaroo.com/index.php?module=contact

sync with outlook and there, when you edit, you can select how to display name. Once you dothat in outlook, it automatically does it when you disconnect from PC and add contact. At least that's how I do it ...

Hi all,
I tried three programs:
Fileasfl
Contact Changer 1.3
TrineFix v1.1
But neither of them changes the default behaviour of saving as last, first.
All of my contact are correctly setup (first last), I'm only interested in changing the default behaviour when adding new contact in wm6.1.
Thanks to all.

j824 said:
I want to change the layout of the contact list on the TD2 to display names in First Name, Last Name format. I can do this in the other WM device I had before but I couldn't find this function on the TD2. Anyone can help?
Click to expand...
Click to collapse
The easy est way to do that is via PC sync but you must know how to use macros.
1.ms outlook -> tolls / options / contact options -> set default "file as" order as you like...
2. Run this macro for applying that setting to all contacts in MS outlook.
Public Sub ChangeFileAs()
Dim objOL As Outlook.Application
Dim objNS As Outlook.NameSpace
Dim objContact As Outlook.ContactItem
Dim objItems As Outlook.items
Dim objContactsFolder As Outlook.MAPIFolder
Dim obj As Object
Dim strFirstName As String
Dim strLastName As String
Dim strFileAs As String
On Error Resume Next
Set objOL = CreateObject("Outlook.Application")
Set objNS = objOL.GetNamespace("MAPI")
Set objContactsFolder = objNS.GetDefaultFolder(olFolderContacts)
Set objItems = objContactsFolder.items
For Each obj In objItems
'Test for contact and not distribution list
If obj.Class = olContact Then
Set objContact = obj
With objContact
' Uncomment the strFileAs line for the desired format
'Lastname, Firstname (Company) format
' strFileAs = .FullNameAndCompany
'Firstname Lastname format
' strFileAs = .FullName
'Lastname, Firstname format
strFileAs = .LastNameAndFirstName
'Company name only
' strFileAs = .CompanyName
'Companyname (Lastname, Firstname)
' strFileAs = .CompanyAndFullName
.FileAs = strFileAs
.Save
End With
End If
Err.Clear
Next
Set objOL = Nothing
Set objNS = Nothing
Set obj = Nothing
Set objContact = Nothing
Set objItems = Nothing
Set objContactsFolder = Nothing
End Sub
3. Sync again with your mobile....
KraFT

KraFT_mk said:
The easy est way to do that is via PC sync but you must know how to use macros.
1.ms outlook -> tolls / options / contact options -> set default "file as" order as you like...
2. Run this macro for applying that setting to all contacts in MS outlook.
Public Sub ChangeFileAs()
Dim objOL As Outlook.Application
Dim objNS As Outlook.NameSpace
Dim objContact As Outlook.ContactItem
Dim objItems As Outlook.items
Dim objContactsFolder As Outlook.MAPIFolder
Dim obj As Object
Dim strFirstName As String
Dim strLastName As String
Dim strFileAs As String
On Error Resume Next
Set objOL = CreateObject("Outlook.Application")
Set objNS = objOL.GetNamespace("MAPI")
Set objContactsFolder = objNS.GetDefaultFolder(olFolderContacts)
Set objItems = objContactsFolder.items
For Each obj In objItems
'Test for contact and not distribution list
If obj.Class = olContact Then
Set objContact = obj
With objContact
' Uncomment the strFileAs line for the desired format
'Lastname, Firstname (Company) format
' strFileAs = .FullNameAndCompany
'Firstname Lastname format
' strFileAs = .FullName
'Lastname, Firstname format
strFileAs = .LastNameAndFirstName
'Company name only
' strFileAs = .CompanyName
'Companyname (Lastname, Firstname)
' strFileAs = .CompanyAndFullName
.FileAs = strFileAs
.Save
End With
End If
Err.Clear
Next
Set objOL = Nothing
Set objNS = Nothing
Set obj = Nothing
Set objContact = Nothing
Set objItems = Nothing
Set objContactsFolder = Nothing
End Sub
3. Sync again with your mobile....
KraFT
Click to expand...
Click to collapse
i tried this, but all my contacts on td2 got screwd after i sync with my outlook. what shows is just photos and the names are gone..

I did that to a min 6 wm6 mob + on my diamond 1 and diamond2 and never had any problems.
K

Any reg hack to change the default behaviour of saving as last, first --> first last? Thanks.

grabejud said:
i tried this, but all my contacts on td2 got screwd after i sync with my outlook. what shows is just photos and the names are gone..
Click to expand...
Click to collapse
that is probably because you did not uncomment one of the formats, just remove the ' before
' strFileAs = .FullName
the code was an sample for all formats, just uncomment the format you would like. When you did not uncomment any, th name indeed would disappear.

I would also like to have the contacts sorted as First, Last.
I've seen solutions where the files get renamed etc., but the solution should be more simple than that.
Isn't there a reg key that deals with sorting order in Contacts?

anyone found a fix for this yet? Its a bit annoying having it lastname, firstname I have trouble remembering their firstnames sometimes ;-)

It's really easy...
You don't need scripts etc.
1) Select the contact
2) Click edit contact
3) Scroll down
4) Click more
-- You should now see the windows mobile contact editor
5) Under "File as" Open the drop down list and change the selection

Related

How to turn off text message sent notification?

Every time I send a text message, I get a message confirming it was sent. How do I turn this off?
google.com is always a start. but I will do it for you
http://www.htcwizardweb.net/node/149
Use Total Commander to navigate to HKEY_LOCAL_MACHINE\Software\Microsoft\Inbox
Create a new key with the name Settings
Enter Settings
Add a new DWORD Value with the following values
Name: SMSNoSentMsg
DWORD Data: 1
Base: Dec
Perform a soft reset
anubus12 said:
Every time I send a text message, I get a message confirming it was sent. How do I turn this off?
Click to expand...
Click to collapse
install the registry editor... its located in this forum somewhere... inside of the program, theres the option to turn that annoying crap off!
slimsaturn said:
google.com is always a start. but I will do it for you
http://www.htcwizardweb.net/node/149
Use Total Commander to navigate to HKEY_LOCAL_MACHINE\Software\Microsoft\Inbox
Create a new key with the name Settings
Enter Settings
Add a new DWORD Value with the following values
Name: SMSNoSentMsg
DWORD Data: 1
Base: Dec
Perform a soft reset
Click to expand...
Click to collapse
Thank you.
I was thinking about this tweak... Are there any cases where an SMS may NOT be sent, and don't I need to know if it was not sent?
Would it not sit in the outbox till it went anywhere?
The only thing that this disabled was the audible Message sent Alert, I still get the pop-up onscreen notification.
you need to install a tool called Advanced Configuration, if it is not already included whatever ROM you are running you can find it here: http://forum.xda-developers.com/showthread.php?t=418151

Threaded or Non-Threaded Messaging

Hi All - first post...
On the Touch HD I really don't like the Threaded Messaging system
Is there a software fix to turn this ON or OFF with ease?
Also, is there a way to show sms/mms/emails being sent clearly and then notified clearly that the sms/mms/email has been sent?
Compared to Nokia N95 and Samsung Omnia I find the above very vague...
Cheers
Flash_Gordon said:
Hi All - first post...
On the Touch HD I really don't like the Threaded Messaging system
Is there a software fix to turn this ON or OFF with ease?
Also, is there a way to show sms/mms/emails being sent clearly and then notified clearly that the sms/mms/email has been sent?
Compared to Nokia N95 and Samsung Omnia I find the above very vague...
Cheers
Click to expand...
Click to collapse
Hi,
If I know well you can do it registry setting only
HKEY_CURRENT_USER\Software\Microsoft\Inbox\Settings\SMSAvailable
Change dword value from 1 to 0 and you're done
or
create a folder named OEM in HKEY_CURRENT_USER\Software\M!cro$oft\Inbox\Settings
Then in the new named OEM folder, create a DWORD key called
SMSInboxThreadingDisabled
with a value of 1 (1 disable, 0 enable threading)
Default SMS Delivery Notifications to on
To always have SMS Delivery Notifications enabled:
HKCU\Software\Microsoft\Inbox\Settings\SMSDelivery Notify = 1 (DWORD decimal)
To disable them (can still enable per-SMS in SMS settings):
HKCU\Software\Microsoft\Inbox\Settings\SMSDelivery Notify = 0 (DWORD decimal)
Hi!
there is a cab somewhere here... but can't find it at the moment!
DisableSMSThreading.zip
Ofiaich
you can use advanced config for that...
but it don't work to get my sim-contacts out of the contact list.
anyone know how?
Don't change the d-word value!
nikkel said:
Hi,
If I know well you can do it registry setting only
HKEY_CURRENT_USER\Software\Microsoft\Inbox\Settings\SMSAvailable
Change dword value from 1 to 0 and you're done
Click to expand...
Click to collapse
DON'T DO THIS! It will make your sound as well as vibration for outgoing and icoming SMS disappear! Additionally, you can't tell your system to ask for a sent receipt anymore!
See also this thread: http://forum.xda-developers.com/showthread.php?t=474692

Add CheckBox to Listbox String

Can you guys please help me on this....
I want to add a checkbox to all my listbox strings
for example
user enters a string
automatically in the listbox a check box appears next too the string

How to show messages immediately when display is turned off

There was a regedit for showing new messages when the display is off but i cant find it anymore. Could someone help me?
Wake Up on New SMS --> HKLM\Drivers\BuiltIn\RIL : DisableSMSWakeUpEvent <-- set to "1" by default. Change value to "0"

Registry backup

In order to make use of sashimi I want to back up all the necesary registry...
so I want this thred to be dedicated to registry identification and setting issues...
I'll begin with a list of registry settings that I need to identify... who knows where they are please jump in...
alarms
removing weather cities
removing timezone cities and set my location to a specific city
setting regional setting to a specific country
regional settings - my home country
internet default connection
sms: delivery notification ON
camera setings - superfine in pics
manila tabs config - just the order in witch they are and the tabs i don't wanna show...
font set to smallest
vibration (haptic) disable
phone ringtone set to xxxx - this i have found but it doesn't work
sms/mms set to xxxxx no vibrate
email set to xxxx no vibrate
missed call no alert
ring type set to ring no vibrate
quiet ring set to ON
pocket ring mode set to ON
no charge over USB
set clear type
email account (exchange - google sync) - this i think can be done through makisu/sashimi
cookie home tab settings: CookieHomeTabEditor
callendar look forward 31 days
shortcut grid 4x4
1 tab of shortcuts
shortcuts in the home tab...
facebook account credentials (sense wise not the facebook app... so it links the contacts)
and now we wait....
thanks.
no one?
i have some answers though... I'll try to put them here...
removing weather cities
the list of installed cities is
HKCU\software\HTC\manila
There are several entries that begin weather.xxxx
the list of installed cities is
weather.citylist
-------------------------------
removing timezone cities and set my location to a specific city
not sure about timezone cities
-------------------------------
setting regional setting to a specific country
HKLM\nls
start reading here
http:\\msdn.microsoft.com\en-us\library\ms904189.aspx
-------------------------------
regional settings - my home country
see above
-------------------------------
internet default connection
HKLM\comm\connmgr
lost of sub keys, planner\settings\prefconn seems to be preffered connection list, but i also read online that it may or may not work.
Providers has a list of all your connections in it.
-------------------------------
sms: delivery notification ON
HKEY_LOCAL_MACHINE\Software\Jataayu\Messaging\SMS
DeliveryReport set to Dword 1
-------------------------------
camera setings - superfine in pics
tips and tweaks thread
56. Incease Picture Quality of Camera Photos
The following tweak will allow the camera to save images at a less compressed jpeg rate, meaning that the image will be sharper and more detailed.
HKLM\software\htc\camera\image\jpegquaity\superfin e
Replace the 5Msize = 643628 value with 746028
--------------------------------
manila tabs config - just the order in which they are and the tabs i don't wanna show...
see this article, its not a registry setting that controls order.
http:\\wiki.xda-developers.com\index.php?pagename=Manila%20Tutorial%20One
---------------------------------
font set to smallest
couldnt find it
---------------------------
vibration (haptic) disable
not a single setting. Keyboards and other progs all have their own setting
calculator
HKEY_LOCAL_MACHINE\Software\HTC\Calculator
set 'vibrate' to dword 0
phone keypad is possibly
HKEY_LOCAL_MACHINE\Software\HTC\PHONE\PhoneExtendSetting
SupportVibrateInPressKeyPad dword 0
--------------------------------
sms\mms set to xxxxx no vibrate
message alert sound is
HKEY_CURRENT_USER\ControlPanel\Notifications\{A877D65B-239C-47a7-9304-0D347F580408}
string value named Wave
Also in that key, if you set 'options' to 9, that is no vibrate, 11 is vibrate.
------------------------------
email set to xxxx no vibrate
see the sms section above,
HKEY_CURRENT_USER\ControlPanel\Notifications
there are loads of these keys, each one is a notification sound and options.
------------------------------
missed call no alert
see above
ring type set to ring no vibrate
see above
-------------------------------
quiet ring set to ON
pocket ring mode set to ON
couldnt find
-----------------------------
no charge over USB
have a look here
HKEY_LOCAL_MACHINE\Software\HTC\USBToPCPopUP
-----------------------------
set clear type
create the key HKLM\system\gdi\CLEARTYPE
there are no values in this, just create the key to turn on cleartype.
Note that some programs like resco require their own settings.
------------------------------
all the cookies stuff is stored in
HKEY_CURRENT_USER\Software\HTC\Manila
and all the keys start Co0kie.blahblah
hope these help.
thanks man
some of them i managed to find them... most not....
quiet ring set to ON
pocket ring mode set to ON
[HKEY_LOCAL_MACHINE\Software\HTC\PHONE\PhoneExtendSetting]
what about an xml to insert facebook sense credentials?... i found something on the forum in the registry... but it didn't work... it showed as logged in in data services but nu connection actually...
heh, see now you are way ahead of me. I dont back anything up except contacts, and i have a very small registry tweaks cab.
If it isn't in the registry i know nothing about it
samsamuel said:
-------------------------------
camera setings - superfine in pics
tips and tweaks thread
56. Incease Picture Quality of Camera Photos
The following tweak will allow the camera to save images at a less compressed jpeg rate, meaning that the image will be sharper and more detailed.
HKLM\software\htc\camera\image\jpegquaity\superfin e
Replace the 5Msize = 643628 value with 746028
--------------------------------
Click to expand...
Click to collapse
but his won't set super fine as camera setting.... i mean... default the camera shoots in fine mode... i was looking for something to set superfine as default.... this tweak only changes the superfine quality...
Manilla Tabs Order
Hey the location is for tabs is
[HKEY_LOCAL_MACHINE\Software\HTC\Manila\Configuration]
just get everything the way you like than export it and every folder within that will do the trick!
If you have found out anything with xml with facebook email twitter and whatnot let me know i have had trouble with HTCAccountManager reg in this too.
is there a registry to set the default connection to use when connecting to internet?....
when i hard reset the phone it automaticly sets up my connections... like Internet, MMS and WAP... but it sets up the wap as default for connecting the internet.... what is the registry to change this to internet?... so i can use it with sashimi...
aa... btw... facebook cand be backed up with the registry fro htcaccount...
ccezar2004 said:
is there a registry to set the default connection to use when connecting to internet?....
when i hard reset the phone it automaticly sets up my connections... like Internet, MMS and WAP... but it sets up the wap as default for connecting the internet.... what is the registry to change this to internet?... so i can use it with sashimi...
aa... btw... facebook cand be backed up with the registry fro htcaccount...
Click to expand...
Click to collapse
Thanks, ill look around, by the way is there an advantage to changing the default connection? What do you set it at?
as i said i have 3 connection...
orange internet... to navigate the web
orange world... to navigate wap sites
orange mms.... multimedia messaging....
after connection setup the default connection for navigating the web is set to orange world... and i need a reg to modify this to orange internet...
Oh i understand now.. i think i have the soluton!
Correctly Configure your settings
extract GetBinaryFromReg
Connect Phone to computer(Activesync)
run .bat file in GetBinaryFromReg(follow the prompt)
rename RapiConfigOut.xml to _setup.xml
Extract Cabwiz_tools
replace the _setup.xml with the one you just renamed(from GetBinaryFromReg Folder)
Run .bat in cabwiz folder
This should of created a file named regcab.cab
rename it to connections.cab
this will configure your settings when installed!
If your interested in using provisional XML to also backup ur email & wifi password settings to a cab i wrote a post here about it
thanks man... i'll try it... for the email settings i used makisu... will see about wifi...
nice you can take the email settings from the maiksu xml file and then use cabwiz to turn it into a cab if you like also.
does the signature for the email account (exchange) sits in the registry? i'd like to back that up too....

Categories

Resources