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
K

Keshav V Kamat 0

@Keshav V Kamat 0
About
Posts
180
Topics
42
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • String table equivalent in C#
    K Keshav V Kamat 0

    Hello, can anyone illustrate a step by step procedure for using resource manager or some equvalent in C#. I am not able to embed the main assembly resource file, .resources, in the executable assembly.So please guide me in creating and embedding resource files as well.

    Keshav Kamat :) India

    C# tutorial csharp learning

  • Syncfusion menubar and logo
    K Keshav V Kamat 0

    I want to display a syncfusion menubar alongwith a logo on its side on the top of a Windows Form.How do i go about this?

    Keshav Kamat :) India

    C# question

  • xml document and xpath
    K Keshav V Kamat 0

    how to create a xml document from a given xpath

    Keshav Kamat :) India

    XML / XSL xml tutorial

  • networking poblem
    K Keshav V Kamat 0

    Hi all, I surf the net on my desktop or my notebook (separately)via a gprs connection using my cell phone. currently i have connected my notebook to the net and am trying to connect my desktop as well, i.e i am trying for a parallel internet connection. I do not have a lan cable. i wanted to connect it using bluetooth. I have turned on the bluetooth device. but it somehow does not detect the other device (i.e. notebook). There is some problem with the bluetooth PAN network setup. I am unable to look it up anywhere. Any help would be appreciable. Thanks in advance.

    Keshav Kamat :) India

    System Admin help sysadmin workspace

  • Cursor Dispose Problem
    K Keshav V Kamat 0

    Consider my code below Cursor m_OldCursor; void OnCursorChanged(object sender, EventArgs e) { if(m_OldCursor != null) { m_OldCursor.Dispose(); } m_OldCursor = new Cursor(this.Cursor.CopyHandle()); } void ProcessMouseMove(EventArgs e) { // m_OldCursor is used here too. // hence cannot be declared everytime in // OnCursorChanged. } I know it is wrong to use a object after it is disposed. but every single time the CopyHandle() method is invoked, it creates a handle. since there is a restriction on the number of handles that windows can manage, i need to dispose this handle after its use. if not then the application will crash. If instead of Cursor, it was a control then i could have used the DestroyHandle property. Could you suggest me any other way to do the same. thanks in advance.

    Keshav Kamat :) India

    C# help

  • C++ Exception
    K Keshav V Kamat 0

    Are you trying to write into a memory location or a file?

    Keshav Kamat :) India

    Windows API c++ question

  • Vista review
    K Keshav V Kamat 0

    Thanks a lot. I have heard and read that a considerable number of third party software cannot be installed on Vista due to some compatibility issues. Do you know anything about that?

    Keshav Kamat :) India

    Windows API hardware performance question

  • syncfusion datagrid and xml
    K Keshav V Kamat 0

    how to store the syncfusion datagrid related information (cell values,celltypes,column and row widths etc) in a xml?

    Keshav Kamat :) India

    XML / XSL xml tutorial question

  • Vista review
    K Keshav V Kamat 0

    Hello, i wanted a personal review from anyone who has used Vista (professional or home). I am planning for a new notebook that comes preloaded with Vista. So any remarks on performance and other hardware/software constraints? Or maybe any problems that I need to be aware of? Thanks in advance.

    Keshav Kamat :)

    Windows API hardware performance question

  • move a button at runtime
    K Keshav V Kamat 0

    How can i move a button at runtime

    Keshav Kamat :) India

    C# question

  • Changing the control size at run time
    K Keshav V Kamat 0

    thanks.

    Keshav Kamat :) India

    C# question

  • Changing the control size at run time
    K Keshav V Kamat 0

    Suppose i have a control (say a button) that is created at run time. How can i change the size of the button at run time? thanks in advance.

    Keshav Kamat :) India

    C# question

  • Titlebar for a user control
    K Keshav V Kamat 0

    Is there something called as a titlebar for a user control? If yes then could I get a link explaning the same? Thanks in advance.

    Keshav Kamat :) India

    C# question

  • add a control to DataGridView
    K Keshav V Kamat 0

    thanks dude. Even i wanted some information on the same.

    Keshav Kamat :) India

    C# help question

  • display solid square program
    K Keshav V Kamat 0

    yes. it can be done using a single loop as well

    Keshav Kamat :) India

    C# tutorial architecture

  • display solid square program
    K Keshav V Kamat 0

    ya. use a couple of loops. something like this. since you have asked for 4 hashes on 4 lines, use something like this.

    for(int i = 0; i < 4; i++)
    {
    for(int j = 0; j < 4; j++)
    {
    Console.Write("#");
    }
    Console.WriteLine();
    }

    Keshav Kamat :) India

    C# tutorial architecture

  • Message Box Information Request
    K Keshav V Kamat 0

    You can check out msdn for anything. http://msdn2.microsoft.com/en-us/library/kx37x362(VS.80).aspx[^] for message box in windows forms use this MessageBox.Show("Anything you want to display");

    Keshav Kamat :) India

    C# csharp winforms help tutorial question

  • combobox in gridview
    K Keshav V Kamat 0

    You will get all the information here http://www.datagridgirl.com/articles.aspx[^]

    Keshav Kamat :) India

    C# question help

  • .net
    K Keshav V Kamat 0

    I dont know about .net bootstrapper. Bootsrap loader is a program used to start up an operating system such as Windows which loads the required services and the process in the memory. But what is .net bootstrapper. Do you mean the installation file or something?

    Keshav Kamat :) India

    C# csharp

  • validation (double)
    K Keshav V Kamat 0

    I want to check whether the text entered in a control, say a text box is of double or not. How can I do it? Thanks.

    Keshav Kamat :) India

    C# question
  • Login

  • Don't have an account? Register

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