Posts
 
Reputation
Joined
Last Seen
Ranked #874
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
~38.2K People Reached
Favorite Tags

69 Posted Topics

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
225
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
296
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
274
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
467
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
304
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
387
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
322
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
436
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
207
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
106
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
258
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
292
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
290
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
179
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
252
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
233
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
149
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
517
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
115
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
289
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
48
Member Avatar for Michael27

I have 1 picturebox loaded with an image, what i'm trying to do is every time i click on loaded image the same picture loads into empty picturebox. Now for 1 picturebox is easy, all i do is picturebox1.Image = img; I'm trying to make an event that will load …

Member Avatar for Michael27
0
445
Member Avatar for anisha.silva

C# doesn't have final keyword, that is in Java something similar is here http://stackoverflow.com/questions/1327544/what-is-the-equivalent-of-javas-final-in-c

Member Avatar for Michael27
0
985
Member Avatar for Michael27

How to print portion of the List<int>, it contains 30 elements but i only want to print first 7 elements? List remains unchanged but is should only prints first 7 elements of the list

Member Avatar for Michael27
0
109
Member Avatar for king03

No, strings aren't int, they are different data types. use int total = fundsTextbox + betTextbox; then convert the total to string

Member Avatar for laurachaitow
0
127
Member Avatar for zelesi.chafilwa
Member Avatar for Michael27
-1
120
Member Avatar for els255
Member Avatar for Michael27
0
161
Member Avatar for Michael27

This tutorial is about extension methods in c# **What is an extension method** Sometimes it is necessary to add functionality to a library for which you do not own the source code and where using inheritance to subclass functionality is not viable. This problem can be overcome with the careful …

0
172
Member Avatar for de Source
Member Avatar for Michael27

I have GroupBox that is populated by Button controls, and a combobox that populates the groupBox based on the selected number in combobox(8, 16, 32). This is my populateGroupbox method private void populateGroupbox (GroupBox gBox, int number ) { for (int i = 0; i < number; i++) { Button …

Member Avatar for Momerath
0
222
Member Avatar for cumadhu
Member Avatar for pritesh2010

Or another useful site [DeveloperFusion](http://www.developerfusion.com/tools/convert/vb-to-csharp/)

Member Avatar for Michael27
0
119
Member Avatar for bhagawatshinde

He probably means to show him the entire C# code(do his work for him) for this particular program

Member Avatar for nesa24casa
0
167
Member Avatar for robin99
Member Avatar for king03

textBox_Leave(object sender, EventArgs e) is an event it occurs whenever a control is no longer an active control on a form

Member Avatar for nmaillet
0
231
Member Avatar for sundog1

Why can't you use [databinding](http://msdn.microsoft.com/en-us/library/b6y3aby2(v=vs.80).aspx)

Member Avatar for Mike Askew
0
191
Member Avatar for martand
Member Avatar for vinnitro

[C# yellow book by Rob Miles](http://www.robmiles.com/c-yellow-book/Rob%20Miles%20CSharp%20Yellow%20Book%202011.pdf) The C# Book is used by the Department of Computer Science in the University of Hull as the basis of the First Year programming course. We give away a free printed copy to students when they arrive in the department, and we also give …

Member Avatar for vinnitro
0
214
Member Avatar for mcuk

[Object-Oriented Thought Process, The (3rd Edition)](http://www.amazon.com/Object-Oriented-Thought-Process-The-Edition/dp/0672330164) And [Microsoft Visual C# 2010 Step by Step ](http://www.amazon.com/Microsoft-Visual-2010-Step/dp/0735626707) also don't forget MSDN for C# [Click Here](http://msdn.microsoft.com/en-us/vstudio/hh388566.aspx)

Member Avatar for abhishekde.nasa
0
116
Member Avatar for bhawnanarang91

In your INSERT statement adb is table not database, (studentid) is column an @s is the value you are inserting the general expreseion goes like this INSERT INTO table_name (column1, column2, column3,...) VALUES (value1, value2, value3,...)

Member Avatar for Momerath
0
204
Member Avatar for hiral2cool

If i understand correctly, you want Birthday date cell in dgw to reflect the datetimepicker control? Can you confirm that?

Member Avatar for AnnieCalvert
0
352

The End.