How to make a listbox scroll horizontally

c#, listbox, winforms

Solution

listbox.HorizontalScrollbar = true;

Problem

I have a listbox that contains a long string. The beginning is not all that relevant for the user which is why I'd like to make the listbox scroll automatically programatically to the right. You can scroll to the last item vertically but I've not yet found a way to simulate the user scroll to the right. Any ideas?

Original source