Forum: Windows Software 6 Days Ago |
| Replies: 6 Views: 1,538 Foxit Software also has a PDF reader, editor, and creator.
The reader is free, the editor and creator have a six month demo license, or can be purchased at reasonable rates.
I use Foxit... |
Forum: C++ 20 Days Ago |
| Replies: 2 Views: 185 Opening with ios:out will truncate the file.
You need to open it (for writing) with:
ios::out | ios::in | ios::ate
(as well as in binary mode) to seek within with with write capabilities. |
Forum: C++ 28 Days Ago |
| Replies: 4 Views: 171 The blank lines do nothing.
Start with them. |
Forum: C++ 29 Days Ago |
| Replies: 8 Views: 203 Well... think... What exactly is the value of "return 1"? That doesn't evaluate to an rvalue. |
Forum: C++ Oct 26th, 2009 |
| Replies: 3 Views: 501 Why are you trying to allocate 100,000 of anything on the stack?
Do you really really really NEED that much storage as an initial allocation?
Maybe you should just use a vector, and add items as... |
Forum: C++ Oct 21st, 2009 |
| Replies: 10 Views: 315 You still have issues... Why don't you want to initialize your variables to 0 before using them?
Copy and paste is, well, Fine sometimes, but your have a logical problem here with your copy and... |
Forum: C++ Oct 19th, 2009 |
| Replies: 2 Views: 241 Code tags?
What are you entering your 'percentage' in ? Does that line, multiplying percentage by 1, and adding it to the price look like what you really want to do? |
Forum: C++ Oct 19th, 2009 |
| Replies: 0 Views: 210 In Windows, you can use LockFile() or LockFileEx() to lock portions / all of a file, but there are ways to still get read access to locked files.
Also, the extra overhead may not be worth it. ... |
Forum: C++ Oct 19th, 2009 |
| Replies: 4 Views: 216 You can't just allocate a bazillion bytes on the stack, which is what happens if you make an allocation like:
char myBazillionBytes[100000000];
You are going to need to dynamically allocate... |
Forum: C++ Oct 19th, 2009 |
| Replies: 2 Views: 139 C:
Header:
stdio.h
Functions:
fopen()
fread()
fclose()
C++: |
Forum: C++ Oct 13th, 2009 |
| Replies: 2 Views: 169 |
Forum: C++ Aug 21st, 2009 |
| Replies: 5 Views: 657 http://www.microsoft.com/interop/docs/OfficeBinaryFormats.mspx
Covers all office formats from 97 through 2007. |
Forum: C++ Jul 24th, 2009 |
| Replies: 4 Views: 236 Nope, there isn't, unless you are using absolute fixed-length fields, and 99% of the time, a .csv file does not have fixed length fields.
If you want to change a value in the first line, you read... |
Forum: C++ Apr 28th, 2009 |
| Replies: 1 Views: 692 You are trying to increase the available space in your reserved memory simply by adding a 1 to it. That won't work.
Reserve a larger block of memory (probably with new), copy the old data into it,... |
Forum: Visual Basic 4 / 5 / 6 Sep 17th, 2008 |
| Replies: 5 Views: 4,960 Why "Import" at all? Excel can open a CSV file just fine all by itself.
As for graphing, just, well, define your X and Y axis in Excel (well, make your graph). Then copy it, and paste into a... |
Forum: Windows Vista and Windows 7 Sep 11th, 2008 |
| Replies: 2 Views: 339 Is your computer (BIOS) configured to try to boot from a CD? Or is it trying to boot only from Hard/Floppy drive? |
Forum: IT Professionals' Lounge Jul 8th, 2008 |
| Replies: 5 Views: 638 Uhhh... BASIC? no.. VB? no.
Your core OS development will most likely be with assembly, as you have to talk directly to the BIOS at boot, in order to even begin loading your OS.
Start here:... |
Forum: C++ Apr 23rd, 2008 |
| Replies: 2 Views: 509 Wow... Before worrying about getting it to compile, you might want to think about writing a design document to get your logic straight.
But...
Your error log tells you what is wrong. In your... |