- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
22 Posted Topics
Re: 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 … | |
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 … | |
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 … | |
Re: 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 … | |
Re: 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 … | |
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 … | |
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 … | |
Re: 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] | |
Re: In the for loop shouldn't you use the != instead of the < than operator? | |
Re: 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 … | |
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 … | |
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 … | |
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 … | |
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 … | |
Re: 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 … | |
Re: Yeah I hear you on the database thing, also thanks for the info as it saved me lots of trouble :) | |
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 … | |
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 … | |
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 … | |
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 … | |
Re: 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 … | |
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) … |
The End.