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

Anil Ch

@Anil Ch
About
Posts
11
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • how to get the current version's assembly number`
    A Anil Ch

    Assembly myAssembly = Assembly.GetExecutingAssembly(); FileVersionInfo info = FileVersionInfo.GetVersionInfo(myAssembly.Location); // info.ProductVersion gives you the complete version. // fileVersionInfo also contains many other property for details. Hope this helps. Regards :)

    C# announcement tutorial

  • incorrect sorting in dataGridView
    A Anil Ch

    Hi, Make number of row 1 more then acutal rows. dataGridView1.Rows.Add(4) I think internally it take the last rows as newRow and doesnot considers while sorting. Hope this helps. Regards, Anil Ch

    C# algorithms

  • BindingSource.Filter problem
    A Anil Ch

    1. string.Format("val1 like '{1}' and val2 like '{2}'", str1, str2); Should be string.Format("val1 like '{0}' and val2 like '{1}'", str1, str2); 2. aa'aa should be aa''aa becuase filter behaves same way as a stored procedure would behave.

    C# help

  • copying row in datagridview
    A Anil Ch

    try setting editmode to EditProgrammatically in datagridview properties.

    C# help

  • parameters problem in .net 2005
    A Anil Ch

    Hi, error : Must declare a variable @userid when column propert visible is false is correct. Since in visual 2005 if column in visible false then data is not binded to that column. Sol: To avoid this problem make visible false of column in RowCreated event of grid. This will solve your problem. hope this helps. Cheers! Anil

    ASP.NET help csharp asp-net database visual-studio

  • Setting values to a UserControl
    A Anil Ch

    Hi, try checking the page load event of your page that is using this control. see if u have if(!IspostBack) in your page load. or try to add a public function to set the dropdown in the control.(set property should would be same but still u can give a try) Regards, Anil :)

    ASP.NET database question

  • How to Use Paypal and 2checkout .com for Payment
    A Anil Ch

    Yes paypal has got .net SDK which can be use to connect to paypal server and do all the validation.

    ASP.NET tutorial csharp asp-net com

  • ItemCommand Event Not Firing
    A Anil Ch

    Hi, Have you assigned any command name to your button. Also can you send some more details of code to find the problem.

    ASP.NET css help

  • Newbie: Best way to populate a context menu from DB?
    A Anil Ch

    We can create context menu in this way but also we need to handle events for these context menus. To do so we can create a common event for all menu items and then based on the context name respective code can be executed. Impossible itself says I M Possible.

    C# question database tutorial

  • capturing image in Fingerprint reader
    A Anil Ch

    Its true that you need SDK from the product manufaturer. But in some cases it works with other sdk's too. Check this article and see if it can help you. http://www.devx.com/security/Article/31576[^] Anil

    C# help question

  • c# modem communication
    A Anil Ch

    Hi, I am using System.IP.Ports namespace to connect to modem from my application. If I connect to modem(55.6) at 115200 I get message from modem, otherwise(greater or less that 115200) not getting any message from modem. Can anyone tell me what all setting need to be done using the API for it to accept the connection at other speeds. Thanks

    C# csharp css json
  • Login

  • Don't have an account? Register

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