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

AhsanS

@AhsanS
About
Posts
270
Topics
21
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Need Your Help
    A AhsanS

    Knowledge doesn't require certificates. If you know how to do things, then apply for any vacancies available (it doesn't required money) instead of posting here. Forget what happened. Remember you are your only savior here. Ahsan Ullah Senior Software Engineer MCPD 4.0

    The Lounge career csharp dotnet help question

  • Phones suck
    A AhsanS

    Nothing is wrong with your splitter but the line itself. From the point where you have got a connection to your splitter, there is another cable that has to go to your phone. If that is not connected to correct phone line then everytime your phone will ring internet will go down. Ahsan Ullah Senior Software Engineer MCTS 2.0

    The Lounge com question career

  • Request to add article Followup functionality
    A AhsanS

    Hi CPians, I would like to request for a feature in CP. A user should be able to get an email notification when a new article is published in the series of articles he is following. E.g today part 1 of "Peeling the mango" is released. I would really like to follow-up on this series and get notified when a new one is posted. So if this feature is posted i would just tick the check box "Receive follow-up notifications" and will be notified whenever it is updated/bug fixed/new article is posted. Regards Ahsan ullah Ahsan Ullah Senior Software Engineer MCTS 2.0

    Site Bugs / Suggestions help

  • Help converting java-script to C#.
    A AhsanS

    Firstly user StringBuilder and use append method for adding strings. It will improve performance. Second where is char thisLetter used? Third what is the error you are getting? Fourth why use Convert.ToChar when it already a character. Ahsan Ullah Senior Software Engineer MCTS 2.0

    C# csharp java javascript tools help

  • Search within Bookmarks
    A AhsanS

    Hi Chris, In the search box there should be an option of 'My Bookmarks' in search within. Regards Ahsan Ullah Senior Software Engineer MCTS 2.0

    Site Bugs / Suggestions

  • C# program to recover data
    A AhsanS

    Concept of data recovery is hard to explain here. In short for writing a sw in c# you have to wrap low level API's. Not directly possible. Ahsan Ullah Senior Software Engineer MCTS 2.0

    C# csharp question

  • News block
    A AhsanS

    Can anybody tell me where is the news section? Ahsan Ullah Senior Software Engineer MCTS 2.0

    The Lounge question announcement

  • Location Change
    A AhsanS

    Out of memory exception at start up i guess. :^) Ahsan Ullah Senior Software Engineer MCTS 2.0

    Clever Code

  • Spoiler : Netherlands vs. Denmark 0 - 0
    A AhsanS

    10 mins into the game still zerooooooooooooooooooooooooooooo zerooooooooooooo :doh: Ahsan Ullah Senior Software Engineer MCTS 2.0

    The Lounge visual-studio game-dev

  • C# TableLayoutPanel MouseLeave
    A AhsanS

    if (GameModel.HomeCellStatus(homeLastPosition.Column, homeLastPosition.Row) == Cell.cellState.WATER)
    {
    HomeLastPicBox.Image = Properties.Resources.water;
    MessageBox.Show("hi");
    }

    i wonder why are you using this

    HomeLastPicBox = new PictureBox();

    when you have already assigned the picture to this picture box in the if block. after displaying the message box you need to return. do it like this.

    if (GameModel.HomeCellStatus(homeLastPosition.Column, homeLastPosition.Row) == Cell.cellState.WATER)
    {
    HomeLastPicBox.Image = Properties.Resources.water;
    MessageBox.Show("hi");
    return;
    }

    hope it helps.

    Ahsan Ullah Senior Software Engineer MCTS 2.0

    C# csharp game-dev help question

  • detect the connection has been disconnect in tcpclient
    A AhsanS

    From the snippet that you have shared i can't say for sure what your problem is. But if you could get my point. i.e. Keep track of your client(s) by sending an empty message for acknowledgment that client is alive. Ahsan Ullah Senior Software Engineer MCTS 2.0

    C# sysadmin tutorial question

  • detect the connection has been disconnect in tcpclient
    A AhsanS

    you need to send packet from clients at regular intervals. I may call it KeepAlive. And when it is not received. It means it is disconnected. Ahsan Ullah Senior Software Engineer MCTS 2.0

    C# sysadmin tutorial question

  • Executing batch files in C#.
    A AhsanS

    If you want to do something in a batch (Sequence). Then write all those commands in batch file and execute it. If you want to start that batch file from a C# application. use Process.Start Ahsan Ullah Senior Software Engineer MCTS 2.0

    C# tutorial csharp help

  • How to submit just a class name as a parameter of a method?
    A AhsanS

    Create a public enum of say ClassTypes and pass it to the method. Apply switch to ClassTypes and generate classes as you may require. e.g public enum ClassType { ClassA, ClassB } classCInstance.CreateClass(ClassType objClass) { switch(objClass) { case ClassType.ClassA: new ClassA(); break; case ClassType.ClassB: new ClassB(); break; } } P.S: This is just an example for your understanding. Hope it helps Ahsan Ullah Senior Software Engineer MCTS 2.0

    C# question tutorial

  • [Message Deleted]
    A AhsanS

    kindly post your error description. And Secondly post this message in ASP.net forum.

    Ahsan Ullah Senior Software Engineer MCTS 2.0

    C#

  • Facebook like portal
    A AhsanS

    Search out google. This may help http://www.rainbowportal.org/[^]

    Ahsan Ullah Senior Software Engineer MCTS 2.0

    ASP.NET csharp help

  • Problem in sending email [modified]
    A AhsanS

    is your problem resolved? If so kindly write it so that others may know that your problem is resolved :laugh:

    Ahsan Ullah Senior Software Engineer MCTS 2.0

    ASP.NET help question com sysadmin

  • [Message Deleted]
    A AhsanS

    Though i am unable to understand fully what you want, but from what i get (that you want to write this string to some other system) you are in need of remoting.

    Ahsan Ullah Senior Software Engineer MCTS 2.0

    C#

  • display text in textbox
    A AhsanS

    Set a public property of the form to set the text like

    public string SetText
    {
    get
    {
    return textbox1.Text;
    }
    set
    {
    textbox1.Text = value;
    }
    }

    And call it from your class by accessing it through the instance of the form on which the text box resides.

    Ahsan Ullah Senior Software Engineer MCTS 2.0

    C# database question csharp

  • email/sms
    A AhsanS

    Google gives thousands of results.

    Ahsan Ullah Senior Software Engineer MCTS 2.0

    ASP.NET csharp 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