A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook and VBA
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Custom .vcs file: Problem with unicode characters



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old January 8th 08, 10:46 AM posted to microsoft.public.outlook.calendaring,microsoft.public.outlook.program_vba,microsoft.public.office.developer.outlook.vba
Vassilis
external usenet poster
 
Posts: 10
Default Custom .vcs file: Problem with unicode characters

Hi,

I'm using vbscript to create custom calendar entries (.vcs files). This was
working perfectly on outlook 2003 but on the .vcs files of outlook 2007 it
has different format. I managed to break it down and understand how it works
but I have big problem with Greek characters (Unicode)...

Inside the .vcs file the characters are displayed like this
"=0D=0A=E5=EB=EB=E7=ED=E9=EA=DC=0D=0A=0"
I also see a new field "ENCODING=QUOTED-PRINTABLE:"

Keep in mind that if I create a new calendar item though outlook it displays
correctly...when I save this as .vcs and open it with notepad I get the
garbage characters.

What do I need to change/add on the custom .vcs to recognize Unicode
characters so I can create manually .vcs files ???

thank you

Regards,
Vassilis



Ads
  #2  
Old January 8th 08, 05:03 PM posted to microsoft.public.outlook.calendaring,microsoft.public.outlook.program_vba,microsoft.public.office.developer.outlook.vba
Dmitry Streblechenko
external usenet poster
 
Posts: 2,116
Default Custom .vcs file: Problem with unicode characters

You need to encode the Unicode characters correctly?

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Vassilis" wrote in message
...
Hi,

I'm using vbscript to create custom calendar entries (.vcs files). This
was working perfectly on outlook 2003 but on the .vcs files of outlook
2007 it has different format. I managed to break it down and understand
how it works but I have big problem with Greek characters (Unicode)...

Inside the .vcs file the characters are displayed like this
"=0D=0A=E5=EB=EB=E7=ED=E9=EA=DC=0D=0A=0"
I also see a new field "ENCODING=QUOTED-PRINTABLE:"

Keep in mind that if I create a new calendar item though outlook it
displays correctly...when I save this as .vcs and open it with notepad I
get the garbage characters.

What do I need to change/add on the custom .vcs to recognize Unicode
characters so I can create manually .vcs files ???

thank you

Regards,
Vassilis





  #3  
Old January 9th 08, 01:51 PM posted to microsoft.public.outlook.calendaring,microsoft.public.outlook.program_vba,microsoft.public.office.developer.outlook.vba
Vassilis
external usenet poster
 
Posts: 10
Default Custom .vcs file: Problem with unicode characters

what do you mean ??
i'm exporting text from an excel line though vbscript to a text file, the
file works with outlook 2003 but on outlook 2007 i get strange symbols
instead of letters.
how do i encode them correctly ?

"Dmitry Streblechenko" wrote in message
...
You need to encode the Unicode characters correctly?

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Vassilis" wrote in message
...
Hi,

I'm using vbscript to create custom calendar entries (.vcs files). This
was working perfectly on outlook 2003 but on the .vcs files of outlook
2007 it has different format. I managed to break it down and understand
how it works but I have big problem with Greek characters (Unicode)...

Inside the .vcs file the characters are displayed like this
"=0D=0A=E5=EB=EB=E7=ED=E9=EA=DC=0D=0A=0"
I also see a new field "ENCODING=QUOTED-PRINTABLE:"

Keep in mind that if I create a new calendar item though outlook it
displays correctly...when I save this as .vcs and open it with notepad I
get the garbage characters.

What do I need to change/add on the custom .vcs to recognize Unicode
characters so I can create manually .vcs files ???

thank you

Regards,
Vassilis







  #4  
Old January 9th 08, 09:34 PM posted to microsoft.public.outlook.calendaring,microsoft.public.outlook.program_vba,microsoft.public.office.developer.outlook.vba
Dmitry Streblechenko
external usenet poster
 
Posts: 2,116
Default Custom .vcs file: Problem with unicode characters

I mean that your code must check whether you have Unicode characters and
encode them using quoted-printable encoding.

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Vassilis" wrote in message
...
what do you mean ??
i'm exporting text from an excel line though vbscript to a text file, the
file works with outlook 2003 but on outlook 2007 i get strange symbols
instead of letters.
how do i encode them correctly ?

"Dmitry Streblechenko" wrote in message
...
You need to encode the Unicode characters correctly?

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Vassilis" wrote in message
...
Hi,

I'm using vbscript to create custom calendar entries (.vcs files). This
was working perfectly on outlook 2003 but on the .vcs files of outlook
2007 it has different format. I managed to break it down and understand
how it works but I have big problem with Greek characters (Unicode)...

Inside the .vcs file the characters are displayed like this
"=0D=0A=E5=EB=EB=E7=ED=E9=EA=DC=0D=0A=0"
I also see a new field "ENCODING=QUOTED-PRINTABLE:"

Keep in mind that if I create a new calendar item though outlook it
displays correctly...when I save this as .vcs and open it with notepad I
get the garbage characters.

What do I need to change/add on the custom .vcs to recognize Unicode
characters so I can create manually .vcs files ???

thank you

Regards,
Vassilis









  #5  
Old January 10th 08, 07:30 AM posted to microsoft.public.outlook.calendaring,microsoft.public.outlook.program_vba,microsoft.public.office.developer.outlook.vba
Vassilis
external usenet poster
 
Posts: 10
Default Custom .vcs file: Problem with unicode characters

i never heard of this
how do i encode them using quoted-printable encoding ?
is there a procedure for that ?

thank you for your replies

"Dmitry Streblechenko" wrote in message
...
I mean that your code must check whether you have Unicode characters and
encode them using quoted-printable encoding.

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Vassilis" wrote in message
...
what do you mean ??
i'm exporting text from an excel line though vbscript to a text file, the
file works with outlook 2003 but on outlook 2007 i get strange symbols
instead of letters.
how do i encode them correctly ?

"Dmitry Streblechenko" wrote in message
...
You need to encode the Unicode characters correctly?

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Vassilis" wrote in message
...
Hi,

I'm using vbscript to create custom calendar entries (.vcs files). This
was working perfectly on outlook 2003 but on the .vcs files of outlook
2007 it has different format. I managed to break it down and understand
how it works but I have big problem with Greek characters (Unicode)...

Inside the .vcs file the characters are displayed like this
"=0D=0A=E5=EB=EB=E7=ED=E9=EA=DC=0D=0A=0"
I also see a new field "ENCODING=QUOTED-PRINTABLE:"

Keep in mind that if I create a new calendar item though outlook it
displays correctly...when I save this as .vcs and open it with notepad
I get the garbage characters.

What do I need to change/add on the custom .vcs to recognize Unicode
characters so I can create manually .vcs files ???

thank you

Regards,
Vassilis











  #6  
Old January 10th 08, 08:23 PM posted to microsoft.public.outlook.calendaring,microsoft.public.outlook.program_vba,microsoft.public.office.developer.outlook.vba
Dmitry Streblechenko
external usenet poster
 
Posts: 2,116
Default Custom .vcs file: Problem with unicode characters

It all depends on your programming language.
A quick Google search returns a quite a few hits:
http://www.google.com/search?hl=en&q...y+visual+basic

QP encoding is used when working with the MIME messages in any way - I would
imagine all POP3 or SMTP libraries support ir.

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Vassilis" wrote in message
...
i never heard of this
how do i encode them using quoted-printable encoding ?
is there a procedure for that ?

thank you for your replies

"Dmitry Streblechenko" wrote in message
...
I mean that your code must check whether you have Unicode characters and
encode them using quoted-printable encoding.

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Vassilis" wrote in message
...
what do you mean ??
i'm exporting text from an excel line though vbscript to a text file,
the file works with outlook 2003 but on outlook 2007 i get strange
symbols instead of letters.
how do i encode them correctly ?

"Dmitry Streblechenko" wrote in message
...
You need to encode the Unicode characters correctly?

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Vassilis" wrote in message
...
Hi,

I'm using vbscript to create custom calendar entries (.vcs files).
This was working perfectly on outlook 2003 but on the .vcs files of
outlook 2007 it has different format. I managed to break it down and
understand how it works but I have big problem with Greek characters
(Unicode)...

Inside the .vcs file the characters are displayed like this
"=0D=0A=E5=EB=EB=E7=ED=E9=EA=DC=0D=0A=0"
I also see a new field "ENCODING=QUOTED-PRINTABLE:"

Keep in mind that if I create a new calendar item though outlook it
displays correctly...when I save this as .vcs and open it with notepad
I get the garbage characters.

What do I need to change/add on the custom .vcs to recognize Unicode
characters so I can create manually .vcs files ???

thank you

Regards,
Vassilis













  #7  
Old January 11th 08, 07:37 AM posted to microsoft.public.outlook.calendaring,microsoft.public.outlook.program_vba,microsoft.public.office.developer.outlook.vba
Vassilis
external usenet poster
 
Posts: 10
Default Custom .vcs file: Problem with unicode characters

ok thank you, i will take a look at the search results.
thank you for your help

"Dmitry Streblechenko" wrote in message
...
It all depends on your programming language.
A quick Google search returns a quite a few hits:
http://www.google.com/search?hl=en&q...y+visual+basic

QP encoding is used when working with the MIME messages in any way - I
would imagine all POP3 or SMTP libraries support ir.

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Vassilis" wrote in message
...
i never heard of this
how do i encode them using quoted-printable encoding ?
is there a procedure for that ?

thank you for your replies

"Dmitry Streblechenko" wrote in message
...
I mean that your code must check whether you have Unicode characters and
encode them using quoted-printable encoding.

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Vassilis" wrote in message
...
what do you mean ??
i'm exporting text from an excel line though vbscript to a text file,
the file works with outlook 2003 but on outlook 2007 i get strange
symbols instead of letters.
how do i encode them correctly ?

"Dmitry Streblechenko" wrote in message
...
You need to encode the Unicode characters correctly?

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Vassilis" wrote in message
...
Hi,

I'm using vbscript to create custom calendar entries (.vcs files).
This was working perfectly on outlook 2003 but on the .vcs files of
outlook 2007 it has different format. I managed to break it down and
understand how it works but I have big problem with Greek characters
(Unicode)...

Inside the .vcs file the characters are displayed like this
"=0D=0A=E5=EB=EB=E7=ED=E9=EA=DC=0D=0A=0"
I also see a new field "ENCODING=QUOTED-PRINTABLE:"

Keep in mind that if I create a new calendar item though outlook it
displays correctly...when I save this as .vcs and open it with
notepad I get the garbage characters.

What do I need to change/add on the custom .vcs to recognize Unicode
characters so I can create manually .vcs files ???

thank you

Regards,
Vassilis















  #8  
Old January 16th 08, 07:51 AM posted to microsoft.public.outlook.calendaring,microsoft.public.outlook.program_vba,microsoft.public.office.developer.outlook.vba
Vassilis
external usenet poster
 
Posts: 10
Default Custom .vcs file: Problem with unicode characters

I finally got a pretty easy solution.
The .vcs file needs to be saved as UTF-8 and not as ANSI or UNICODE.


"Vassilis" wrote in message
...
Hi,

I'm using vbscript to create custom calendar entries (.vcs files). This
was working perfectly on outlook 2003 but on the .vcs files of outlook
2007 it has different format. I managed to break it down and understand
how it works but I have big problem with Greek characters (Unicode)...

Inside the .vcs file the characters are displayed like this
"=0D=0A=E5=EB=EB=E7=ED=E9=EA=DC=0D=0A=0"
I also see a new field "ENCODING=QUOTED-PRINTABLE:"

Keep in mind that if I create a new calendar item though outlook it
displays correctly...when I save this as .vcs and open it with notepad I
get the garbage characters.

What do I need to change/add on the custom .vcs to recognize Unicode
characters so I can create manually .vcs files ???

thank you

Regards,
Vassilis





 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Identifying ANSI or Unicode PST File - Programmatically [email protected] Outlook - General Queries 0 July 27th 07 06:09 AM
Custom Maintenance Wizard and Unicode PST file AJ Outlook - General Queries 0 June 6th 07 10:00 PM
Displaying Unicode characters in MAPI Address Book [email protected] Outlook - General Queries 1 December 20th 06 09:23 PM
Problem wrapping unicode PST Chuck Bohling Add-ins for Outlook 0 June 26th 06 11:29 PM
Unicode characters in Folder's name Ismael Bejarano Add-ins for Outlook 4 June 22nd 06 07:05 PM


All times are GMT +1. The time now is 10:49 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.