Posts
 
Reputation
Joined
Last Seen
Ranked #864
Strength to Increase Rep
+5
Strength to Decrease Rep
-1
79% Quality Score
Upvotes Received
13
Posts with Upvotes
10
Upvoting Members
11
Downvotes Received
3
Posts with Downvotes
3
Downvoting Members
3
5 Commented Posts
~37.4K People Reached
Member Avatar for Mike Askew

*gasp* you are using Bing ? :) Now really, i like the dream in code forum, they have very usefull advices and tutorials, and i'm glad you included rob miles book very usefull for beginners Also Read this [Where do i start](http://www.dreamincode.net/forums/topic/292468-question-collapse-game-in-c%23/page__p__1705211&#entry1705211) And this[ learning resources](http://www.dreamincode.net/forums/topic/241613-are-cookbooks-good-for-learning/page__p__1400743&#entry1400743)

Member Avatar for Shahzad111
17
3K
Member Avatar for ahmedsaad8

why are you deploying a full blown SQL Server database with your application? Does multiple instances of your application run and need to share the same data? Or does your application run locally and only need the data for itself? If it's the latter, you should look into using a …

Member Avatar for Michael27
0
222
Member Avatar for Amin Crash

Do you mean compare the size of audio file? Maybe something like this? http://support.microsoft.com/kb/320348

Member Avatar for Bandarigoda123
0
291
Member Avatar for mmm123

Here is an example private static void Insert(String name, String lastName, int phone) { string cmdStr = "INSERT INTO Person (FirstName ,LastName ,Telephone) VALUES (@FirstName, @LastName, @Telephone)"; using (SqlConnection connection = new SqlConnection(ConnectionString)) using (SqlCommand command = new SqlCommand(cmdStr, connection)) { command.Parameters.AddWithValue("@FirstName", name); command.Parameters.AddWithValue("@LastName", lastName); command.Parameters.AddWithValue("@Telephone", phone); connection.Open(); int affectedRows …

Member Avatar for Sulaiman_1
0
3K
Member Avatar for Ghost

Don't forget about using this http://msdn.microsoft.com/en-us/library/fs2xkftw.aspx and how was this thread locked when a newbie can post in it?

Member Avatar for vasanthmc2
1
10K
Member Avatar for kothaisaravan

Answer is MDI(Multiple-Document Interface ) http://www.dreamincode.net/forums/topic/57601-using-mdi-in-c%23/ http://msdn.microsoft.com/en-us/library/xyhh2e7e(v=vs.110).aspx

Member Avatar for kothaisaravan
0
269
Member Avatar for zaidiSEO

Programming is not all about the syntax and is the least of your problem, programming is, i would say 80% problem solving and logic and math, first you must know what you want to make(program) then proceed to break that problem into smaller chunks that will help you get the …

Member Avatar for Michael27
0
463
Member Avatar for king03

Why are you using a txt file(not very safe) use a Database. Tell me what have you done so far code wise. You use [StreamReader](http://www.dotnetperls.com/streamreader) to read from a file

Member Avatar for odai.khateeb
0
3K
Member Avatar for dave.schroeder.906

No, he already defined it as bool on line 4. I agree with Ancient dragon, he should probably use if else if and put return for each of that if statement.

Member Avatar for Michael27
1
299
Member Avatar for ZER09

Read about http://www.dotnetperls.com/extension extension methods. An extension method has simplified calling syntax. It represents static methods as instance methods. An extension method uses the this-keyword in its parameter list. It must be located in a static class.

Member Avatar for Merletyco
0
385
Member Avatar for mcoliver88

This is something i learned from a friend on other forum. Before i write 1 line of code, i need to plan out at least some functionalities of the solution i'm gonna write. You start with a whiteboard and plan. What is it you need? For starters: * You know …

Member Avatar for bertha
0
318
Member Avatar for prabhakar78

> "i can able to add textbox Don't you mean "i'm able to add to the textbox?" please work on your english language and grammar so it can be easier to comunicate your problems here.

Member Avatar for pitic
0
416
Member Avatar for Ashok Karale

On line 66 don't forget to checki if selected file is image //should check if FileName property is Image Image img = new Bitmap(openFileDialog1.FileName); An insert command on line 191 should be written with sql parameter or else it will be open to sql injection attack

Member Avatar for Michael27
0
203
Member Avatar for rahulsingh725

Hello there sir, the number you are dialing is not in service anymore, please hold, someone will be there shortly. In the meanwhile please post the error you are getting with the error message. Thanks

Member Avatar for rahulsingh725
0
104
Member Avatar for josh2006k

This is perfect example how not to make program, learn about OOP, C# is OOP language it will reduce this mess, and make it more maintainable. In OOP you make Player class with properties like name, score etc ... and methods like calculate average, then you make instance of the …

Member Avatar for josh2006k
0
246
Member Avatar for JOSheaIV

Have you read what [String.Contains](http://msdn.microsoft.com/en-us/library/dy85x1sa.aspx) actually does > Return Value > Type: System.Boolean > true if the value parameter occurs within this string, or if value is the empty string (""); otherwise, false. Have you actually checked that StartIndex is > 0, in the remove method check those parameters if …

Member Avatar for JOSheaIV
0
286
Member Avatar for rexdon

Why you wanna do that, use the FBD object to get the path and store it in a string. You are doing things backward.

Member Avatar for tinstaafl
0
285
Member Avatar for silvercats
Member Avatar for Zulu123

List<Team> is what is know a [Generic list](http://msdn.microsoft.com/en-us/library/512aeb7t(v=vs.110).aspx)

Member Avatar for tinstaafl
0
172
Member Avatar for Dark_Omen

[QUOTE=ajnabidost;1317516]please help me out to connect oracle database in c# a complete example program is needed! please help[/QUOTE] Read this topic from the start. HINT: [url]http://www.connectionstrings.com/oracle[/url]

Member Avatar for Momerath
0
3K
Member Avatar for kubiak

Don't forget to see how to properly create your connection string http://www.connectionstrings.com/

Member Avatar for grarhakim
0
248
Member Avatar for srikanth2321

Call it a streach, but can't you use 2 combobox one has main items and second will contain submenu items

Member Avatar for deceptikon
0
220
Member Avatar for ComputerFirstAde
Member Avatar for stefano.a.feltre

After you create textboxes use the the foreach to loop through all controls, check if control is textbox, parse using TryParse to the desired type and add them together

Member Avatar for Momerath
0
148
Member Avatar for Indianblues

I agree with Ryshad, why use textbox that is ment for string when there is perfectly good control(numericUpDown) that is ment for integers.

Member Avatar for Michael27
0
513
Member Avatar for Michael27
Member Avatar for lilwizz770

Read this [Where do i start](http://www.dreamincode.net/forums/topic/292468-question-collapse-game-in-c%23/page__p__1705211&#entry1705211) And this [learning resources](http://www.dreamincode.net/forums/topic/241613-are-cookbooks-good-for-learning/page__view__findpost__p__1400743)

Member Avatar for Michael27
0
113
Member Avatar for John A
Member Avatar for ysmtek

Here, enjoy http://youtu.be/Rvn6mCzRRpU "Tech Support" scammer held on line for 75 minutes http://www.youtube.com/watch?v=kjKjyMKj3n4&feature=related Scamming the scammer http://www.youtube.com/watch?v=nhqxOFH2rmI&feature=related this is weird one

Member Avatar for BigPaw
1
286
Member Avatar for abdulhafeeslawal

http://www.csharpcourse.com/ here, it is free to dl. If this is not enough Read this [Where do I start?](http://www.dreamincode.net/forums/topic/292468-question-collapse-game-in-c%23/page__view__findpost__p__1705211)

Member Avatar for Michael27
0
47