Forum: C# Jan 14th, 2007 |
| Replies: 3 Views: 20,403 Yeah, C# doesn't support falling through on switch statements ;) |
Forum: C++ Jan 13th, 2007 |
| Replies: 11 Views: 2,476 So what are you wanting suggestions and guidelines for?! Are you wanting project ideas, general guidelines, what? You have to be more specific and tell us what you want help with. |
Forum: C Oct 17th, 2006 |
| Replies: 4 Views: 3,372 Well it's not really for commercial use. It's more becuase I'm interested in it. And actualy, I'm really talking about a console program within a GUI program.
I.E: You've got a GUI, but the main... |
Forum: C Oct 17th, 2006 |
| Replies: 4 Views: 3,372 I've been wondering about console programming. Not the book example type stuff, but the 'real' console programming. Stuff that seems to use things like ncurses, or something like that I assume. I... |
Forum: Legacy and Other Languages Sep 2nd, 2005 |
| Replies: 1 Views: 2,270 Here is the programming FAQ v2.0.1! If you see something to add, let me know and I'll do it. Consider this one a beta, because I'm not near done, but at least I'm further than I've been before :)
... |
Forum: Computer Science Jul 21st, 2005 |
| Replies: 0 Views: 1,163 Because of some suggestions, I'm going to try to gather some good programming resources in this thread. If you know any good websites, either post them here, or PM me and I'll add them to this post.... |
Forum: C# Jun 16th, 2005 |
| Replies: 1 Views: 4,570 I've got a project going where I need to do some extensive searching, so I decided it would be best to put that code into a new thread. To make it a little more user friendly I decided to pop up a... |
Forum: C# Jun 14th, 2005 |
| Replies: 4 Views: 9,018 int[] x = y = z = new int[10];
// or I THINK this works too
int[] x, y, z = new int[10]; |
Forum: C# Jun 14th, 2005 |
| Replies: 2 Views: 5,795 Actually what you should do is add an event handler to either the Load event or the VisibleChanged event. It all depends on if you want the code to execute everytime the form is shown, or only the... |
Forum: C# Jun 14th, 2005 |
| Replies: 6 Views: 17,803 What exactly are you wanting to do? |
Forum: C# Jun 14th, 2005 |
| Replies: 7 Views: 9,304 I've never actually done that, but I'm guessing you're going to have to create some sort of BinaryStream then create a file out of that, then use the BitMap.LoadFromFile() method to load the... |
Forum: C# Jun 14th, 2005 |
| Replies: 2 Views: 20,860 You have to set the Visible property to false, or call the this.Hide() method. |
Forum: C# Jun 14th, 2005 |
| Replies: 1 Views: 8,240 I think you need to invoke a method on a client computer that calls the Directory.GetFolders() (can't remember if it's Directory or DirectoryInfo) method and pass an argument of type SpecialFolder... |
Forum: C# Jun 14th, 2005 |
| Replies: 3 Views: 16,378 You could use the Process or ProcessStartInfo classes to call the perl.exe process with the argument being the script.
Then you could use the properties of said classes to see if the script is still... |
Forum: C# Jun 14th, 2005 |
| Replies: 2 Views: 31,840 What do you mean? I would just open up something like Visual Studio .NET and start with what I normally call "MainForm" which is the main GUI, then create the main functionality on there and create a... |
Forum: C# Jun 14th, 2005 |
| Replies: 2 Views: 4,952 You need to post specifc problems, not just "Help Me". Plus, your deadline is already up, so this is just for future reference. |
Forum: C# Jun 14th, 2005 |
| Replies: 1 Views: 7,654 have you ever looked at http://sf.net/ there might some projects there you could join. |
Forum: C# Jun 14th, 2005 |
| Replies: 1 Views: 1,659 A programming language derived from C++ (which implies C as well) with focus on Object orientation and a runtime environment. |
Forum: ASP.NET May 16th, 2005 |
| Replies: 1 Views: 3,739 Read about the ProcessInfo and ProcessStartInfo classes. Also, you could check into some of the win32 API functions that might be able to help with this task. |
Forum: VB.NET May 16th, 2005 |
| Replies: 1 Views: 4,587 It depends, what's your situation? You can use stuff like PInvoke to call stuff from the Win32 API. Or you can add references to COM components and call their methods directly. It all depends on what... |
Forum: Java May 16th, 2005 |
| Replies: 18 Views: 12,721 What is the code you're running. I think I might know what your problem is, but I have to see the code you're using to confirm my suspissions. |
Forum: C# May 16th, 2005 |
| Replies: 6 Views: 3,697 What?
You want to be able to select part of an image so the user can have further usage? Please rephrase ;) |
Forum: Computer Science May 13th, 2005 |
| Replies: 4 Views: 2,771 You're probably going to want to use C. Since it can be low level or high level. I don't know of any books on the subject though. |
Forum: Computer Science May 13th, 2005 |
| Replies: 11 Views: 3,390 Something fairly simple woudl be a Chat Bot. Something that you type stuff two and it responds based on your input. You could do it command line, or you could make a swing application. |
Forum: Java May 13th, 2005 |
| Replies: 14 Views: 2,507 Strings are immutable. Meaning you can NEVER change them.
So if I do this:
String s1 = "Pig";
s1 += "Horse";
I've just made 3 permenant strings. I've made "Pig" "Horse" and "PigHorse". All... |
Forum: ASP.NET May 13th, 2005 |
| Replies: 1 Views: 2,394 I normally just extract to a temporary folder, like C:\tmp\ then after I install, I just delete all of c:\tmp\
Those files are just install files, so it really doesn't matter where you put them. I... |
Forum: C# May 13th, 2005 |
| Replies: 2 Views: 21,026 try:
publicstatic Response Message(string doc)
{
XmlTextReader textReader = new XmlTextReader(doc);
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load(textReader);
... |
Forum: C# May 13th, 2005 |
| Replies: 1 Views: 5,302 Have you tried msdn.microsoft.com or the .NET SDK Documentation? Both of those provide good explanations...I prefer msdn, but to each his own. |
Forum: C# May 10th, 2005 |
| Replies: 1 Views: 5,412 Are you wanting to store it as
<somesetting>12</somesetting>
or
<somesetting>1100</somesetting>
?
What I'm asking is, by binary data, are you wanting to write is as binary, or just write it,... |
Forum: C# May 10th, 2005 |
| Replies: 3 Views: 10,669 You're going to need to explain that one a little better :P |
Forum: Computer Science May 2nd, 2005 |
| Replies: 5 Views: 4,051 Java, vb (/me shivers), or maybe .net
It also depends on what the target phone is. |
Forum: Computer Science Apr 29th, 2005 |
| Replies: 0 Views: 1,301 This was orginally posted by ShadowBoxer:
Because of some suggestions, I'm going to try to gather some good programming resources in this thread. If you know any good websites, either post them... |
Forum: Computer Science Apr 29th, 2005 |
| Replies: 20 Views: 8,041 Read this link...
http://www.daniweb.com/tutorials/tutorial19933.html |
Forum: Computer Science Apr 29th, 2005 |
| Replies: 2 Views: 3,060 Sometimes, sometimes, companies just rename files. So, it might just be finding the correct file that the .exe uses. Search throughout the application folder, and try to find anything resembling the... |
Forum: ASP.NET Apr 29th, 2005 |
| Replies: 1 Views: 5,838 You posted this at devshed too :P
What exactly are you wanting to do. Because it vastly depends on what your end goal is, as to determine the best plan of attack. |
Forum: C# Apr 29th, 2005 |
| Replies: 4 Views: 19,273 It's just string. It's built in. Using that exact, word for word, example you'll get their ip. |
Forum: Computer Science Apr 28th, 2005 |
| Replies: 1 Views: 3,258 Since you know java, I'd find a program that is made in java that you'd like to practice reverse engineering on. Personally, I think it's easiest to practice on programs that you've made because you... |
Forum: ASP.NET Apr 28th, 2005 |
| Replies: 2 Views: 4,322 In the click events of your menu items you just need to call the undo/redo methods of the RichTextBox or TextBox you have on your form....You can also check to see if it's possible to undo or redo in... |
Forum: ASP.NET Apr 28th, 2005 |
| Replies: 1 Views: 2,367 I've never used that namespace but my guess would be there is either some sort of property in that namespace that can tell you, or maybe one of the Application or Environment classes.
You might... |
Forum: ASP.NET Apr 28th, 2005 |
| Replies: 1 Views: 6,277 You don't install the webservice. You just use it in your application. A webservice just takes input and returns a result....it's not something you have to install. You will, however, have to create... |