Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #36.9K
Ranked #4K
~367 People Reached
Favorite Forums
Member Avatar for S2009

I want to display a message box when any person clicks on the menu item which is not enabled I have tried the following coding but it is not displaying the message box. Coding: [code] private void updateFineDetailsToolStripMenuItem_Click(object sender, EventArgs e) { if (updateFineDetailsToolStripMenuItem.Enabled == true) { frmUpdateFineDetails objUpdateFineDetails = …

Member Avatar for kamisori
0
118
Member Avatar for ddanbe

Hi everyone, I have the following : [CODE=csharp]using System; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { double d = Convert.ToDouble("23.4"); } } }[/CODE] When I run this with Visual C# 2008 Express in the debugger I get the value 234 for d instead of the expected …

Member Avatar for ddanbe
0
102
Member Avatar for c#dummie

Hi I want to get data from Access instead of notepad. Here are the codes to get data from notepad by entering IC number (equivalent to ID number). The records are stored in 'Folder'. public void btnGo_Click_1(object sender, System.EventArgs e)// -->User can select the file by entering the IC Nunber …

Member Avatar for kamisori
0
147