Click here to Skip to main content
15,881,797 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: Deploying windows applications Pin
Trankil26-Oct-04 1:15
Trankil26-Oct-04 1:15 
GeneralRe: Deploying windows applications Pin
Britnt726-Oct-04 2:07
Britnt726-Oct-04 2:07 
GeneralRe: Deploying windows applications Pin
Steve Maier26-Oct-04 5:35
professionalSteve Maier26-Oct-04 5:35 
GeneralRe: Deploying windows applications Pin
Britnt726-Oct-04 5:39
Britnt726-Oct-04 5:39 
GeneralRe: Deploying windows applications Pin
Steve Maier26-Oct-04 7:27
professionalSteve Maier26-Oct-04 7:27 
GeneralRe: Deploying windows applications Pin
Adnan Siddiqi31-Oct-04 8:43
Adnan Siddiqi31-Oct-04 8:43 
QuestionListView move Up / Down using Index ?? Pin
luckyShek25-Oct-04 8:15
luckyShek25-Oct-04 8:15 
AnswerRe: ListView move Up / Down using Index ?? Pin
Fade (Amit BS)25-Oct-04 17:31
Fade (Amit BS)25-Oct-04 17:31 
It doesn't work becuase.... oh, i'll just show you
The list:

Item1="1"
Item2="2"
Item3="3"

OK?

now lets say you want to move the item at index 2 one step down, your
code does two things, add a new item, and removes the old one, right?
lest do these two steps-
Step 1 - add new item
Item1="1"
Item2="2"
Item3="2"
Item4="3"

Now if we remove item at index 2+1 (item3 now) what do you think will happen?

what you need to do is switchi between the item(index) and item (index+1)
the same thing will work with moving an item upwards - switch item(index) with item(index-1)
it will be a lot faster then using the insert/b> method, trust me Smile | :)

Fade (Amit BS)

GeneralRe: ListView move Up / Down using Index ?? Pin
Anonymous27-Oct-04 7:23
Anonymous27-Oct-04 7:23 
GeneralNT User Login propagate on Remoting Pin
amatyasik25-Oct-04 3:05
amatyasik25-Oct-04 3:05 
GeneralRe: NT User Login propagate on Remoting Pin
Alex Korchemniy25-Oct-04 11:39
Alex Korchemniy25-Oct-04 11:39 
GeneralRe: NT User Login propagate on Remoting Pin
amatyasik25-Oct-04 21:09
amatyasik25-Oct-04 21:09 
GeneralDistributing Dlls written in .Net to VB6 Pin
Fade (Amit BS)24-Oct-04 19:26
Fade (Amit BS)24-Oct-04 19:26 
GeneralRe: Distributing Dlls written in .Net to VB6 Pin
Alex Korchemniy25-Oct-04 11:33
Alex Korchemniy25-Oct-04 11:33 
GeneralRe: Distributing Dlls written in .Net to VB6 Pin
Fade (Amit BS)25-Oct-04 19:19
Fade (Amit BS)25-Oct-04 19:19 
GeneralRe: Distributing Dlls written in .Net to VB6 Pin
Trankil26-Oct-04 1:19
Trankil26-Oct-04 1:19 
GeneralApplets Pin
Srikanth I.24-Oct-04 10:29
Srikanth I.24-Oct-04 10:29 
GeneralRe: Applets Pin
Steven Campbell24-Oct-04 10:43
Steven Campbell24-Oct-04 10:43 
QuestionTcpClient create a memory leak ?!? Pin
Alon Ronen23-Oct-04 5:57
Alon Ronen23-Oct-04 5:57 
AnswerRe: TcpClient create a memory leak ?!? Pin
Fade (Amit BS)25-Oct-04 19:34
Fade (Amit BS)25-Oct-04 19:34 
GeneralSearching for a type in a solution Pin
Dmitriy Shilonosov22-Oct-04 22:13
Dmitriy Shilonosov22-Oct-04 22:13 
GeneralRe: Searching for a type in a solution Pin
Alex Korchemniy25-Oct-04 11:23
Alex Korchemniy25-Oct-04 11:23 
GeneralGroup box text will not display an Ampersand Pin
Tony D. Abel22-Oct-04 13:37
Tony D. Abel22-Oct-04 13:37 
GeneralRe: Group box text will not display an Ampersand Pin
Luis Alonso Ramos22-Oct-04 22:47
Luis Alonso Ramos22-Oct-04 22:47 
GeneralRe: Group box text will not display an Ampersand Pin
Anonymous23-Oct-04 2:43
Anonymous23-Oct-04 2:43 

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.