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
N

Nirandas

@Nirandas
About
Posts
32
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • vb vs c# variables in sql query strings [reform my question]
    N Nirandas

    Paste the code you are using.

    Nirandas, a developer from India. http://www.nirandas.com

    C# database question csharp sql-server visual-studio

  • vb vs c# variables in sql query strings [reform my question]
    N Nirandas

    What is the exact error you getting? Also constructing sql commands this way is not recommended. Instead use something like following: SqlCommand cmd =new SqlCommand("select * from tablename where id=@id",connection); cmd.Parameters.AddWithValue("@id",3); cmd.ExecuteReader(); //or whatever you want.

    Checkout my blog at http://www.nirandas.com/blog/

    C# database question csharp sql-server visual-studio

  • Custom Membership Api.Im confused the more i search on the net
    N Nirandas

    Can't you use the built in profile provider for this?

    Nirandas, a developer from India. http://www.nirandas.com

    ASP.NET database question asp-net com security

  • on minimize go to takbar near clock
    N Nirandas

    You need the NotifyIcon control for to be able to do this. Google it and you should find many examples. I think the MSDN page itself has an example. HTH

    Nirandas, a developer from India. http://www.nirandas.com

    C# com help

  • Link Keyboard Shortcut to Button
    N Nirandas

    You may want to take a look at this blog post. http://nirandas.com/blog/index.php/ways-to-set-short-cut-keys-for-controls-on-a-windows-forms-net-application/[^] HTH

    Nirandas, a developer from India. http://www.nirandas.com

    C# question tutorial

  • Problem in opening the content in HttpWebResponse
    N Nirandas

    If you want to show a open or save dialog box, try the content-type application/x-force-download

    Nirandas, a developer from India. http://www.nirandas.com

    ASP.NET help question

  • HOW CAN I PLACE A HTML PAGE IN CONTENT PLACE HOLDER OF MASTER PAGE
    N Nirandas

    Convert those html pages into .aspx pages and reference the proper master page.

    Nirandas, a developer from India. http://www.nirandas.com

    ASP.NET html xml help question

  • How can I call method from one page to other page
    N Nirandas

    Best thing to do would be to take the function out into it's own class and put it inside the app_code folder and use it from both the pages. HTH

    Nirandas, a developer from India. http://www.nirandas.com

    ASP.NET question

  • Access Application directory from dll
    N Nirandas

    Try using Server.MapPath to resolve the virtual path in to physical path from the dll. You should reference the System.Web.dll before trying to do that. HTH

    Nirandas, a developer from India. http://www.nirandas.com

    ASP.NET question

  • title
    N Nirandas

    Hi Gayatri, Why can't you use just

    this.Title = "Score";

    There is no need to reference the master page to set the title. Let me know if I didn't get you.

    Nirandas, a developer from India. http://www.nirandas.com

    ASP.NET tutorial

  • title
    N Nirandas

    You will have to set the title programmatically using code. Or you can create a base page and customize it to format the title as required and provide this functionality to all the pages. You may want to check my blog on this topic asp.net pages and proper titles HTH

    Nirandas, a developer from India. http://www.nirandas.com

    ASP.NET tutorial

  • Password Text Box
    N Nirandas

    The Request.Forms collection contains all the form fields submitted by the client. HTH

    Nirandas, a developer from India. http://www.nirandas.com

    ASP.NET question csharp html visual-studio

  • how can i create a countdown timer using C# ?
    N Nirandas

    Can't you use pure javascript for this? That will be lot better I think. If you want to use C# for this, the TimeSpan class and it's properties will be useful.

    Nirandas, a developer from India. http://www.nirandas.com

    C# question csharp com help tutorial

  • "&" string cant display in Lable control
    N Nirandas

    Try setting the UseMnemonic property of the Label to true. I believe your developing a desktop application. Right?

    Nirandas, a developer from India. http://www.nirandas.com

    C# database question

  • Calling two methods in a buttonClicked
    N Nirandas

    Instead of onButtonClick, use onClientClick.

    Nirandas, a developer from India. http://www.nirandas.com

    C# csharp javascript adobe help question

  • How to get first N rows from a datatable
    N Nirandas

    The DataTable's Rows property contains all the rows in the table. Just loop through it.

    Nirandas, a developer from India. http://www.nirandas.com

    C# tutorial question

  • using IsNumeric Function in c#
    N Nirandas

    Use int.TryParse() method.

    string str = "123";
    nt num;
    if( int.TryParse( str, out num))
    {//successfully parsed the string. Now the num variable contains the numeric value if you need it.
    //Ok the number is numeric do what ever you want.
    }

    Nirandas, a developer from India. http://www.nirandas.com

    C# csharp help tutorial

  • to get record count of SQL Query...?
    N Nirandas

    Try this:

    Select count(*) from z where x=l;

    Would return the number of rows which meets the where clause.

    Nirandas, a developer from India. http://www.nirandas.com

    C# database csharp tutorial question

  • assigning keyboard shortcuts to buttons in a form
    N Nirandas

    You will have to write some code inside the KeyDown event of the form, and take the required action when the space key is pressed. The form's KeyPreview property must be set to true to get the KeyDown events even the focus is on any child control. You can check my blog post for an example of handling this event for creating various shortcut keys. http://www.nirandas.com/blog/index.php/ways-to-set-short-cut-keys-for-controls-on-a-windows-forms-net-application/[^] Remember! if the focus is on a text field, users will not be able to type a space if it is used for triggering any other action.

    Nirandas, a developer from India. http://www.nirandas.com

    C# csharp question

  • close form
    N Nirandas

    You may hide the first form (Closing your start up form will close the application). Also code will stop executing at the call ".ShowDialog()", and will only continue after the user has closed the second form.

    Nirandas, a developer from India. http://www.nirandas.com

    C# design
  • Login

  • Don't have an account? Register

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