Ask Question Forum:
Model Library:2025-02-08 Updated:A.I. model is online for auto reply question page
C
O
M
P
U
T
E
R
2
8
Show
#
ASK
RECENT
←
- Underline
- Bold
- Italic
- Indent
- Step
- Bullet
- Quote
- Cut
- Copy
- Paste
- Table
- Spelling
- Find & Replace
- Undo
- Redo
- Link
- Attach
- Clear
- Code
Below area will not be traslated by Google,you can input code or other languages
Hint:If find spelling error, You need to correct it,1 by 1 or ignore it (code area won't be checked).
X-position of the mouse cursor
Y-position of the mouse cursor
Y-position of the mouse cursor
Testcursor
caretPos
Attachment:===
Asked by johngoodger
at 2024-12-01 17:06:57
Point:150 Replies:12 POST_ID:828861USER_ID:11773
Topic:
Microsoft Applications;;Apple Software
I would like to be able to convert all ( 400+ ) Contacts on my PC to VCF files to add to my iMAC / iCloud Address book.
I can do them individually but I wish to do a bulk conversion.
I can do them individually but I wish to do a bulk conversion.
Author: johngoodger replied at 2024-12-02 14:42:58
Works well and so does
http://www.littlemachines.com/download.php?lm=1386023164
http://www.littlemachines.com/download.php?lm=1386023164
Author: johngoodger replied at 2024-12-02 14:40:50
I also found a low cost application that does the job very well
http://www.littlemachines.com/download.php?lm=1386023164
Little machines O2M
http://www.littlemachines.com/download.php?lm=1386023164
Little machines O2M
Author: johngoodger replied at 2024-12-02 13:28:37
So sorry I now see the Basic package is free
Author: johngoodger replied at 2024-12-02 13:25:35
Oh - I only saw a monthly fee on their website
Expert: polanco_moyce replied at 2024-12-02 12:38:22
It is free unless you want VIP support.
Author: johngoodger replied at 2024-12-02 12:30:30
Plaxo looks good but I want a cost free solution
Accepted Solution
Expert: polanco_moyce replied at 2024-12-02 11:59:05
150 points GOOD
Go to http://www.plaxo.com
I have been using that service for more than a decade to keep my contacts synchronized and backed up. I Use it to sync to my PC/Mac/iPhone/iPad.
I have been using that service for more than a decade to keep my contacts synchronized and backed up. I Use it to sync to my PC/Mac/iPhone/iPad.
Author: johngoodger replied at 2024-12-02 11:40:22
I have never heard of Plaxo but it sounds like it might be right for me?
Any more on Plaxo appreciated
Any more on Plaxo appreciated
Expert: polanco_moyce replied at 2024-12-02 09:30:21
I use Plaxo to sync my Mac Address Book and my Outlook 2010 contacts. Check that option. That way you do not have to do any export/import. Works!
Expert: Dan Craciun replied at 2024-12-01 21:30:18
You can install Thunderbird with the MoreFunctionsForAddressBook add-on, import automatically your Outlook contacts and then export them as vcf (Address Book->right click Imported Contacts->More Functions for Address Book->Export->As vCard)
No script needed...
HTH,
Dan
No script needed...
HTH,
Dan
Expert: Rob Jurd replied at 2024-12-01 20:48:15
Expert: duncanb7 replied at 2024-12-01 19:50:13
Probably, you need to do it on VBA instead of doing manually convert
outlook contacts into vcf format.
And the following code is just providing your starting since that might have
a lot of issue caused by different system. You need to solve & debug it by yourself
Hope understand your question completely.If not , please pt it out
Duncan
outlook contacts into vcf format.
And the following code is just providing your starting since that might have
a lot of issue caused by different system. You need to solve & debug it by yourself
Hope understand your question completely.If not , please pt it out
Duncan
'Option ExplicitSub Export_PAB_to_vcfs()Dim myOlApp As Outlook.ApplicationDim objContact As ContactItemSet myOlApp = New Outlook.ApplicationSet olns = myOlApp.GetNamespace("MAPI")' Set MyFolder to the default contacts folder.Set myFolder1 = olns.Folders("Sean O'Reilly")Set myfolder = myFolder1.Folders("Contacts")' Get the number of items in the folder.NumItems = myfolder.Items.Count' Loop through all of the items in the folder.For i = 1 To NumItems Debug.Print myfolder.Items(i).Class If myfolder.Items(i).Class = 40 Then Set objContact = myfolder.Items(i) Debug.Print TypeName(objContact) + ":" + objContact.FullName If Not TypeName(objContact) = "Nothing" Then If Not objContact.FullName = "" Then strname = "H:PersonalContacts" & TrimALL(objContact.FullName) & ".vcf" objContact.SaveAs strname, olVCard End If End If End IfNextMsgBox "All Contacts Exported!"End SubSub TrimALL()' need to trim all non-printable charEnd Sub 1:2:3:4:5:6:7:8:9:10:11:12:13:14:15:16:17:18:19:20:21:22:23:24:25:26:27:28:29:30:31:32:33:34:35:36:37:38:39:40:41: