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
G

Ganesh Kumar Kaki

@Ganesh Kumar Kaki
About
Posts
11
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Gmail inbox retrive
    G Ganesh Kumar Kaki

    If you want to do this job connect your gmail account using Microsoft Outlook Express and then create a windows application using c# refer Microsoft.Office.Interop.Outlook.dll and the monitor your mail and display those things in your Form.

    C# question csharp help

  • run project in network
    G Ganesh Kumar Kaki

    Hi everyone, I'm also facing same kind of problem. Any help would be appreciate.

    C# sysadmin database sql-server help

  • How to communicate to a device via serial port
    G Ganesh Kumar Kaki

    Following is the general way to interact with your COM Port

            try
            {
                sp.PortName = "COM1";
                sp.BaudRate = 9600;
                sp.DataBits = 8;
                sp.Parity = Parity.None;
                sp.StopBits = StopBits.One;
                sp.DataReceived += new SerialDataReceivedEventHandler(read\_data);//read\_data is the method fired when ever your serailport filled with some data
                sp.Open();
                sp.Write("AT" + Environment.NewLine);
                
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
    
    C# csharp json tutorial question

  • to close connection to database after i use or not ?
    G Ganesh Kumar Kaki

    Don't be expensive. Close the connection when ever your process is over!! :laugh:

    C# database question announcement

  • "Client & Server"
    G Ganesh Kumar Kaki

    Hi, For sending any request from one computer to another you have to use socket programming. And according to the present problem you are facing you have to use IPAddress of the system to which you want to communicate :-O

    C# question csharp sysadmin

  • C# Warnings
    G Ganesh Kumar Kaki

    Hi Paste your code snippet if you have. According to the information you provided i can guess that you are forgot to refer your dll. :doh:

    C# csharp help question

  • how to separate date and time from a string
    G Ganesh Kumar Kaki

    It's very easy First store the entire string in a string variable and then use the split method and assign it to a character array split(",,") and from that array fetch the appropriate value like

    string s="+CMGR: "REC READ","+923365483536",,"10/09/15,08:16:11+20";
    char[] temp=s.split(",,");
    now your temp[1] consists both time and date.
    if you want separate both use the same technique.

    C# tutorial csharp data-structures help

  • exe giving exception while running on xp
    G Ganesh Kumar Kaki

    which exception it is throwing?

    C# asp-net com help announcement

  • hi need help plzzzzzzzzz
    G Ganesh Kumar Kaki

    Hi, For your need follow these steps. 1.create a connection with your database 2.create an sql command to fetch the values from your database 3.next, fill the values in a datatable 4.and then bind those values to your grid

    C# help csharp css database

  • thread.interrupt only working once
    G Ganesh Kumar Kaki

    check out once that may be your form_load event called many times..

    C# help tutorial question career

  • C# session
    G Ganesh Kumar Kaki

    Tell me what you want to do exactly? Generally sessions are related ASP.NET Tell me exactly what type of application you wanna create.

    C# csharp tutorial 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