Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
T

takkung

@takkung
About
Posts
9
Topics
6
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • If I want to develop Simple Report Designer to integrated to VS.NET.
    T takkung

    Hi I want to start develop my own simple Report Designer for VS.NET for some reasons. But I don't know where to start. I want to know can I use C# to build it or I need to write C++? Where can I find some starting information? Thank you.

    Visual Studio csharp c++ visual-studio question

  • How to merge table cells using mshtml
    T takkung

    I 've created my html editor and now I want it can merge selected table cells. I use HtmlSelection.createRange() to get HtmlTextRange then use HtmlTextRange.pasteHTML to replace cells' html but it do not work. Can anyone suggest me some code to do this?

    C# html tutorial question

  • How to get all IMG Tags from local HTML File to edit src properties?
    T takkung

    I want to get all img tags from local html file to edit src properties? Can I use mshtml to do this? Please suggest me some codes. Thank you.

    C# html tutorial question

  • C# Browser and Click link Event Handler
    T takkung

    Thank you very much. But my main problem is not how to create browser, it's how can I pop my windows form up when a link is clicked.

    C# csharp help question

  • C# Browser and Click link Event Handler
    T takkung

    I'd like to create my own c# browser to display my own pages with some links. Then I want my browser to popup my C# Window form when I click a link. Please help me how can I like this.

    C# csharp help question

  • UrlEncode in Windows Form
    T takkung

    I want to encode some url parameter in my Windows Form Application but I can't use System.Web.HttpServerUtility or System.Web.HttpUtility from my application. Please help me.

    C# help

  • ListView Item Selection
    T takkung

    I 've already set ListView.HideSelect = false but it can't preserve the highlighting. I think because when I select an item and push move up/down button the items in ListView.Items has changed and ListView Control will be repaint so the highlighting will disappear. The problem is I want the highlighting is preserve at the selected item event through it has moved up or down. In ListBox control there 's SetSelected method to select an item to highlight but in ListView Control there is no such method. Thank you very much.

    C# question help

  • ListView Item Selection
    T takkung

    I already set ListView.HideSelection but I can't presserve highlighting from a selected item. I think when I select an item and I push Move Up button then the listview control need to be repaint the control because the items in the listview control has changed so the highlighting will be disappear. The problem is how can I preserve the highlighting at the item that I 've moved up or moved down so I can continue to move that item up or down again and so on. In Listbox control there 's SetSelected method so it can highlight the moved up/down item but in ListView it doesn't have SetSelected method. this is my code( Move up button click event handler ) int curIndex = this.listSelectedSongs.Items.IndexOf(listSelectedSongs.SelectedItems[0]); ListViewItem aboveTmpItem = (ListViewItem)this.listSelectedSongs.Items[curIndex-1].Clone(); ListViewItem curTmpItem = (ListViewItem)this.listSelectedSongs.Items[curIndex].Clone(); this.listSelectedSongs.Items[curIndex-1] = curTmpItem; this.listSelectedSongs.Items[curIndex] = aboveTmpItem;

    C# question help

  • ListView Item Selection
    T takkung

    Hi everybody!! I 've a problem about ListView In my Windows Form Application. I 've created a song playlist editor that use list view to display the songs and I have move up and move down button for move the song up and down in the list view. But when I push the move up or move down button the row selection will disappear because it lost focus. Does anyone know how can I preserve the row selection of list view because it doesn't have SetSelected method like ListBox Control? Thank you and sorry for about my English.

    C# question help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups