Posts
 
Reputation
Joined
Last Seen
Ranked #602
Strength to Increase Rep
+5
Strength to Decrease Rep
-1
81% Quality Score
Upvotes Received
261
Posts with Upvotes
253
Upvoting Members
13
Downvotes Received
17
Posts with Downvotes
17
Downvoting Members
9
27 Commented Posts
13 Endorsements
Ranked #121
Ranked #1K
~124.35K People Reached
About Me

Bachelor Of Technology in Computer Science And Engineering and curious to learn about new technologies and innovative implementations.

Interests
Developing software, designing websites and playing PC games
Favorite Tags
Member Avatar for Mike Askew

There has been a noticeable increase in people asking where to start C# recently. So I have been across a couple of forums and pulled together a list of some useful links and resources. # Web Tutorials # [Home and Learn Tutorial](http://www.homeandlearn.co.uk/csharp/csharp.html) [CodeProject Tutorial P1](http://www.codeproject.com/Articles/219869/Object-Oriented-Programming-in-Csharp-NET) [CodeProject Tutorial P2](http://www.codeproject.com/Articles/222295/Object-Oriented-Programming-in-Csharp-NET-Part-2) [CodeProject Tutorial …

Member Avatar for Shahzad111
17
3K
Member Avatar for abdallah_adiga
Member Avatar for KushMishra

Hi All, Any suggestions on how could we attach the NLog.config to a docker-compose.yml file so that it generates an “NLog_Internal.txt” on the host machine and we can see all the application logs in that file? In other words, is there a way we could extract the logs of an …

Member Avatar for KushMishra
0
2K
Member Avatar for ddanbe

Why is it that C# disappeared from the Programming menu? Something to do with upcoming changes?

Member Avatar for Dani
0
2K
Member Avatar for batoolhussain

Hi Every one, i have a server and a numbers of clients and i have a C# program on that server. My question is how to run that program on these clients without installing the visual studio on the clienets computers????? you very much

Member Avatar for KushMishra
0
414
Member Avatar for KushMishra

Hi, I am an absolute beginner to Xamarin and just started to develop a small application wherein, I am not getting any idea about why the BindableProperty changes are not getting reflected inside the view model. Presently, I have written my BindableProperty in a separate Class and the code is …

Member Avatar for KushMishra
0
984
Member Avatar for overwraith

Does anybody know whether System.Data.SqlLite has the capability to do a Change notification callback when one of it's tables is changed? I know that Python can do it by calling the C api, but This is kind of beyond me. I know I have done this before on an oracle …

Member Avatar for overwraith
0
915
Member Avatar for KushMishra

Hello All, I have experienced a very strange problem in my application. When I launch my WPF application, it loads fine with a window and button, upon clicking the button, it launches another form which is also fine but in this second form, when I click some button, it launches …

Member Avatar for Cody_6
0
4K
Member Avatar for KushMishra

Hi, I am developing my own designer and got stuck at a point where I need to establish or implement some business logic whenever any UI Element is dragged and determine if that falls withing the boundaries of another parent control (specifically TabControl or GroupBox), so that the next time …

Member Avatar for KushMishra
0
508
Member Avatar for Smith5646

I have written a REST API using C# that runs on my server. When it is started, I want to preload some data from the database based on the organization that has purchased it (name, address, etc). However, I can't seem to figure out the name of the initial program …

Member Avatar for KushMishra
0
421
Member Avatar for davy_yg

Hello, I have a website that I built after editing it requires the user to clear browser cache to see the updated website. My question is does it requires everyone who have open the website for the first to clear browser cache to see the updated? What if the first …

Member Avatar for KushMishra
0
246
Member Avatar for KushMishra

Hi All, Could anyone please suggest on how to apply multiple styles to multiple elements at runtime and that too the styles should be applied at the same time on all elements. For instance, I want to animate two buttons but their styles are different. Now if I apply the …

Member Avatar for rproffitt
1
765
Member Avatar for KushMishra

Hello All, I need to develope an application to receive POP3 emails automatically at regular intervals. I am totally a newbie to this one and need your kind help. The application should fetch emails using some service that would run in the background. So basically I need 2 things (I …

Member Avatar for Elpat14
1
2K
Member Avatar for KushMishra

Hi All, I have a collection of huge records (6000+) wherein the object in the collections has got 50+ properties, so ideally it is not a good idea to run a "For-Each" loop here. What I want is a "GroupBy" clause which would get me a Dictionary (Of String, String) …

Member Avatar for KushMishra
0
3K
Member Avatar for Kimberly_2

My computer was working fine until today I opened it up and clicked the power button then I realized that it was not working. I then proceeded to hold it after a while I can hear the fan start up but nothing else when I let go of the power …

Member Avatar for Pcdoctor_1
0
493
Member Avatar for Yashvanth_1
Member Avatar for KushMishra
0
198
Member Avatar for Siberian

I have a folder in one of my partitions with this name; 6a004149b189707931f3b5 Windows won't let me delete this folder as it claims I need permission from **Network Service**; what is this folder ?

Member Avatar for mechbas
0
321
Member Avatar for Mackenzie_1

I forgot my password on my Toshiba Windows 10 laptop. Now every time I turn it on it has a black screen with a white box that says 'enter password' but I don't know the password.. I need to somehow reset my whole laptop. I've tried EVERYTHING, INCLUDING calling tech …

Member Avatar for close2study
0
3K
Member Avatar for KushMishra

Hi Everyone, I started creating a new WPF project wherein, I have just added a style to all the elements of type "Window" and "Grid" but none of these are working (rather a wierd black box is apprearing - Screenshot attached). **NOTE:** I do not want to use "x:Key" for …

Member Avatar for rproffitt
0
2K
Member Avatar for david_105

hi how do i hide the (team_id) value in the below form <option value="' . $row['team_id'] . '' . $row['teams'] . '" ' . $selected . '>' . $row['teams'] . '</option> thanks

Member Avatar for KushMishra
0
161
Member Avatar for Pamela_6

I tried to update Windows 10 but I didn't have enough storage so it made me use a flash drive to complete the update. I restarted the computer when it was done, and now it's stuck on a "Please insert external storage media and press OK" error message. I press …

Member Avatar for KushMishra
0
2K
Member Avatar for Krunal_3

Hello, I have two submit buttons(submit OTP & Resend OTP) in form. I need model validation(submit OTP) on one button(if OTP is not entered) and on second button(Resend OTP), it should post/submit(send OTP in Email) the form. on server side, I'll check formaction and will do diff. operations for both …

Member Avatar for KushMishra
0
286
Member Avatar for KushMishra

Hi All, I would appreciate if someone could please answer to the following queries. 1. Difference between "new" and "new virtual" when deriving classes from other classes. 2. Difference between Abstarction and Encapsulation (with example, if possible). 3. Types of constructors and their implementations (when and how to use). 4. …

Member Avatar for KushMishra
0
371
Member Avatar for KevinVernon

I saw this game at other forum. I think its interesting. Lets play ;) Post something about the person above you, I'll start.

Member Avatar for Dani
0
729
Member Avatar for KushMishra

Hi, I am developing a WPF application in which I need to call `MouseLeftButtonDown` event in a single `DataGridTextColumn`. For that I wrote some xaml code as :- <DataGridTextColumn x:Name="myAge" Header="Age" Binding="{Binding Age, Mode=TwoWay}" IsReadOnly="True" Width="*"> <DataGridTextColumn.CellStyle> <Style TargetType="DataGridCell"> <EventSetter Event="MouseLeftButtonDown" Handler="{Binding MyAgeCommand}" /> </Style> </DataGridTextColumn.CellStyle> </DataGridTextColumn> But I am …

Member Avatar for Alex_45
0
8K
Member Avatar for KushMishra

Hi, I have a WPF Grid with multiple controls like TextBox, ComboBox, CheckBox etc. and their properties like Text, SelectedItem, IsChecked etc. are present inside the view model bound to the view perfectly. I want to copy the values of all the controls to the Clipboard (may be) and want …

Member Avatar for Santanu.Das
0
2K
Member Avatar for vin24

Hi guys, Vin here. I just like to ask if it is possible to dual boot two different operating system with different architecture(64 bit/32 bit)? My current os is windows 7 hp 64bit and I would like to dual boot it with windows xp 32 bit.... Here's my computer specs: …

Member Avatar for saira.bibi.9250
0
390
Member Avatar for KushMishra

Hello All, I am just a newbie trying to explore areas into game developement using .Net (may be XNA studio) though I am not familier with the same. Could you please suggest some tutorials, ebooks for this so that I can start as a beginner and then later on, may …

Member Avatar for janissantony
0
250
Member Avatar for khakilang

I have a few good old computer which runs on Window XP without any problem so far. But what happen come next year when Microsoft put Window XP to rest forever. No security updates, no hardware drivers update, no third party software updates etc.. Dump the old computer and buy …

Member Avatar for Tcll
0
416
Member Avatar for strRusty_gal

Hi Everyone, Thank you for viewing. I would like to check how to disbale HTML button in c#? Can anyone advise on this?

Member Avatar for RichardGalaviz
0
215