Posts
 
Reputation
Joined
Last Seen
Ranked #3K
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 #4K
~13.0K People Reached
Member Avatar for sharkymo

guys,,, m doin my final year BE-cse...i need a career advise..my passion is game design (not coding) like char,areas,etc...but if sme1 really teach me the easiest way to code definetly i will copeup..what is the scope for game designers now a days..??? i want tis information to pursue my higher …

Member Avatar for xtrmR
0
377
Member Avatar for Poab9200

Hello all I've got a question. I have a datagridview control with autocomplete features with it. And was wondering if it would be possible to add 'Tooltips' to the suggested entry. What I'm trying to accomplish is what Visual Studio has done with their intellisense/auto complete feature. For example when …

Member Avatar for bbman
0
199
Member Avatar for Poab9200

Hello all, I'll do my best to make this as simple as possible to explain. 1. I'm using a WinForm DataGridView. 2. I'm using an auto complete feature that I've coded and I'm trying to add the data that a user has entered in the first column to a generic …

0
183
Member Avatar for free_eagle

Dear forum members, Could you please let me know from your experience the best avaibable textbooks to learn C# effectively with examples? I am planning to start to learn C# programming but I have no idea from where to start and which book to read. I have Deitel's books Programming …

Member Avatar for gira
0
334
Member Avatar for buyap

I m a beginner. Using open source, I have compiled a freeware Eng-Hindi dictionary in C# with a 40K word data input source as a Text file. Is there someway to modify / hide the said Text file from front end user. Thanks.

Member Avatar for sknake
0
132
Member Avatar for Poab9200

Aside from many projects I'm working on to learn more about general programming and this language it self. I was wondering how do programmers create "program specific files". Examples: Microsoft Word has .doc type files. Adobe Acrobat Reader has .pdf files. Photoshop has .psd files. On a current project I'm …

Member Avatar for Poab9200
0
123
Member Avatar for Poab9200

First off. Hello, I'm having issues with my little program I've got a few classes down to a tee and am having issues with the War class. With the following code I iterate a new game of War and I have stats that hopefully will help some figure out whats …

Member Avatar for Poab9200
0
2K
Member Avatar for andreivanea

Hello. I am writing a program that uses a List<T> object to retain a list of int[] objects. [CODE=C#] private int[] numbers = new int[9]; private List<int[]> theList = new List<int[]>(); [/CODE] It's basicaly a backtracking algorithm that constructs the [I]numbers[/I] object, which contains a permutatio of the numbers 1..9, …

Member Avatar for Poab9200
0
6K
Member Avatar for S2009

Hi all, I am creating an Windows application. I have 2 forms. In First form I have two buttons. The Second Buttons Enabled property is set to False. If the First button is clicked then Form 2 should be shown which I have done with the Coding. In the second …

Member Avatar for Poab9200
0
411
Member Avatar for achristov

Hi guys, Has someone measured how many lines of code (approx) she/he produces daily? NLoc utility or OxyProject Metrics help in counting number of lines. Thanks!

Member Avatar for Poab9200
0
140
Member Avatar for Poab9200

Hello all, and happy fourth. First off, I've been trying to create this little app for quite some time now and I've gotten pretty far as the code just "came" to me the other day. So I've gotten... I'd say about 80% done with this project but I am having …

0
67
Member Avatar for Poab9200

Hello All, I have a question more like suggestions but none the less. For the past few days I've been thinking what "skill sets" not too sure what the proper word would be. Ok more to the point. I just what to know what things a programmer would need to …

Member Avatar for Poab9200
0
111
Member Avatar for Poab9200

Hello I made the following program for someone on this site that had requested the game. I didn't have a problem making it. During some tests I conducted I ran into a problem, at least what had seemed like a problem. Player 1 will win on average 90-96% of the …

0
67
Member Avatar for Poab9200

Ok, first things first. Hello everyone, I have a question. How would I go about adding Shortcut Arguments to my program(Code shown below). My idea: I play a game called [I]Counter-Strike:Source[/I] and recently I've needed to gather all the names of custom maps added to the \map directory. To the …

Member Avatar for ddanbe
0
242
Member Avatar for brandguru

Hey All I want to create a simple dice golf game in C# The basic idea is: A player rolls 3 random dice until they roll a double The number of rolls taken until a double is rolled is calculated and displayed on the console This is run 18 times …

Member Avatar for Poab9200
0
2K
Member Avatar for Toulinwoek

I have a help file (.chm), and I want to be able to perform a seemingly simple operation of having that file open when the user selects "Contents" from the "Help" menu. I have added the proper object to the project and set it's namespace property to the location of …

Member Avatar for pankajmk
0
279
Member Avatar for Poab9200

Hello All, I am trying to read information from a text file and then add this to it: <a href="(Info from text file goes here)">(Program copies Info from the file then adds it here</a> All I am asking is if someone could point me in the right direction of what …

Member Avatar for LizR
0
77
Member Avatar for Poab9200

Hello all, I have a few questions and some problems. I've been doing some searching on the web and cannot find a source that can aid me with these issues. Anyways, I have several text box's that need to have the following properties: Numbers-Only Commas Ex. 1,000 instead of 1000 …

Member Avatar for LizR
0
114
Member Avatar for Poab9200

First off here is my code: [CODE=csharp] using System; using System.Collections.Generic; using System.Text; namespace example_1 { class Program { static void Main(string[] args) { decimal d = 24; string input; Console.WriteLine("Enter A number"); input = Console.ReadLine(); decimal total = Convert.ToDecimal(input), result = (d * total); Console.WriteLine(result); Console.WriteLine(); Console.WriteLine(); Console.WriteLine("Would you …

Member Avatar for Poab9200
0
117
Member Avatar for Poab9200

Hello, I'm having an issue trying to get the data from several TextBoxes in FormB to FormA. In FormB I use a string to gather the data from the TextBox like so: [CODE=csharp] private void asBtnOk_Click(object sender, EventArgs e) { string asRate = asBoxRate.Text; } [/CODE] Then I go to …

Member Avatar for Poab9200
0
114
Member Avatar for Acidburn

Whats wrong with this syntax? I can't figure it out for the life of me! [code] String str = ((String)result[i][1] ? (String)result[i][1] : ""); [/code] [quote] Error 7 Cannot implicitly convert type 'string' to 'bool' [/quote] its doing me trunk in :p

Member Avatar for Narue
0
105
Member Avatar for Poab9200

Hello all, I'm trying to create a simple program that creates a text file with some text inside of it. First off, I've managed to create the text file with a few lines of text. My Issue is that I need to use Quotes "" inside of my text file(main.cfg) …

Member Avatar for Poab9200
0
143