Click here to Skip to main content
15,897,151 members
Home / Discussions / C#
   

C#

 
GeneralRe: Running an exe Pin
Richard MacCutchan22-Jan-13 7:15
mveRichard MacCutchan22-Jan-13 7:15 
AnswerRe: Running an exe Pin
jschell22-Jan-13 8:09
jschell22-Jan-13 8:09 
AnswerRe: Running an exe Pin
Joe Woodbury22-Jan-13 10:14
professionalJoe Woodbury22-Jan-13 10:14 
GeneralRe: Running an exe Pin
PozzaVecia22-Jan-13 10:50
PozzaVecia22-Jan-13 10:50 
GeneralRe: Running an exe Pin
Jibesh22-Jan-13 14:50
professionalJibesh22-Jan-13 14:50 
GeneralRe: Running an exe Pin
PozzaVecia22-Jan-13 18:55
PozzaVecia22-Jan-13 18:55 
GeneralRe: Running an exe Pin
Jibesh22-Jan-13 19:25
professionalJibesh22-Jan-13 19:25 
QuestionDrag items to Listview Pin
jenya722-Jan-13 4:01
jenya722-Jan-13 4:01 
Hi All,
I have a ListView with 3 groups.
I drag an item from TreeView to ListView:
C#
private void listViewDemo_DragDrop(object sender, DragEventArgs e)
{
    if (!is_listview) //treeview item
    {
        //get a text of a draged item
        string str = e.Data.GetData(DataFormats.Text).ToString();
        //get information about hovered item
        ListViewHitTestInfo hit_info = listViewDemo.HitTest(listViewDemo.PointToClient(new Point(e.X, e.Y)));
        //check position - must be on an item
        if (hit_info.Location == ListViewHitTestLocations.None) return;
        ListViewItem prev_item = hit_info.Item;
        ListViewGroup group = prev_item.Group;
        int idx = prev_item.Index;
        //create a new key
        Guid key = Guid.NewGuid();
        string item_key = key.ToString();
        //create a new item
        //option 1
        group.Items.Add(listViewDemo.Items.Insert(idx,item_key, str, ""));
        //option2
        //group.Items.Insert(idx,listViewDemo.Items.Insert(idx, item_key, str, ""));
    }
}

I expect to add an item in place of pointed item, but any option adds element in the end of the group.
How can i add the item in the spot where mouse hover?
AnswerRe: Drag items to Listview Pin
BobJanova22-Jan-13 22:49
BobJanova22-Jan-13 22:49 
QuestionHow to call a "Windows Form Application" in a "Windows Service"? Pin
DaKhucBuon22-Jan-13 1:40
DaKhucBuon22-Jan-13 1:40 
AnswerRe: How to call a "Windows Form Application" in a "Windows Service"? Pin
PIEBALDconsult22-Jan-13 2:21
mvePIEBALDconsult22-Jan-13 2:21 
AnswerRe: How to call a "Windows Form Application" in a "Windows Service"? Pin
Dave Kreskowiak22-Jan-13 2:27
mveDave Kreskowiak22-Jan-13 2:27 
AnswerMessage Removed Pin
22-Jan-13 3:34
professionalN_tro_P22-Jan-13 3:34 
GeneralRe: How to call a "Windows Form Application" in a "Windows Service"? Pin
DaKhucBuon22-Jan-13 13:56
DaKhucBuon22-Jan-13 13:56 
GeneralRe: How to call a "Windows Form Application" in a "Windows Service"? Pin
PIEBALDconsult22-Jan-13 15:50
mvePIEBALDconsult22-Jan-13 15:50 
AnswerRe: How to call a "Windows Form Application" in a "Windows Service"? Pin
DaKhucBuon23-Jan-13 15:59
DaKhucBuon23-Jan-13 15:59 
Question(solved) grab selected text from anywhere Pin
msickel21-Jan-13 23:34
msickel21-Jan-13 23:34 
AnswerRe: grab selected text from anywhere Pin
Richard MacCutchan21-Jan-13 23:59
mveRichard MacCutchan21-Jan-13 23:59 
AnswerRe: grab selected text from anywhere Pin
SledgeHammer0122-Jan-13 4:53
SledgeHammer0122-Jan-13 4:53 
AnswerRe: grab selected text from anywhere Pin
Ravi Bhavnani22-Jan-13 10:20
professionalRavi Bhavnani22-Jan-13 10:20 
GeneralRe: grab selected text from anywhere Pin
msickel23-Jan-13 0:58
msickel23-Jan-13 0:58 
QuestionSocket chat client & Server help Pin
Dioblos21-Jan-13 11:52
Dioblos21-Jan-13 11:52 
AnswerRe: Socket chat client & Server help Pin
Eddy Vluggen21-Jan-13 13:00
professionalEddy Vluggen21-Jan-13 13:00 
GeneralRe: Socket chat client & Server help Pin
Dioblos21-Jan-13 13:24
Dioblos21-Jan-13 13:24 
GeneralRe: Socket chat client & Server help Pin
Eddy Vluggen21-Jan-13 13:37
professionalEddy Vluggen21-Jan-13 13:37 

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.