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.5K People Reached
Favorite Tags
c# x 14

22 Posted Topics

Member Avatar for sharkymo

May not help but I too am going into the direction of Game/Software Design. As soon as I get threw my Generals in college(community.) I'll be off to West Wood College for a degree in Software Engineering ( cannot recall the exact name but its quite similar. ) Anyways, good …

Member Avatar for xtrmR
0
379
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
190
Member Avatar for free_eagle

Hello, I am just learning C# as my first programing language, and I've found Wrox's set of books quite help full. The first book I used to study up on C# was the Professional book of which I recommend. Also look into the Visual C# books as well. Wrox has …

Member Avatar for gira
0
340
Member Avatar for buyap

1. If you want to hide the file visually then modify the file's properties to 'hide' the file its self. 2. If you don't want the user to access that file and make use of the data stored within it then do what was previously mentioned, Encrypt the file and …

Member Avatar for sknake
0
137
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
125
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

1. @ the OP. Initialize the "int i" in the for loop 2. Why not declare the numbers 1-9 on your own? Example: [code=csharp] int[] intArray = { 1,2,3,4,5,6,7,8,9 }; [/code]

Member Avatar for Poab9200
0
6K
Member Avatar for S2009
Member Avatar for Poab9200
0
431
Member Avatar for achristov

I too think counting how many lines you create/change in a program... I'm quite the novice programmer but I've completly recoded an entire app of nearly 6000 lines of code in about 6 hours... I guess it all depends on: 1. How fast you can type(Sort of, one may use …

Member Avatar for Poab9200
0
146
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
68
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
124
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
72
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
258
Member Avatar for brandguru

Well here is my take at this game take it or leave it. I added some colors to the program to make it look more eye friendly. But none the less this took me about 30 minutes to code as I just pasted my color class in their. Granted the …

Member Avatar for Poab9200
0
2K
Member Avatar for Toulinwoek

Yeah I hear you on the database thing, also thanks for the info as it saved me lots of trouble :)

Member Avatar for pankajmk
0
284
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
80
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
116
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
121
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
117
Member Avatar for Acidburn

If I'm not mistaken I believe its telling you that its not in a String format its in a Bool format. Substitute String for Bool and see what happens... If it doesn't work then I'm sorry, and I hope someone can help resolve this issue for you. I am new …

Member Avatar for Narue
0
107
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
149

The End.