Click here to Skip to main content
15,914,111 members
Home / Discussions / C#
   

C#

 
GeneralRe: Sharing a config file Pin
Colin Angus Mackay4-Jun-04 9:37
Colin Angus Mackay4-Jun-04 9:37 
GeneralRe: Sharing a config file Pin
Heath Stewart3-Jun-04 6:10
protectorHeath Stewart3-Jun-04 6:10 
GeneralRe: Sharing a config file Pin
Andy *M*3-Jun-04 6:25
Andy *M*3-Jun-04 6:25 
GeneralRe: Sharing a config file Pin
Heath Stewart3-Jun-04 6:43
protectorHeath Stewart3-Jun-04 6:43 
GeneralRe: Sharing a config file Pin
Andy *M*3-Jun-04 22:11
Andy *M*3-Jun-04 22:11 
GeneralRe: Sharing a config file Pin
Heath Stewart4-Jun-04 4:03
protectorHeath Stewart4-Jun-04 4:03 
General"scrolling" old listbox items off the bottom when a new one is added to the top... Pin
xylophile3-Jun-04 5:01
xylophile3-Jun-04 5:01 
GeneralRe: "scrolling" old listbox items off the bottom when a new one is added to the top... Pin
Dave Kreskowiak3-Jun-04 5:17
mveDave Kreskowiak3-Jun-04 5:17 
You should be able to use
ListBox1.Items.Insert(0, "MyNewItemGoesHere")
Try
    ListBox1.Items.RemoveAt(25)
Catch
End Try

The Try catch block is in there because I don't know what would happen if you tried to RemoveAt an index that didn't exist yet.


RageInTheMachine9532
"...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome

GeneralRe: "scrolling" old listbox items off the bottom when a new one is added to the top... Pin
Heath Stewart3-Jun-04 6:11
protectorHeath Stewart3-Jun-04 6:11 
GeneralRe: "scrolling" old listbox items off the bottom when a new one is added to the top... Pin
Dave Kreskowiak3-Jun-04 6:42
mveDave Kreskowiak3-Jun-04 6:42 
GeneralRe: "scrolling" old listbox items off the bottom when a new one is added to the top... Pin
Heath Stewart3-Jun-04 6:54
protectorHeath Stewart3-Jun-04 6:54 
GeneralRe: "scrolling" old listbox items off the bottom when a new one is added to the top... Pin
Dave Kreskowiak3-Jun-04 7:17
mveDave Kreskowiak3-Jun-04 7:17 
GeneralRe: "scrolling" old listbox items off the bottom when a new one is added to the top... Pin
Heath Stewart3-Jun-04 7:22
protectorHeath Stewart3-Jun-04 7:22 
GeneralRe: "scrolling" old listbox items off the bottom when a new one is added to the top... Pin
Dave Kreskowiak3-Jun-04 7:25
mveDave Kreskowiak3-Jun-04 7:25 
GeneralRe: "scrolling" old listbox items off the bottom when a new one is added to the top... Pin
Dave Kreskowiak3-Jun-04 6:39
mveDave Kreskowiak3-Jun-04 6:39 
GeneralSimple (I think) Inheritance question Pin
Guinness4Strength3-Jun-04 4:43
Guinness4Strength3-Jun-04 4:43 
GeneralRe: Simple (I think) Inheritance question Pin
Judah Gabriel Himango3-Jun-04 5:59
sponsorJudah Gabriel Himango3-Jun-04 5:59 
GeneralRe: Simple (I think) Inheritance question Pin
Heath Stewart3-Jun-04 6:02
protectorHeath Stewart3-Jun-04 6:02 
GeneralRe: Simple (I think) Inheritance question Pin
Guinness4Strength3-Jun-04 6:04
Guinness4Strength3-Jun-04 6:04 
GeneralRe: Simple (I think) Inheritance question Pin
Dave Kreskowiak3-Jun-04 6:07
mveDave Kreskowiak3-Jun-04 6:07 
GeneralRe: Simple (I think) Inheritance question Pin
BrcKcc3-Jun-04 6:24
BrcKcc3-Jun-04 6:24 
GeneralRe: Simple (I think) Inheritance question Pin
Guinness4Strength3-Jun-04 9:31
Guinness4Strength3-Jun-04 9:31 
GeneralRe: Simple (I think) Inheritance question Pin
Dave Kreskowiak3-Jun-04 9:39
mveDave Kreskowiak3-Jun-04 9:39 
GeneralRe: Simple (I think) Inheritance question Pin
Guinness4Strength3-Jun-04 9:45
Guinness4Strength3-Jun-04 9:45 
GeneralRe: Simple (I think) Inheritance question Pin
Dave Kreskowiak3-Jun-04 10:07
mveDave Kreskowiak3-Jun-04 10:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.