Thomas,
Technically the auto complete control does not expose a method for doing this, but if you look through the unit tests that came with the toolkit (AutoCompleteBoxTest.cs), you'll see that those do exactly what you are looking to do.
The process is:
1. Step into the visual tree to find the TextBox that is part of the auto complete control
2. Programatically set the Text dependency property value on the TextBox (not auto complete box) to your value ("z")
That should work just fine. Let me know if you need help locating the test or getting this working.
-Jeff
Jeff Wilcox [MSFT]
Software Development Engineer
Silverlight
http://www.jeff.wilcox.name/blog/
This posting is provided "AS IS" with no warranties, and confers no rights.