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
A

Alomgir Miah

@Alomgir Miah
About
Posts
188
Topics
16
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • making calculator
    A Alomgir Miah

    Somebody has to start somewhere. Live Life King Size Alomgir Miah

    C#

  • How to store images in dll?
    A Alomgir Miah

    You should go for embedded resource. http://www.codeproject.com/csharp/ReflectionXml.asp[^] Live Life King Size Alomgir Miah

    C# question csharp winforms hardware tutorial

  • adding arrows to buttons
    A Alomgir Miah

    The test way is to change the text of the button on the click event. This way you can toggle between the texts ">>Detail" to "Detail<<". The other way is to change the image on the button this.buttonTest.Image = (Image)TestIcons.GetIcon("ShowDetails.ico").ToBitmap(); Live Life King Size Alomgir Miah

    C# question

  • Replace SELECT result before datagrid.
    A Alomgir Miah

    http://groups.google.com/group/microsoft.public.dotnet.framework.aspnet.webcontrols/browse\_thread/thread/e3de64786d1684a2/be32e7aefcb96da6?lnk=st&q=DataGrid+display+custom+value&rnum=1&hl=en#be32e7aefcb96da6 Live Life King Size Alomgir Miah

    Database css tutorial question discussion announcement

  • How to storage the records of DataSet to MSSQL table?
    A Alomgir Miah

    Are you looking for this using System.Data.SqlClient; public DataTable ReturnDataTbl(string XmlFile) { DataSet dset = new DataSet(); FileStream fstr = new FileStream(XmlFile, FileMode.Open, FileAccess.Read); dset.readXml(fstr); DataTable dtbl = dset.Tables[0]; fstr.Close(); dset.Dispose(); return dtbl; } Live Life King Size Alomgir Miah

    Database sql-server question database sysadmin xml

  • Trigger
    A Alomgir Miah

    Use updated.colname Live Life King Size Alomgir Miah

    Database database announcement

  • Keypress handling in Simple DataGrid
    A Alomgir Miah

    DataGridTextBoxColumn.TextBox.KeyPress += new ................. Live Life King Size Alomgir Miah

    C# question

  • Marquee Selection in ListView
    A Alomgir Miah

    Hello, I am looking for a feature in .NET listView wherein you can start the Marquee selection from the ListView Items. Is there a way to intiate the marquee selection using sendmessage. Live Life King Size Alomgir Miah

    C# csharp

  • ImageList.ImageSize supports only 255x255 pixel images.
    A Alomgir Miah

    ImageList.ImageSize supports only 255x255 pixel images. Is there a way to get around that. I know this is by design. I am trying to drag drop listview columns. But I need larger image size to achieve that. Live Life King Size Alomgir Miah -- modified at 14:24 Thursday 5th January, 2006

    C# design

  • Moving xml nodes
    A Alomgir Miah

    Please re-post. Cant see anything. Live Life King Size Alomgir Miah

    C# question xml tutorial

  • String Search on a Treeview
    A Alomgir Miah

    have a look on the url's below http://www.dotnet247.com/247reference/msgs/32/161524.aspx http://support.microsoft.com/default.aspx?scid=KB;EN-US;311318 Live Life King Size Alomgir Miah

    C# data-structures csharp question

  • How to show data in DataGrid on PPC
    A Alomgir Miah

    You should use DataGrid.DataSource = dataSet; Live Life King Size Alomgir Miah

    C# tutorial question

  • Fastest way to copy table in SQLServer 2000
    A Alomgir Miah

    I think this is the fastest. You can try comparing the performance with SELECT * INTO Table2 FROM Table1 Live Life King Size Alomgir Miah

    Database question

  • Data Table Error
    A Alomgir Miah

    I checked your code. It works just fine. Can you debug your code and tell us exactly in which line you get the error. Live Life King Size Alomgir Miah

    C# help database

  • Data Table Error
    A Alomgir Miah

    DataColumn userSkill = new DataColumn("Skill"); dtshowskills.Columns.Add("userSkill"); DataColumn userLevel = new DataColumn("Level"); dtshowskills.Columns.Add("userLevel"); foreach (string skill in skills) { DataRow drskill = dtshowskills.NewRow(); drskill["userSkill"] = skill; drskill["userLevel"] = 0; dtshowskills.Rows.Add(drskill); } should instead read DataColumn userSkill = new DataColumn("Skill"); dtshowskills.Columns.Add(userSkill); DataColumn userLevel = new DataColumn("Level"); dtshowskills.Columns.Add(userLevel); foreach (string skill in skills) { DataRow drskill = dtshowskills.NewRow(); drskill["Skill"] = skill; drskill["Level"] = 0; dtshowskills.Rows.Add(drskill); } Live Life King Size Alomgir Miah

    C# help database

  • Casting to double
    A Alomgir Miah

    object o = new object(); o = 1; double dValue = Convert.ToDouble(o); Live Life King Size Alomgir Miah

    C# help

  • Regular Expression
    A Alomgir Miah

    Try this string s = @"^(([A-Za-z0-9]+_+)|([A-Za-z0-9]+\-+)|([A-Za-z0-9]+\.+)|([A-Za-z0-9]+\++))*[A-Za-z0-9]+@((\w+\-+)|(\w+\.))*\w{1,63}\.[a-zA-Z]{2,6}$"; Regex ex = new Regex(s); Match match = ex.Match("g_s+gavcom.com"); if ( match.Success ) { MessageBox.Show("Found"); } Live Life King Size Alomgir Miah

    C# com regex help

  • Add reference problem ?
    A Alomgir Miah

    You need to add the DLL path to the PATH environment variable or you can just copy the DLL in the same folder as your managed assemblies. Live Life King Size Alomgir Miah

    C# help csharp c++ com question

  • c++ codeparser
    A Alomgir Miah

    There are tools available. Look for programmar in google. Live Life King Size Alomgir Miah

    C# c++ question learning

  • Updating Datagrid Cell Value
    A Alomgir Miah

    Dont play with the itemarry. It is handled internally. mydatatable.Rows[lastUpdatedRecord] = int.Parse(txtVal.Text); will do the job. Live Life King Size Alomgir Miah

    C# help database announcement
  • Login

  • Don't have an account? Register

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