Search found 3 matches

by stevo3463
Tue Oct 02, 2007 4:24 pm
Forum: Modding Discussion
Topic: Halo 3 Retail Game Research
Replies: 673
Views: 198790

Thanks

Thanks Anthony for your help! :D
by stevo3463
Mon Jul 02, 2007 12:01 pm
Forum: Programming
Topic: How do you make an open file dialog?
Replies: 13
Views: 1480

assuming you know C# 1.) Drag over an open file dialog from containers and menus in the toolbatr in C#. 2.) Double click your open event and copy n paste this code to open a .map file. OpenFileDialog OFD = new OpenFileDialog(); OFD.Filter = "Map(*.map)|*.map"; OFD.FilterIndex = 1; if (OFD....
by stevo3463
Mon Jul 02, 2007 11:52 am
Forum: Programming
Topic: having favorites to a webbrowser i made
Replies: 6
Views: 1121

if you know how to load text into a treeview do that from your resources.

if not then read up on treeviews

codeproject.com

im C# but i think they have VB stuff in there too