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
S

Sami Sammour

@Sami Sammour
About
Posts
6
Topics
2
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Merge dll files into one dll file
    S Sami Sammour

    Hi.. This is very urgent.. I have three dll files which I want to make them one dll file. Is that possible? And if so, how? Thanks in advance.

    C# question

  • Manually add data to datagrid combobox in C#
    S Sami Sammour

    You can skip the first two lines : DataGridViewColumn valueColumn = new DataGridViewColumn(); dataGridTicketTypes.Columns.Add( valueColumn );

    C# csharp help question

  • Manually add data to datagrid combobox in C#
    S Sami Sammour

    You can try the following code assuming that the comboBox column is named valueColumn: DataGridViewColumn valueColumn = new DataGridViewColumn(); dataGridTicketTypes.Columns.Add( valueColumn ); DataGridViewRow row = new DataGridViewRow(); DataGridViewComboBoxCell cell = new DataGridViewComboBoxCell(); cell.Items.Add("0"); cell.Items.Add("1"); cell.Items.Add("2"); cell.Items.Add("3"); valueColumn.CellTemplate = cell; int rowIndex = dataGridTicketTypes.Rows.Add( row ); row = dataGridTicketTypes.Rows[ rowIndex ]; Hope it helps. If you have any question contact me. :)

    C# csharp help question

  • How i can connect with MySql Database
    S Sami Sammour

    Well.. I'm using a library you can download it from mysql website it's called: MySql Connector Net. It works pretty good for me and it imitates the ADO.NET structure, but I don't know whether there's something special for PDAs. Here is the link: http://dev.mysql.com/downloads/connector/net/5.2.html[^] I'm using version 5.0 and it works fine. You can try the other versions but I know nothing about them. Hope it was useful. :)

    C# csharp database mysql sysadmin

  • Need help in drag and drop
    S Sami Sammour

    Thank you for it, but I've already read it, and I did the same but it didn't work with me, that's why I'm so confused.

    C# help tutorial

  • Need help in drag and drop
    S Sami Sammour

    I'm trying to do an drag and drop example but it failed. my code is: public partial class Form1 : Form { private String f; public Form1() { InitializeComponent(); f = "D:\\Special"; String[] files = Directory.GetFiles( f ); foreach ( String fi in files ) { listView1.Items.Add( fi ); } } private void listView1_ItemDrag( object sender, ItemDragEventArgs e ) { DoDragDrop( new DataObject( DataFormats.FileDrop, ( ( ListViewItem ) e.Item ).Text ), DragDropEffects.Copy ); } } Please help me, it's very urgent.

    C# help tutorial
  • Login

  • Don't have an account? Register

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