Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #27.9K
Ranked #2K
~6K People Reached
About Me

Codes 4 F00d

Interests
Computers, Programming, Swimming, Nature
PC Specs
Dual Boot: Windows 7 x64 & Fedora 14 x86_64
Favorite Forums

6 Posted Topics

Member Avatar for JOSheaIV

For charting I use Microsoft's MSDN's "Samples Environment for Microsoft Chart Controls" [QUOTE]Samples Environment for .NET Framework 4 Chart Controls Released! You can now download Visual Studio 2010 projects that contain all the samples targeting .NET Framework 4. Download Description The samples environment for Microsoft Chart Controls for .NET Framework …

Member Avatar for Singlem
-1
190
Member Avatar for zachattack05

Can't you program functionality to make the application work for a trial period of time (15 or 30 days for example) and then after the trial expires disable the program and pop up a message saying "Trial period expired" whenever the user tries to open it again.

Member Avatar for pritaeas
0
115
Member Avatar for DaveTran

openFileDialog.FileName returns a string representing the full path of the selected file including the extension, since it's a string you can use the static String method Contains to check if the file name coantians .foo or .bar, like this: [CODE=c#] if (openFileDialog.FileName.Contains(".foo")) { MessageBox.Show("You opened a .foo file"); } else …

Member Avatar for DaveTran
0
230
Member Avatar for pivotcity

You can convert the response variable from Char to a String using the ToString() method and then use the ToUpper() method of the String class on the response variable in the switch which makes sure that anything you enter is converted to upper case so if you enter either "m" …

Member Avatar for Singlem
0
3K
Member Avatar for coroll

I just made this code based on what I understood from your post. [code=c#] using System; using System.Windows.Forms; namespace DataGridViewTest { public partial class Form1 : Form { private DataGridView dataGridView1 = new DataGridView(); private LinkLabel link1 = new LinkLabel(); private LinkLabel link2 = new LinkLabel(); public Form1() { InitializeComponent(); …

Member Avatar for codes4f0x0d
0
2K
Member Avatar for Jazerix

What I notice here is that you haven't started the timer (Timer1.Start()) which will trigger the Timer1_Tick event. Double click the form, a new event will be generated called Form1_Load, this event is triggered when the form is first loaded which in turn will start the timer. [code=c#] private void …

Member Avatar for Jazerix
0
136

The End.