Question : How to replace Public Folders since upgrade to Exchange 2010

We currently use Public Folders for all of our meeting rooms within our company. Since we upgraded to Exchange 2010 the management of the public folders is no longer easy and requires the know how of power shell scripts and such.
 We are pursuing an alternative, either SharePoint, or maybe make use of the room mailbox that has been introduced with exchange 2010.

 Does anyone have a recommendation or can point me in the right direction, how is everyone else managing since upgrading?

Best

AB

Answer : How to replace Public Folders since upgrade to Exchange 2010

In Delphi2009 and newer (so yours too), string is no longer 1 byte per char, but multiple bytes.

So, while
var
 ID:  String[10];

Looks like an array of 10 bytes, it's not.

So if you do
  aStream.Read(ID[1], 10);

You read 10 bytes into an array which is longer then 10 bytes. Result is that you don't know what is in the rest of the array. There is probably some crap in there which is interpreted as a string when you try to put it in the edit.
Random Solutions  
 
programming4us programming4us