BUT, that would require me getting out of my chair to go get the book, and I would have to talk (*shudder*) to a fellow employee to get the book. ROFLMAO Yeah, dumb-ish question, I kind of knew the answer...but I guess I was hoping for something enlightening... BTW its great how fast questions get answered here! John ----------------------- Try this: Look up at the cieling right about your head...your mouth is open isn't it?
John Uhlenbrock
Posts
-
defining as public, protected, or private -
defining as public, protected, or privateWhere can I find details on the differences between defining variables/functions public, protected and private in a class (or maybe someone can explain?). John
-
MS Outlook accessing POP3I have been using yahoo for email. They have support for POP3 accounts, and thus you can use MS Outlook...etc to read your email. However, it will only download the messages from your Inbox, yet I want to download all the messages within each folder. To answer your question.. Now, I'm not sure what POP3 exactly means in terms of mail accounts, but the POP3 accounts I've always had have alllowed "pine" as a way to manage your email, and using it, you can create folders to save your message in...etc
-
MS Outlook accessing POP3Is it possible to configure MS Outlook to connect to a POP3 server and download messages from a folder other than the Inbox? If not, that blows, and someone needs to make a real e-mail program.
-
What makes a programmer?root 4 = 2 root 9 = 3 root 16 = 4 10^2 = 100 50 - 3 = 47 root 5 is greater than 2 HA I knew more than you!
-
I'm shockedIt always depends where you live, but you knew that. I live in the Denver area of Colorado. I am a sophmore at the University of Colorado. My major is Mechanical Engineering, with an emphasis in programming. I got hired for $14/hr as an intern, with "Introduction to C++", and "Data Structures in C++" under my belt. Only 2 classes! I am passionate about programming, which makes me more valuable than most who've had only 2 classes, but I wouldn't take an internship for less. Otherwise I'd rather do what I did before; work 20 hrs a week at the golf course, make $7.00/hr and play golf 40 hrs a week. Anyway, I will ask for $50-60k per year when I graduate. Now, you look at another state, you might ask for $25k/yr when you graduate.
long offeredSalary;
if{ mySalary < 40000 }
FlipEmOff();Notice the var declaration. Are you int or long? - John --------------------------------------------------------------------------------- Live in a tent, work for 2 years => live for 20 in New Zealand off what you made.
-
download.comOf course, I use a different one everytime... hotmale@hotmail.com (thats my actual email) tommyjoe@aol.com jondoe@yahoo.com....etc
-
download.comJust do as most people do: Name: Nonya Business email: nobody@aol.com address: 555 Nowhere St....etc
-
What would Microsoft have to do?"If everyone upgraded at the same time..." I could say alot to this, but I'll leave it at...HAHAHAHAHA! Product Activation - as was stated before, there are MILLIONS upon MILLIONS who have illegal MS software, which is actually a bonus to M$. Because if I couldn't get it free, I wouldn't use it (as I bet MILLONS upon MILLONS of others would say the same). So, if I (and MILLONS upon MILLONS of others) don't use M$, then M$ loses their monopoly which in the end results in a competitive market, (which there is not one now). Does M$ have a monopoly (*cough* justice depart *cough*)? Goto the websites of dell, hp, compaq, gateway...etc and see what OS system options they give that you can get with your computer.
-
How can I convert a hex string to float, and vice-versa.Any ideas? ie. "4476976c"-hex is approximately 986.366-float
-
Scrolling a CListBox.I am using SetTopIndex() to make sure the last string insterted can be seen. However, it scrolls really slow. For example, if I try adding something to the list box every 1/4 second, it adds one that often until it has to scroll. Then it slows down, closer to 1 every second. It has the same affect as internet explorer when you try to use the mouse wheel and scroll really fast, the window does not scroll fast and ends up jumpy. @ny !d3@s? - John
-
Destroying a dialog box.I have a dialog box that I pop up as a progress indicator. There are two program modes, manual and automatic. In the manual mode, the user clicks ok when the progress is complete, which closes the progress dialog window. In automatic, when the progress is done, I need it to automatically close the dialog. The problem is, if I call DestroyWindow, without the user having clicked somewhere, I get a "User breakpoint called from [address]". Anybody had this problem before...seems kind of weird. - John
-
MS Installer.I can add items to the registry, but when the program gets uninstalled, how do I get it to remove those items? - John
-
Release build.Found solution....or fix anyway. I believe there is something funny with ON_CONTROL_RANGE message mapping when it is involved with a dialog bar, and a formview app. If I don't use the ON_CONTROL_RANGE message handling, it works fine, so I found a way around it. I had to comment out all my message handlers one by one (well really 50% at a time to narrow it down...etc) to find out where my error occured. I guess that when you call m_wndMyDialogBar.Create(blah blah blah) it creates each of the controls, and then if you have radio buttons like I did, it sets their check value to 0. Thus, it would call the OnCheckMyCoolRadioButton message handler, and it would crash AFTER executing this handler and attempting to return. If you make seperate message handlers for each button, ie ON_BN_CLICKED instead of ON_CONTROL_RANGE, then it works fine. Finally, DONE!
-
Dialogs always on topYou mean like the "always on top" effect? Just create the modeless dialog box normally (ie "CDialog::Create(IDD_MY_DLG);" and you are done. It doesn't need extra flags, and can't have the system modal flag set. - John
-
Release build.How do you tell what is a KERNEL32 routine? And what within "ProcessShellCommand(cmdInfo)" calls routines within KERNAL32?
-
Release build.All libraries are linked. I tried both using mfc in both a static and shared dll. I tried with and without incremental linking. Still broke. I seem to crash on "ProcessShellCommand(cmdInfo)".
-
Release build.Ahh, thanks, I didn't have the program database selected. The error occurs on the call "ProcessShellCommand(cmdInfo)"
-
Post Message.I asked this same question for SendMessage HERE once before. However, it appears as though the solution for SendMessage does not work for PostMessage. I want to pass a CString as one of the parameters of PostMessage. How is this done?
-
Release build.Ok, here's the latest. By the suggestion from someone on the previous thread, I started throwing 5 bazillion message boxes everywhere, ie AfxMessageBox("POSITION 1") to see where I was REALLY getting. It turns out debugging the release version doesn't work to well because you can't go line by line. And I found that I crash when ParseCommandLine(cmdInfo); is called from InitInstance(). I found using the debug version, that the MainFrame constructor is called from somewhere within the calls in ParseCommandLine(). So, I assumed I had some variable initialization problem. I initialized every single variable in the constructor, but that didn't seem to help.