Programming Forums
User Name Password Register
 

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

Showing results 1 to 40 of 500
Search took 0.15 seconds.
Search: Posts Made By: Prm753
Forum: Coder's Corner Lounge Jan 2nd, 2008, 4:08 PM
Replies: 28
Views: 624
Posted By Prm753
Forum: Coder's Corner Lounge Dec 26th, 2007, 3:00 PM
Replies: 2
Views: 124
Posted By Prm753
Re: Securely Delete Files

Eraser (http://www.heidi.ie/eraser/) will work for that, I believe.

Both CCleaner (http://www.ccleaner.com/) and Spybot S&D (http://www.safer-networking.org/index2.html) have secure delete...
Forum: Coder's Corner Lounge Nov 26th, 2007, 12:18 PM
Replies: 0
Views: 203
Posted By Prm753
Conflict Online

Hi all,

About a year ago, someone posted a link to Conflict Online text game here, and it went over pretty well. It was a lot of fun and we had a few PFO members come and waste some time playing...
Forum: Coder's Corner Lounge Nov 8th, 2007, 11:48 AM
Replies: 6
Views: 225
Posted By Prm753
Re: Wav to Mp3

Audacity (http://audacity.sourceforge.net/) will do it. Be sure you have LAME (http://lame.sourceforge.net/index.php) to encode the mp3's.
Forum: C++ Oct 30th, 2007, 1:00 PM
Replies: 11
Views: 702
Posted By Prm753
Re: problems with CopyFileEX

Take out the types. I can't even compile with them in there. The function has already been written in windows.h, just call it. For example:

CopyFileEx("C:\\Dev-Cpp\\1.txt", "C:\\2.txt", NULL, NULL,...
Forum: Community Announcements and Feedback Oct 18th, 2007, 7:05 PM
Replies: 25
Views: 1,132
Posted By Prm753
Re: New Features

Hi csgal,

I've been a member here for about two years, and I've lurked about for the past few days reading about all the changes. I think you'll bring a lot to PFO, and I truly believe it will...
Forum: Coder's Corner Lounge Oct 4th, 2007, 6:12 PM
Replies: 11
Views: 346
Posted By Prm753
Thanks for the comments, y'all. Glad you could...

Thanks for the comments, y'all. Glad you could have a little bit of fun with the game. :)

http://www.digg.com/pc_games/Wanna_go_carpet_fishing

Woo! Someone else already Dugg it! For fun, would...
Forum: Coder's Corner Lounge Oct 2nd, 2007, 5:27 PM
Replies: 11
Views: 346
Posted By Prm753
CarpetFishing!

This is a joke. I thought I might post this here because it's funny to me.

On Sunday, I was reading the comics (people do that sometimes, you know), and I came across this...
Forum: C++ Sep 1st, 2007, 1:14 PM
Replies: 3
Views: 252
Posted By Prm753
I've always used something like this to get my...

I've always used something like this to get my font un-nasty:

HWND hWnd = GetDlgItem( hWndButton, "BUTTON" );
HFONT hFont = GetStockObject( DEFAULT_GUI_FONT );
SendMessage( hWndButton, WM_SETFONT,...
Forum: C++ Aug 30th, 2007, 4:02 PM
Replies: 4
Views: 238
Posted By Prm753
Segmentation Fault!

I keep getting a Segmentation Fault in my program and I cannot figure it out. I don't have much experience with that sort of thing, so maybe you could give me some advice.

Here is the code that...
Forum: Coder's Corner Lounge Aug 26th, 2007, 12:24 AM
Replies: 4
Views: 153
Posted By Prm753
*coughs* Pay-per-view? Netflix? Isn't that what...

*coughs*

Pay-per-view? Netflix? Isn't that what you're talking about?
Forum: Coder's Corner Lounge Aug 23rd, 2007, 2:37 PM
Replies: 23
Views: 398
Posted By Prm753
Holy crap. That's not even remotely funny -...

Holy crap.

That's not even remotely funny - it's horrible. It sounds like the ending of a horrible story.

Ignorance is bliss indeed; the bliss ends just before you enter the ER.
Forum: Paid Job Offers Aug 22nd, 2007, 10:46 PM
Replies: 8
Views: 339
Posted By Prm753
Anyone else up for beta testing?

Anyone else up for beta testing?
Forum: C++ Aug 11th, 2007, 11:18 PM
Replies: 47
Views: 1,057
Posted By Prm753
Oh my gosh, don't use goto. It's not wonderful....

Oh my gosh, don't use goto. It's not wonderful.

It can cause random jumps in your code if you implement it incorrectly.

Use functions() to logically sort your code, and go from function to...
Forum: Paid Job Offers Aug 11th, 2007, 6:05 PM
Replies: 8
Views: 339
Posted By Prm753
I am using MinGW indeed - the compiler I'm using...

I am using MinGW indeed - the compiler I'm using is Bloodshed.net's Dev-C++ 4.9.9.2.

Sounds good - glad to have you on board. :)
Forum: Paid Job Offers Aug 11th, 2007, 5:20 PM
Replies: 8
Views: 339
Posted By Prm753
Hi Eoin, Thanks for the reply. I probably...

Hi Eoin,

Thanks for the reply.

I probably ought to change pastIconsFlusher() to a return type of void anyways.

Did you change any code besides the one return type under XP x64?

If you'd like, I...
Forum: Paid Job Offers Aug 11th, 2007, 3:57 PM
Replies: 8
Views: 339
Posted By Prm753
I think I got Vista capability written in. I...

I think I got Vista capability written in. I found some info on some 'Vista Tips' type of sites, and I found some decent code at MSDN showing me how to check for the Operating System version.

But I...
Forum: Coder's Corner Lounge Aug 11th, 2007, 3:51 PM
Replies: 21
Views: 422
Posted By Prm753
Congrats, Big K!

Congrats, Big K!
Forum: C++ Aug 10th, 2007, 11:32 PM
Replies: 45
Views: 936
Posted By Prm753
int ready; ... cout << "In a world filled with...

int ready;

...

cout << "In a world filled with evil, will you take up your\n";
cout << "sword and defend the innocent? ";
cin >> ready; // You put "Yes"

if (ready == 1)
{
Forum: C++ Aug 10th, 2007, 11:26 PM
Replies: 47
Views: 1,057
Posted By Prm753
Why would you copy and paste ten times? Why not...

Why would you copy and paste ten times?

Why not use:

while ( yourhealth > 0 && enemyhealth > 0 )
{
...
}
Forum: C++ Aug 10th, 2007, 8:52 PM
Replies: 47
Views: 1,057
Posted By Prm753
Read this:...

Read this:

http://www.cppreference.com/cppstring/index.html

Hope that helps. :)
Forum: Paid Job Offers Aug 10th, 2007, 8:47 PM
Replies: 8
Views: 339
Posted By Prm753
Open-Source software project

Hi all,

Usually, when people come here looking for free work, they get run out on a rail by some of our veteran members. Since I've been around here for about two years now, I hope that won't happen...
Forum: C++ Jul 26th, 2007, 12:14 AM
Replies: 5
Views: 222
Posted By Prm753
You can also use the COMPUTERNAME environment...

You can also use the COMPUTERNAME environment variable to get your name. Call GetEnvironmentVariable(...):

DWORD WINAPI GetEnvironmentVariable(
LPCTSTR lpName,
LPTSTR lpBuffer,
DWORD...
Forum: Coder's Corner Lounge May 28th, 2007, 5:43 PM
Replies: 3
Views: 144
Posted By Prm753
Website design rates and fees

Hi again,

The ol' Prm is back, done with school for a little while yet.

I've had a few offers on designing and maintaining websites for various people in my area, and I am thinking about...
Forum: HTML / XHTML / CSS Apr 20th, 2007, 5:37 PM
Replies: 14
Views: 326
Posted By Prm753
Hey, thanks DaWei! I hope I understood what you...

Hey, thanks DaWei!

I hope I understood what you meant in your previous post.

I switched the layout of the tables a little bit, and now I have the days of the week at the top of the table, with the...
Forum: HTML / XHTML / CSS Apr 20th, 2007, 4:19 PM
Replies: 14
Views: 326
Posted By Prm753
After reading some of the ideas and suggestions...

After reading some of the ideas and suggestions here, I decided to go with a table. I've not much experience with tables, and this is really my first one.

It looks bad.

I've nothing against...
Forum: HTML / XHTML / CSS Apr 18th, 2007, 3:09 PM
Replies: 14
Views: 326
Posted By Prm753
Thank you both. :) I was able to use &nbsp;...

Thank you both. :)

I was able to use &nbsp; quite liberally to achieve the effect I desired. The page is also valid, according to the validator.

DaWei, I read the articles that you linked to. I...
Forum: Coder's Corner Lounge Apr 18th, 2007, 2:00 PM
Replies: 5
Views: 158
Posted By Prm753
:D Good stuff. Where did you hear that joke,...

:D

Good stuff. Where did you hear that joke, DaWei?
Forum: HTML / XHTML / CSS Apr 18th, 2007, 1:58 PM
Replies: 14
Views: 326
Posted By Prm753
Indention in HTML

Hi all, it seems I've not been here in over a month. School gets in the way, you know. :p

I am doing some volunteer work for my church in designing their web site. I am working on a calendar page as...
Forum: Community Introductions Feb 26th, 2007, 1:03 PM
Replies: 16
Views: 371
Posted By Prm753
Good gosh, Ooble has returned. Welcome back...

Good gosh, Ooble has returned.

Welcome back Ooble.
Forum: Coder's Corner Lounge Jan 28th, 2007, 3:42 PM
Replies: 4
Views: 187
Posted By Prm753
You've probably already seen this...

You've probably already seen this (http://www.softplatz.com/Soft/Security-Privacy/Other/Word-Password-Recovery.html), and it's a password recoverer (not a text recoverer) and it's shareware, but you...
Forum: C Jan 28th, 2007, 3:35 PM
Replies: 9
Views: 314
Posted By Prm753
I'm trying to delete a specific value in 'Run',...

I'm trying to delete a specific value in 'Run', not 'Run' itself. (which would be stupid of me ;) )
Forum: C Jan 28th, 2007, 3:23 PM
Replies: 9
Views: 314
Posted By Prm753
I see what is happening. When the user unchecks...

I see what is happening. When the user unchecks the value in MsConfig, the value is removed from the 'Run' key and sent to (on my PC) the 'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared...
Forum: C Jan 27th, 2007, 10:10 PM
Replies: 9
Views: 314
Posted By Prm753
For some reason (which I do not know), attempting...

For some reason (which I do not know), attempting to delete a registry key set to run using RegDelnode() fails if the value is checked in MsConfig. The function fails upon trying to delete the key if...
Forum: C Jan 27th, 2007, 3:17 PM
Replies: 9
Views: 314
Posted By Prm753
I would do that if it's just me, but this is for...

I would do that if it's just me, but this is for ViewpointKiller (http://bellsouthpwp.net/p/r/prprogramsstudios/viewpointkiller.html), which is a public project of mine.

This is also the case for a...
Forum: C Jan 27th, 2007, 1:54 PM
Replies: 9
Views: 314
Posted By Prm753
Removing 'run' registry keys?

I have a function borrowed from MSDN called RegDelnode() and RegDelnodeRecurse():

BOOL RegDelnodeRecurse (HKEY hKeyRoot, LPTSTR lpSubKey)
{
HWND hwnd;
LPTSTR lpEnd;
LONG lResult;
...
Forum: C++ Jan 27th, 2007, 1:00 PM
Replies: 9
Views: 256
Posted By Prm753
This...

This (http://netez.com/2xExplorer/shellFAQ/bas_manage.html) might be of some help as well. :)
Forum: Project Ideas Dec 25th, 2006, 7:15 PM
Replies: 14
Views: 434
Posted By Prm753
You could add the option in the main menu of the...

You could add the option in the main menu of the program to turn off the "cheerful sound", and you could also let the user select the "cheerful sound" that they want to hear.

Something else that...
Forum: Coder's Corner Lounge Dec 25th, 2006, 7:05 PM
Replies: 12
Views: 214
Posted By Prm753
Merry Chris- I mean, Happy Holidays! ;)

Merry Chris- I mean, Happy Holidays! ;)
Forum: Community Introductions Dec 21st, 2006, 2:44 PM
Replies: 9
Views: 189
Posted By Prm753
Welcome to the forums.

Welcome to the forums.
Showing results 1 to 40 of 500

 
Forum Jump



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

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