Forum: Coder's Corner Lounge
Today, 6:18 PM
|
|
Replies: 10
Views: 83
|
Forum: C
Sep 30th, 2008, 1:27 PM
|
|
Replies: 8
Views: 208
Re: Help with syntax error in C
What I see is on this one, you set up a pointer to a char called studentID. When you assign this to a long, the compiler is telling you you can't assign a pointer to a long. You need set up your...
|
Forum: C++
Sep 28th, 2008, 8:53 AM
|
|
Replies: 9
Views: 310
|
Forum: Visual Basic .NET
Sep 23rd, 2008, 10:17 PM
|
|
Replies: 4
Views: 212
Re: Services in .NET programming
The emailing and printing is just an after-effect of the part I'm wanting to make into a service. The first part runs through completely, then, depending on results and settings, will email and/or...
|
Forum: Other Programming Languages
Sep 22nd, 2008, 10:51 PM
|
|
Replies: 4
Views: 165
|
Forum: Visual Basic .NET
Sep 21st, 2008, 10:43 AM
|
|
Replies: 9
Views: 511
Re: .Net printing
Sorry for the delay, but here is how I did it.
If PrintingActiveToolStripMenuItem.Checked = True Then
PrntDoc.Print()
End If
Private Sub PrntDoc_PrintPage(ByVal sender As Object, ByVal e As...
|
Forum: Visual Basic .NET
Sep 20th, 2008, 5:26 PM
|
|
Replies: 4
Views: 212
Services in .NET programming
I have a program that I'm looking into converting the meat of the program into a service, and for two reasons: to free up the user interface while it's processing and so that it will run even if the...
|
Forum: Java
Sep 20th, 2008, 3:40 PM
|
|
Replies: 15
Views: 379
Re: Making a program that saves?
I think using a while loop would not work, because the window would be closed already and you wouldn't be able to pull any information from the form. BinarySurfer has it right, using the window's...
|
Forum: Community Introductions
Sep 20th, 2008, 3:30 PM
|
|
Replies: 9
Views: 148
Re: Hello Everyone
Well I can think of a simple one, and the answers should be pretty self-evident: the calculator.
|
Forum: Community Introductions
Sep 20th, 2008, 3:00 PM
|
|
Replies: 9
Views: 148
Re: Hello Everyone
a CLI is a command line interface, as opposed to a graphical user interface. Almost anything you see on a Windows machine is a GUI interface. The dos prompt, or console prompt, however, is a CLI. ...
|
Forum: C++
Sep 20th, 2008, 12:50 PM
|
|
Replies: 20
Views: 454
|
Forum: Visual Basic .NET
Sep 19th, 2008, 11:55 AM
|
|
Replies: 10
Views: 553
|
Forum: C#
Sep 18th, 2008, 11:21 AM
|
|
Replies: 5
Views: 286
|
Forum: Visual Basic
Sep 18th, 2008, 11:09 AM
|
|
Replies: 4
Views: 234
|
Forum: Visual Basic .NET
Sep 17th, 2008, 11:49 AM
|
|
Replies: 2
Views: 103
|
Forum: Visual Basic
Sep 16th, 2008, 4:51 PM
|
|
Replies: 20
Views: 486
Re: New to Programming Help please.
I don't find C# all that easy, but it is similar to C++. From what I can tell, it's C++ meets Visual Basic, and what you wind up with is Visual Basic with less Intellisense and a C++ feel.
|
Forum: Java
Sep 16th, 2008, 4:48 PM
|
|
Replies: 15
Views: 379
|
Forum: Coder's Corner Lounge
Sep 13th, 2008, 8:30 AM
|
|
Replies: 12
Views: 424
|
Forum: Coder's Corner Lounge
Sep 12th, 2008, 8:36 AM
|
|
Replies: 12
Views: 424
Re: How do i view what's stored in my RAM?
I'd almost say the spammers are getting smarter. This smells a lot like the spams from a while back, one user asks if this can be done, another user waits a while then spams a product. Back then,...
|
Forum: Coder's Corner Lounge
Sep 3rd, 2008, 10:00 PM
|
|
Replies: 1
Views: 142
|
Forum: Visual Basic
Sep 3rd, 2008, 9:56 PM
|
|
Replies: 3
Views: 196
Re: School work
Well, you're getting ready to shit down the other leg, the only help I'm giving you is to suggest downloading VB express from Microsoft and cramming something into your head. Quickly now, you only...
|
Forum: Coder's Corner Lounge
Sep 3rd, 2008, 9:48 PM
|
|
Replies: 2
Views: 171
Re: Fork you
The application itself runs on HP-UX, but the client runs on Windows XP. I'm trying to figure out of this message was the cause or result of a database crash.
|
Forum: Coder's Corner Lounge
Sep 3rd, 2008, 9:38 AM
|
|
Replies: 2
Views: 171
Fork you
If an application says it can't fork a new process, does this simply mean it ran out of heap or stack memory.
|
Forum: Paid Job Offers
Aug 30th, 2008, 6:17 AM
|
|
Replies: 2
Views: 201
|
Forum: Software Design and Algorithms
Aug 30th, 2008, 12:21 AM
|
|
Replies: 64
Views: 1,934
|
Forum: Visual Basic .NET
Aug 28th, 2008, 1:38 PM
|
|
Replies: 0
Views: 132
URI usage
I have the following code from MSDN that is given as an example of using the FileWebRequest class in VB.net
Private Sub FtpFile(ByVal from_uri As String, ByVal to_uri _
As String, ByVal user_name...
|
Forum: Coder's Corner Lounge
Aug 22nd, 2008, 5:11 PM
|
|
Replies: 6
Views: 244
Re: Platform specific programming
Well, after reading the rest of this article, I don't think there would be any problem with what simple code I'd be using. There's still the option of 32 bit compiling, which is what I would...
|
Forum: Coder's Corner Lounge
Aug 22nd, 2008, 9:18 AM
|
|
Replies: 6
Views: 244
Re: Platform specific programming
Thanks guys, food for thought. Sounds like since I'm on x64 I should have no problem running 32 bit apps, so programming should be no different.
|
Forum: Coder's Corner Lounge
Aug 20th, 2008, 4:57 PM
|
|
Replies: 6
Views: 244
Platform specific programming
My question (or concern) is about platform specific programming. At work, we use WinXP, and there's some things I'm wanting to program for those workstations, but never seem to have time at work to...
|
Forum: Software Design and Algorithms
Aug 11th, 2008, 12:38 AM
|
|
Replies: 4
Views: 232
Re: Dice Probabilities
Maybe I'm misunderstanding probablility here, but there's always 100% probability of rolling a 1?
|
Forum: C#
Aug 9th, 2008, 9:52 AM
|
|
Replies: 4
Views: 495
|
Forum: C#
Aug 9th, 2008, 2:11 AM
|
|
Replies: 5
Views: 249
Re: Question About Arrays Output
I'm not familiar with the specifics of C# syntax, but wouldn't you be looking for 2 words? Therefor, by using for loops, you could print 2 words, print a newline, then print the next 2 words.
|
Forum: Coder's Corner Lounge
Aug 9th, 2008, 12:42 AM
|
|
Replies: 3
Views: 180
Re: Insider honeypot?
That's sound advice, in a normal situation. The problem from my perspective is this: we have just gone through a major structure change, along with a new entity acquisition which pretty much doubled...
|
Forum: Coder's Corner Lounge
Aug 8th, 2008, 11:07 PM
|
|
Replies: 3
Views: 180
Insider honeypot?
At my place of business, there's a recently acquired "analyst" who is about as unscrupulous as they come. Within the first week, he already had several admin accounts on our servers without the...
|
Forum: Community Introductions
Aug 8th, 2008, 7:50 AM
|
|
Replies: 12
Views: 540
Re: Hello
It's not hate really, it's resentment. From what I hear, Indians will work for 1/3 of what we normally make for the same job. It's the same with Mexicans, and no I'm not being racists, that's just...
|
Forum: C#
Aug 2nd, 2008, 12:09 AM
|
|
Replies: 3
Views: 221
Re: General Programming Question
From what I understand, which is very little, you would use the handle to the other program as an inroad into that program. This is what I've discovered while reading about scripting. The handle...
|
Forum: Coder's Corner Lounge
Jul 31st, 2008, 10:03 PM
|
|
Replies: 34
Views: 1,355
Re: Uman's WEEKEND CHALLENGE
So you're saying mouse users are better than keyboard users? Welcome to la-la land mouser. While your hand is off the keyboard going for the mouse, somebody just sent you a ping of death.
|
Forum: Java
Jul 29th, 2008, 7:09 PM
|
|
Replies: 2
Views: 166
Re: Network Question
Seems to me, you would want to send the same message to each client...would be the same as sending a message to one client, just pass the message into the client's listener or something.
|
Forum: Other Scripting Languages
Jul 28th, 2008, 6:18 AM
|
|
Replies: 11
Views: 799
|
Forum: Coder's Corner Lounge
Jul 27th, 2008, 10:08 PM
|
|
Replies: 4
Views: 175
|