Halo 2 Header information displaying in ListBox

Post here about scripting and programming for HaloPC (audio, network, ai, etc.)
Post Reply
User avatar
Eaton




Enthraller

Posts: 1639
Joined: Thu Jun 14, 2007 4:16 pm
Location: USA

Halo 2 Header information displaying in ListBox

Post by Eaton »

I have a good header class and have successfully made header information appear through labels, but I want to try a list box. I know that it is probably easy, but I just don't know the code to make the information appear in the list box. How can I make it appear?
Image
conure




Enthraller Articulatist 250

Posts: 365
Joined: Sun Apr 17, 2005 8:37 pm
Contact:

Post by conure »

It is generally helpful to know what programing language you are asking for help in......

Edit: Opps, i missed the reference to header files.
Last edited by conure on Fri Aug 15, 2008 7:34 am, edited 1 time in total.
Halomods member wrote:tags meta? There is no such thing for Halo PC.
OwnZ joO




Articulatist 500

Posts: 980
Joined: Thu Nov 10, 2005 4:24 pm

Post by OwnZ joO »

With h being your header object and lst being your listbox, I would recommend something along the lines of:

Code: Select all

lst.Items.Add("Header Value: " + h.Value);
...
User avatar
Eaton




Enthraller

Posts: 1639
Joined: Thu Jun 14, 2007 4:16 pm
Location: USA

Post by Eaton »

conure wrote:It is generally helpful to know what programing language you are asking for help in......

Edit: Opps, i missed the reference to header files.
Oops. I am programming in C#.
OwnZ joO wrote:With h being your header object and lst being your listbox, I would recommend something along the lines of:

Code: Select all

lst.Items.Add("Header Value: " + h.Value);
...
Well, that code doesn't seem to be working for me... :x
Image
User avatar
grimdoomer




System Engineer

Posts: 1440
Joined: Mon Oct 09, 2006 4:36 pm

Post by grimdoomer »

Try this:

Code: Select all

listView1.Items.Add("Name Of Value - " + map.Header.Value.ToString());
[/code]
Image
AI Zones in MP | Ambiance | Gravemind Beta v1.1
Aumaan Anubis wrote:Grimdoomer. The first person ever to mod Halo 2 Vista.
User avatar
Eaton




Enthraller

Posts: 1639
Joined: Thu Jun 14, 2007 4:16 pm
Location: USA

Post by Eaton »

Thank you Grim! :D Works perfectly.
Image
Post Reply