User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
DaniWeb is a massive community of 397,634 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,329 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Showing results 1 to 40 of 117
Search took 0.01 seconds.
Posts Made By: Iron_Cross
Forum: C# Jan 14th, 2007
Replies: 3
Views: 12,237
Posted By Iron_Cross
Re: C# beginner switch statement

Yeah, C# doesn't support falling through on switch statements ;)
Forum: C++ Jan 13th, 2007
Replies: 11
Views: 1,963
Posted By Iron_Cross
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
Posted By Iron_Cross
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
Posted By Iron_Cross
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
Posted By Iron_Cross
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
Posted By Iron_Cross
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
Posted By Iron_Cross
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
Posted By Iron_Cross
Re: setw() function in C#?

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: 3,532
Posted By Iron_Cross
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
Posted By Iron_Cross
Re: Flash With C#

What exactly are you wanting to do?
Forum: C# Jun 14th, 2005
Replies: 7
Views: 7,341
Posted By Iron_Cross
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
Posted By Iron_Cross
Re: C#,system tray, wont go from task bar.

You have to set the Visible property to false, or call the this.Hide() method.
Forum: C# Jun 14th, 2005
Replies: 1
Views: 5,978
Posted By Iron_Cross
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
Posted By Iron_Cross
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
Posted By Iron_Cross
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
Posted By Iron_Cross
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
Posted By Iron_Cross
Re: Looking for freelance projects

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,317
Posted By Iron_Cross
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
Posted By Iron_Cross
Re: building a program similiar to "task manager"

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: 3,432
Posted By Iron_Cross
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
Posted By Iron_Cross
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
Posted By Iron_Cross
Re: Help, Implementation of a selection tool

What?
You want to be able to select part of an image so the user can have further usage? Please rephrase ;)
Forum: Computer Science and Software Design May 13th, 2005
Replies: 4
Views: 2,204
Posted By Iron_Cross
Re: Programming Language required

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 and Software Design May 13th, 2005
Replies: 11
Views: 2,798
Posted By Iron_Cross
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
Posted By Iron_Cross
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
Posted By Iron_Cross
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
Posted By Iron_Cross
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
Posted By Iron_Cross
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
Posted By Iron_Cross
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
Posted By Iron_Cross
Re: adding innertext to an xml node

You're going to need to explain that one a little better :P
Forum: Computer Science and Software Design May 2nd, 2005
Replies: 5
Views: 3,257
Posted By Iron_Cross
Re: What is the best language to use to use to create a menu for mobile phone????

Java, vb (/me shivers), or maybe .net

It also depends on what the target phone is.
Forum: Computer Science and Software Design Apr 29th, 2005
Replies: 0
Views: 874
Posted By Iron_Cross
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
Posted By Iron_Cross
Re: What language to start with

Read this link...
http://www.daniweb.com/tutorials/tutorial19933.html
Forum: Computer Science and Software Design Apr 29th, 2005
Replies: 2
Views: 2,529
Posted By Iron_Cross
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
Posted By Iron_Cross
Re: "Not Responding" Message in Windows Form Application

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: 12,461
Posted By Iron_Cross
Re: is there a way to get an ip using c# and asp.net

It's just string. It's built in. Using that exact, word for word, example you'll get their ip.
Forum: Computer Science and Software Design Apr 28th, 2005
Replies: 1
Views: 2,797
Posted By Iron_Cross
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
Posted By Iron_Cross
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
Posted By Iron_Cross
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
Posted By Iron_Cross
Re: Installing a web service and a form application together

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...
Showing results 1 to 40 of 117

 
All times are GMT -4. The time now is 10:03 pm.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC