Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Showing results 1 to 40 of 101
Search took 0.03 seconds.
Search: Posts Made By: jaeusm
Forum: Java Aug 17th, 2007, 3:25 PM
Replies: 5
Views: 244
Posted By jaeusm
Why do you want this code in Java? Is this an...

Why do you want this code in Java? Is this an assignment?
Forum: Coder's Corner Lounge Aug 14th, 2007, 12:38 PM
Replies: 6
Views: 194
Posted By jaeusm
They did the same thing with mine, but I still...

They did the same thing with mine, but I still received it on time.
Forum: C# Aug 2nd, 2007, 12:34 AM
Replies: 2
Views: 148
Posted By jaeusm
There's no way that is natively supported in VS...

There's no way that is natively supported in VS 2005, but you can download and install MSBee. Make sure to read the documentation that's included in the zip file.
http://www.codeplex.com/MSBee
Forum: C# Jul 24th, 2007, 4:58 PM
Replies: 5
Views: 178
Posted By jaeusm
'Shown' is an event, not a boolean value. You...

'Shown' is an event, not a boolean value. You might want to consider the 'Visible' property.
Forum: C# Jun 15th, 2007, 9:32 AM
Replies: 3
Views: 114
Posted By jaeusm
You could use a delegate, which is essentially a...

You could use a delegate, which is essentially a type safe function pointer.
Forum: Other Scripting Languages Jun 9th, 2007, 6:03 PM
Replies: 9
Views: 517
Posted By jaeusm
.NET 3.0 is basically just a set of technologies...

.NET 3.0 is basically just a set of technologies added to .NET 2.0. I wouldn't call that a "radical change" at all.


:rolleyes:
Forum: C# Jun 2nd, 2007, 3:30 PM
Replies: 5
Views: 221
Posted By jaeusm
How do you know that the compression is actually...

How do you know that the compression is actually working? Based on your code, it appears that you are creating a compressed text file containing whatever text is stored in the "data" argument. Your...
Forum: C# May 24th, 2007, 9:38 AM
Replies: 6
Views: 175
Posted By jaeusm
All you need is VS 2005. You'll have to get the...

All you need is VS 2005. You'll have to get the .NET 3.0 extensions as well.
Forum: C# May 24th, 2007, 12:47 AM
Replies: 6
Views: 175
Posted By jaeusm
Windows Presentation Foundation (.NET 3.0) allows...

Windows Presentation Foundation (.NET 3.0) allows you to create skins for your apps. As for WinForms, you can change the colors.
Forum: C# May 23rd, 2007, 12:21 AM
Replies: 7
Views: 103
Posted By jaeusm
I think it may be in your best interest to...

I think it may be in your best interest to purchase an introductory C# programming book. Many people like Jesse Liberty's "Programming C#" book. It will start you out at ground level and work up.
Forum: C# May 22nd, 2007, 9:57 PM
Replies: 3
Views: 87
Posted By jaeusm
Each "try" must be matched up with either a...

Each "try" must be matched up with either a "catch" or a "finally".

No.
Forum: C# May 22nd, 2007, 12:52 PM
Replies: 4
Views: 199
Posted By jaeusm
Only the thread that created the UI element can...

Only the thread that created the UI element can update or change it. You can use a delegate to invoke the creating thread from a different thread.


That example uses the asynchronous programming...
Forum: Java Apr 19th, 2007, 10:32 PM
Replies: 8
Views: 157
Posted By jaeusm
There isn't anything exactly like cin in Java. ...

There isn't anything exactly like cin in Java. However, creating and using a scanner is quite trivial. I don't really see the problem.
Forum: Java Apr 19th, 2007, 12:49 PM
Replies: 15
Views: 436
Posted By jaeusm
Ajile Systems AJ-100 processor natively executes...

Ajile Systems AJ-100 processor natively executes Java bytecode. Microcontrollers from Systronix, like the SaJe, use Ajile processors. They also use a modified version of the J2ME.

I used the...
Forum: Coder's Corner Lounge Feb 8th, 2007, 12:04 AM
Replies: 37
Views: 907
Posted By jaeusm
I've been developing .NET 3.0 apps on Vista...

I've been developing .NET 3.0 apps on Vista Ultimate for a few months now at work, and having used OS X in the past, I don't understand this comment.

I have found Vista to be quite stable, as I...
Forum: Software Design and Algorithms Oct 26th, 2006, 2:28 PM
Replies: 8
Views: 211
Posted By jaeusm
I never had to implement it in code, but I had to...

I never had to implement it in code, but I had to use it often for a DSP class. For labs, used the fft function in MatLab. For exams, pencil and paper. It really doesn't seem like an appealing...
Forum: Java Oct 5th, 2006, 11:19 AM
Replies: 8
Views: 287
Posted By jaeusm
You are correct. However, I started using the...

You are correct. However, I started using the client socket before it was accepted by sending a simple message. The ServerSocket apparently queues the message and responds after it accepts the...
Forum: Java Oct 5th, 2006, 10:33 AM
Replies: 8
Views: 287
Posted By jaeusm
Yes, I know, but you've misunderstood me. When I...

Yes, I know, but you've misunderstood me. When I say I mean that the client Socket will not return from the constructor call until it has been accepted by the ServerSocket, including the time it...
Forum: Java Oct 5th, 2006, 10:02 AM
Replies: 8
Views: 287
Posted By jaeusm
Why would you want to know this? I would assume...

Why would you want to know this? I would assume that the creation of the client's socket would not return until the ServerSocket has 'accepted' the request, though the Java APIs don't explicitly...
Forum: Java Oct 3rd, 2006, 1:58 PM
Replies: 3
Views: 240
Posted By jaeusm
A few things I noticed: 1) You have no import...

A few things I noticed:
1) You have no import statements
2) You are using a bitwise 'and' in your selection statements. Change '&' to '&&'.
3) Is your code actually spaced as shown above? If so,...
Forum: PHP Aug 10th, 2006, 11:02 PM
Replies: 15
Views: 433
Posted By jaeusm
Seems relevant to me...

Seems relevant to me...
Forum: Coder's Corner Lounge Jul 29th, 2006, 2:56 AM
Replies: 19
Views: 390
Posted By jaeusm
INTJ for me.

INTJ for me.
Forum: Coder's Corner Lounge Jul 20th, 2006, 12:20 PM
Replies: 7
Views: 186
Posted By jaeusm
In practice, a computer science degree can land...

In practice, a computer science degree can land you nearly the same jobs as a computer engineering degree. Also, since you mentioned mathematics, the math involved in engineering is actually a bit...
Forum: Coder's Corner Lounge Jul 3rd, 2006, 10:39 PM
Replies: 53
Views: 973
Posted By jaeusm
The bottom line is that programs (should) solve...

The bottom line is that programs (should) solve problems. The language used is a means to an end. Why make life more difficult by insisting on using a more complex, time-consuming language when a...
Forum: Coder's Corner Lounge Jun 29th, 2006, 9:17 AM
Replies: 15
Views: 423
Posted By jaeusm
It's a college major, not a career choice. I'm...

It's a college major, not a career choice. I'm not telling you I think the chances are equal, I'm telling you they are. I spent 9 years in school going through both CE and CS. The curriculums are...
Forum: Coder's Corner Lounge Jun 28th, 2006, 10:20 PM
Replies: 15
Views: 423
Posted By jaeusm
CS is more focused on programming, algorithms,...

CS is more focused on programming, algorithms, and theoretical computing concepts. CE is the intersection of CS and electrical engineering. Either field of study can land you the same job.
Forum: Software Design and Algorithms Jun 27th, 2006, 9:32 PM
Replies: 7
Views: 226
Posted By jaeusm
Doesn't someone have to block on the socket to...

Doesn't someone have to block on the socket to accept a connection?
Forum: Software Design and Algorithms Jun 26th, 2006, 9:43 PM
Replies: 7
Views: 226
Posted By jaeusm
Why would you want to use a non-blocking socket? ...

Why would you want to use a non-blocking socket? If you don't block, then the client must try to connect the instant the server socket calls its accept (or equivalent) method. Typically, you want...
Forum: C++ Jun 26th, 2006, 5:01 PM
Replies: 19
Views: 503
Posted By jaeusm
Streamlines the process. Would you like a...

Streamlines the process.


Would you like a cookie?
Forum: C++ Jun 26th, 2006, 11:53 AM
Replies: 19
Views: 503
Posted By jaeusm
That's true, but "converting tutorials" focus on...

That's true, but "converting tutorials" focus on the differences between languages. That helps the reader assimilate the new material quicker.
Forum: Java Jun 23rd, 2006, 11:32 AM
Replies: 5
Views: 330
Posted By jaeusm
I can't download and compile this at work (we...

I can't download and compile this at work (we only develop .NET), so what is the actual error message?
Forum: Software Design and Algorithms Jun 17th, 2006, 1:07 AM
Replies: 22
Views: 586
Posted By jaeusm
To meet the "easy" requirement, I'd use C#, Java,...

To meet the "easy" requirement, I'd use C#, Java, or Python. You're not limited to those, however. As for "secure", most of that falls on the shoulders of the developer.
Forum: Coder's Corner Lounge Jun 15th, 2006, 6:19 PM
Replies: 29
Views: 662
Posted By jaeusm
I did my undergrad work in mechanical engineering...

I did my undergrad work in mechanical engineering and computer engineering. Afterward, I earned an MS in computer science.
Forum: Other Programming Languages Jun 12th, 2006, 10:40 PM
Replies: 12
Views: 317
Posted By jaeusm
I'd never buy a book based on publisher. I've...

I'd never buy a book based on publisher. I've never been impressed with any particular publishing company. However, there are a few authors that I always keep an "eye out" for.
Forum: C# Jun 11th, 2006, 1:47 PM
Replies: 47
Views: 1,078
Posted By jaeusm
I use both languages. They are extremely...

I use both languages. They are extremely similar, but there are small differences between them. I think making GUIs with C# is easier than with Java, but I like Java's threading model over C#'s. ...
Forum: Python Jun 10th, 2006, 9:20 PM
Replies: 6
Views: 200
Posted By jaeusm
A format specifier is a placeholder for a value...

A format specifier is a placeholder for a value that you will provide. In this case, you provided an integer stored in a variable named 'humanScore'. The % sign outside of the string indicates that...
Forum: Python Jun 10th, 2006, 8:59 PM
Replies: 6
Views: 200
Posted By jaeusm
First, use code tags for posting code. Second,...

First, use code tags for posting code.

Second, use a format specifier to display the int in a string.
print usrname + "'s final score is %d" % humanScore
Forum: Python Jun 9th, 2006, 2:47 AM
Replies: 25
Views: 618
Posted By jaeusm
Too bad for you.

Too bad for you.
Forum: C# Jun 8th, 2006, 9:44 PM
Replies: 47
Views: 1,078
Posted By jaeusm
That was the case when I was in college, as well....

That was the case when I was in college, as well. I did some Googling (not a lot) and couldn't find a solid answer. However, the implications seem to point to .NET being the larger framework. A...
Forum: C# Jun 8th, 2006, 4:17 PM
Replies: 47
Views: 1,078
Posted By jaeusm
Are you sure about this? I'm not saying you're...

Are you sure about this? I'm not saying you're wrong, but my references seem to imply that .NET 2.0 is a larger framework/API than Java. Though, whose framework is larger doesn't seem extremely...
Showing results 1 to 40 of 101

 
Forum Jump



DaniWeb IT Discussion Community
All times are GMT -5. The time now is 4:46 AM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC