Home
|
Tutorial
|
Articles
|
Forum
|
Interview Question
|
Code Snippets
|
News
|
Fun Zone
|
Poll
|
Web Links
|
Certification
|
Search
Welcome :
Guest
Sign In
Register
Win Surprise Gifts!!!
Congratulations!!!
Top 5 Contributors of the Month
Jean Paul
satyapriyanayak
Narayanan
Karthikeyan Anbarasan
JQuery Developer
Find questions, FAQ's and their answers related to .NET, C#, Vb.Net, Sql Server and many more.
Post New Question
Subscribe to Interview Questions
Quick Links For Interview Questions Categories:
ASP.Net
Windows Application
.NET Framework
C#
VB.Net
ADO.Net
Sql Server
SharePoint
Silverlight
OOPs
JQuery
JavaScript/VBScript
Biztalk
Patten/Practices
IIS
WCF
WPF
WWF
Networking
Aptitude
Others
All
Windows Application Interview Questions and Answers
Difference Between LinkedLabel Clicked event and LinkedLabel LinkClicked event
Author:
Narayanan
Posted Date: April 10, 2013 Category:
Windows Application
Points: 40
No difference ,between LinkedLabel Clicked event and LinkedLabel LinkClicked event.
If you use two Events in your Project ,LinkedLabel Clicked event triggers,LinkedLabel LinkClicked event doesn't trigger.
Is it possible to use Keychar value in Keyup Event?
Author:
Narayanan
Posted Date: August 16, 2012 Category:
Windows Application
Points: 40
Yes , Use keyvalue
what are the ShoutCut Keys worked in the TextBox when Developer Specify ShoutCut Key for TextBox?
Author:
Narayanan
Posted Date: August 08, 2012 Category:
Windows Application
Points: 40
CTRL +H = Remove Last Character.
CTRL +Z = Select All Charaters/Last Character in TextBox.
CTRL +X = Cut selected Charaters in TextBox.
CTRL +C = Copy Selected Charaters in TextBox.
CTRL +P = Paste Selected Charaters in TextBox.
Difference between CellvalueChanged and Cellvalidating?
Author:
Narayanan
Posted Date: July 26, 2012 Category:
Windows Application
Points: 40
The DataGridView.CellValidating event occurs when a cell loses input focus, enabling content validation.So, when you add a new value to the cell, the cellvalidating will not get the new value you've entered, but an old value. Because the new value hasn't been committed.
DataGridView.CellValueChanged: Occurs when a cell loses input focus, enabling content validation.
The DataGridView.CellValueChanged event occurs when the user-specified value is committed, which typically occurs when focus leaves the cell.
This event may get the new value when you leave to edit the current cell in your DataGridView. And it will not get an empty string if you enter some characters in the cell.
What's the difference between WindowsDefaultLocation and WindowsDefaultBounds?
Author:
ishu
Posted Date: November 24, 2011 Category:
Windows Application
Points: 40
(1)WindowsDefaultLocation tells the form to start up at a location selected by OS, but with internally specified size.
(2)WindowsDefaultBounds delegates both size and starting position choices to the OS.
Write a simple Windows Forms MessageBox statement.
Author:
ishu
Posted Date: November 13, 2011 Category:
Windows Application
Points: 40
System.Windows.Forms.MessageBox.Show
How to install and uninstall Windows Services ?
Author:
Srikanth
Posted Date: April 22, 2011 Category:
Windows Application
Points: 40
In order to install and uninstall Window Services. First we have to open the command prompt of Visual Studio and we have to move to the project folder where the .exe file is located and then we have to type :
For Installing : installutil -i ServiceName.exe
For Uninstalling : installutil -u ServiceName.exe
difference between datagridview of window forms and data grid controls
Author:
krishana singh
Posted Date: December 29, 2010 Category:
Windows Application
Points: 15
difference between datagridview of window forms and data grid controls
How's anchoring different from docking?
Author:
RamaSubbaReddy
Posted Date: September 06, 2010 Category:
Windows Application
Points: 10
Anchoring treats the component as having the absolute size and adjusts its location relative to the parent form. Docking treats the component location as absolute and disregards the component size. So if a status bar must always be at the bottom no matter what, use docking. If a button should be on the top right, but change its position with the form being resized, use anchoring.
How do you retrieve the customized properties of a .NET application from XML .config file?
Author:
RamaSubbaReddy
Posted Date: September 06, 2010 Category:
Windows Application
Points: 10
Initialize an instance of AppSettingsReader class. Call the GetValue method of AppSettingsReader class, passing in the name of the property and the type expected. Assign the result to the appropriate variable.
« Previous
1
2
3
Next »
Hall of Fame
Twitter
Terms of Service
Privacy Policy
Contact Us
Archives
Tell A Friend