Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
1 Commented Post
0 Endorsements
Ranked #20.4K
Ranked #3K
~13.9K People Reached

10 Posted Topics

Member Avatar for mohana88

DLL import statement, like so: [DllImport("User32.dll", SetLastError=true)] heres a link to help you with the syntax: [url]http://msdn.microsoft.com/en-us/magazine/cc164123.aspx[/url]

Member Avatar for mohana88
0
8K
Member Avatar for Behseini

so what i would suggest is do the following: gather what item from one box you will select, then from there get the index of that and find the value of the item at that corisponding index on the next listbox. I've had to do this before. Also I would …

Member Avatar for Behseini
0
2K
Member Avatar for computerbear

for the formatting of ssn try this: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace WindowsFormsApplication2 { public partial class Form1 : Form { public Form1() { InitializeComponent(); textBox1.MaxLength = 11; textBox1.TextAlign = HorizontalAlignment.Center; } private void textBox1_TextChanged(object sender, EventArgs e) …

Member Avatar for spdesigns
0
159
Member Avatar for computerbear

using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace WindowsFormsApplication2 { public partial class Form1 : Form { public Form1() { InitializeComponent(); textBox1.MaxLength = 11; textBox1.TextAlign = HorizontalAlignment.Center; } private void textBox1_TextChanged(object sender, EventArgs e) { { if (textBox1.Text.Length == 3) { …

Member Avatar for spdesigns
0
3K
Member Avatar for aliskov

I'd suggest getting Visual Studio 2010 [[url]http://microsoft.com/express][/url] and using that, for starting out with c++ use Dev C++, great free tool, fun to use, and helps with learning console apps, start with console apps to get an idea for the syntax and things like that, then gradually start to play …

Member Avatar for ddanbe
0
309
Member Avatar for new_programmer

The best way I can reply to this in learning C# is simply, play with it, get visual studio 2010 [url]http://microsoft.com/express[/url] create a new windows form, and play around with it. Microsoft also offers some great tutorials on their site for programming with visual studio, best part is it's all …

Member Avatar for Shilpakmthn
1
207
Member Avatar for alb3rt

explain your question a bit more, this will help us give you an answer faster and a more useful answer.

Member Avatar for almostbob
-2
79
Member Avatar for sadhawan

well, my first guess would be have something that would search for key words using the regex, and then doing something based on it, and using System.IO; to write/read the textfile. The best way I can explain this would be by assuming a few things, XML version by standard would …

Member Avatar for nick.crane
0
133
Member Avatar for dan1992

To create a directory(folder): [code] using System.IO; class TestDirectory { public static void Main() { Directory.CreateDirectory("C:\\csharp"); } } to move a directory: using System.IO; class TestDirectory { public static void Main() { Directory.Move("C:\\csharp\\hello", "C:\\hello"); //"C:\\csharp\\hello" is the directory you want to move and //"C:\\hello" is where it's moved to } …

Member Avatar for Geekitygeek
0
115
Member Avatar for c12345n

System.IO; ...simply write the variable's value to a textfile, the read/write as you need, and when you read in, name the string(var) your looking for a string var, and do something based on it. shortest way i can reply to this as im trying to reply to everyone's questions. message/respond …

Member Avatar for Venjense
0
182

The End.