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
AhsanS
Posts
-
Need Your Help -
Phones suckNothing 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
-
Request to add article Followup functionalityHi 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
-
Help converting java-script to C#.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
-
Search within BookmarksHi 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
-
C# program to recover dataConcept 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
-
News blockCan anybody tell me where is the news section? Ahsan Ullah Senior Software Engineer MCTS 2.0
-
Location ChangeOut of memory exception at start up i guess. :^) Ahsan Ullah Senior Software Engineer MCTS 2.0
-
Spoiler : Netherlands vs. Denmark 0 - 010 mins into the game still zerooooooooooooooooooooooooooooo zerooooooooooooo :doh: Ahsan Ullah Senior Software Engineer MCTS 2.0
-
C# TableLayoutPanel MouseLeaveif (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
-
detect the connection has been disconnect in tcpclientFrom 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
-
detect the connection has been disconnect in tcpclientyou 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
-
Executing batch files in C#.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
-
How to submit just a class name as a parameter of a method?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
-
[Message Deleted]kindly post your error description. And Secondly post this message in ASP.net forum.
Ahsan Ullah Senior Software Engineer MCTS 2.0
-
Facebook like portalSearch out google. This may help http://www.rainbowportal.org/[^]
Ahsan Ullah Senior Software Engineer MCTS 2.0
-
Problem in sending email [modified]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
-
[Message Deleted]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
-
display text in textboxSet 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
-
email/smsGoogle gives thousands of results.
Ahsan Ullah Senior Software Engineer MCTS 2.0