Forum: C# Jan 14th, 2007 |
| Replies: 3 Views: 12,237 |
Forum: C++ Jan 13th, 2007 |
| Replies: 11 Views: 1,963 Re: C++ guidelines 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: 2,008 Re: Console Programming 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: 2,008 Console Programming 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: 1,850 Programming FAQ v2.0.1! 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 and Software Design Jul 21st, 2005 |
| Replies: 0 Views: 726 Programming Resources (Updated 21-July-05 ) 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... |
Forum: C# Jun 16th, 2005 |
| Replies: 1 Views: 3,204 New Thread is not allowing proper Paint Events 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: 7,011 |
Forum: C# Jun 14th, 2005 |
| Replies: 2 Views: 3,532 Re: Code run when form shown ? 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: 5 Views: 11,494 |
Forum: C# Jun 14th, 2005 |
| Replies: 7 Views: 7,341 Re: Download image from DB and view it... 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: 13,780 |
Forum: C# Jun 14th, 2005 |
| Replies: 1 Views: 5,978 Re: how to get the folder list of client side? 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: 11,027 Re: How to call a perl script in the C# app? 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: 18,107 Re: Creating a GUI using C# 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,109 Re: Help....C# Project 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: 4,834 |
Forum: C# Jun 14th, 2005 |
| Replies: 1 Views: 1,317 Re: question 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: 2,891 |
Forum: VB.NET May 16th, 2005 |
| Replies: 1 Views: 3,432 Re: Use C or c++ code in Visual basic net 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: 9,806 Re: Creating a .EXE file 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: 4 Views: 2,684 |
Forum: Computer Science and Software Design May 13th, 2005 |
| Replies: 4 Views: 2,204 |
Forum: Computer Science and Software Design May 13th, 2005 |
| Replies: 11 Views: 2,798 Re: need an idea to program 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: 1,976 Re: Which is worse? 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 strings... |
Forum: ASP.NET May 13th, 2005 |
| Replies: 1 Views: 1,959 Re: Where should i put Downloaded .NET 1.0 files? 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: 16,536 Re: problem reading xml file in c# try:
publicstatic Response Message(string doc)
{
XmlTextReader textReader = new XmlTextReader(doc);
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load(textReader);
return... |
Forum: C# May 13th, 2005 |
| Replies: 1 Views: 3,944 Re: System.Reflection 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: 4,257 Re: Binary data in app.config 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, or... |
Forum: C# May 10th, 2005 |
| Replies: 3 Views: 6,316 |
Forum: Computer Science and Software Design May 2nd, 2005 |
| Replies: 5 Views: 3,257 |
Forum: Computer Science and Software Design Apr 29th, 2005 |
| Replies: 0 Views: 874 Programming Resources 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 and Software Design Apr 29th, 2005 |
| Replies: 20 Views: 6,604 |
Forum: Computer Science and Software Design Apr 29th, 2005 |
| Replies: 2 Views: 2,529 Re: file extraction 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: 4,576 |
Forum: C# Apr 29th, 2005 |
| Replies: 4 Views: 12,461 |
Forum: Computer Science and Software Design Apr 28th, 2005 |
| Replies: 1 Views: 2,797 Re: Reverse Engineering 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: 3,577 Re: undo/redo help!!! 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: 1,937 Re: instrumenting an application in .NET 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 also... |
Forum: ASP.NET Apr 28th, 2005 |
| Replies: 1 Views: 4,220 |