Visual Studio 2005For discussing Visual Studio 2005. Please post code questions about a specific language (C#, VB, ASP.NET, etc) in the correct language forum instead.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the Visual Studio 2005 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
if want add fixed text to list:
write the following code
listBox1.Item.add("haytham")
if want add unfixed text to list :
write the following code
dim a as string
a=textBox1.text
listBox1.Item.add(a)
Last edited by haytham tahrawi; March 2nd, 2009 at 03:23 PM..