Click here to Skip to main content
15,890,043 members
Home / Discussions / C#
   

C#

 
GeneralRe: Running Application In Another Process Without Showing Console Window Pin
Kannan Kalyanaraman9-Dec-02 22:47
Kannan Kalyanaraman9-Dec-02 22:47 
GeneralRe: Running Application In Another Process Without Showing Console Window Pin
Richard Deeming10-Dec-02 0:03
mveRichard Deeming10-Dec-02 0:03 
GeneralProblem with arraylist assignment Pin
djkno39-Dec-02 13:59
djkno39-Dec-02 13:59 
GeneralRe: Problem with arraylist assignment Pin
Rob Graham9-Dec-02 14:58
Rob Graham9-Dec-02 14:58 
GeneralRe: Problem with arraylist assignment Pin
djkno39-Dec-02 21:18
djkno39-Dec-02 21:18 
GeneralRe: Problem with arraylist assignment Pin
Burt Harris9-Dec-02 21:42
Burt Harris9-Dec-02 21:42 
GeneralRe: Problem with arraylist assignment Pin
James T. Johnson10-Dec-02 0:58
James T. Johnson10-Dec-02 0:58 
GeneralRe: Problem with arraylist assignment Pin
Richard Deeming10-Dec-02 0:13
mveRichard Deeming10-Dec-02 0:13 
Rectangle is a struct, so that probably won't work anyway, since you're changing the coordinates of an unboxed copy of your rectangle. Try something like:
for (i = mySquares.Count - 1; i > 0; i--)
{
    mySquares[i] = new Rectangle(
        ((Rectangle)mySquares[i-1]).Location,
        ((Rectangle)mySquares[i]).Size);
}



"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
GeneralRe: Problem with arraylist assignment Pin
djkno310-Dec-02 6:11
djkno310-Dec-02 6:11 
Generalgoto in C# Pin
afronaut9-Dec-02 11:05
afronaut9-Dec-02 11:05 
GeneralRe: goto in C# Pin
leppie9-Dec-02 11:30
leppie9-Dec-02 11:30 
GeneralRe: goto in C# Pin
Not Active9-Dec-02 13:14
mentorNot Active9-Dec-02 13:14 
GeneralRe: goto in C# Pin
ryancrawcour9-Dec-02 20:06
ryancrawcour9-Dec-02 20:06 
GeneralRe: goto in C# Pin
Christian Graus9-Dec-02 21:59
protectorChristian Graus9-Dec-02 21:59 
GeneralGet system information Pin
sammyh9-Dec-02 10:10
sammyh9-Dec-02 10:10 
GeneralRe: Get system information Pin
Kannan Kalyanaraman9-Dec-02 22:50
Kannan Kalyanaraman9-Dec-02 22:50 
GeneralRe: Get system information Pin
thematt10-Dec-02 2:41
thematt10-Dec-02 2:41 
GeneralRe: Get system information Pin
sammyh11-Dec-02 5:50
sammyh11-Dec-02 5:50 
GeneralScrolling Credits Pin
OBRon9-Dec-02 9:46
OBRon9-Dec-02 9:46 
Generalnull strings Pin
grv5759-Dec-02 7:33
grv5759-Dec-02 7:33 
GeneralRe: null strings Pin
peterchen9-Dec-02 7:59
peterchen9-Dec-02 7:59 
GeneralRe: null strings Pin
Richard Deeming10-Dec-02 0:15
mveRichard Deeming10-Dec-02 0:15 
GeneralRe: null strings Pin
Erik Doernenburg11-Dec-02 2:54
Erik Doernenburg11-Dec-02 2:54 
GeneralRe: null strings Pin
grv57513-Dec-02 4:19
grv57513-Dec-02 4:19 
GeneralRichtextBox Pin
trones9-Dec-02 5:48
trones9-Dec-02 5:48 

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.