Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
84% Quality Score
Upvotes Received
6
Posts with Upvotes
5
Upvoting Members
5
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #3K

30 Posted Topics

Member Avatar for sabrina07080236

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 exclusively, as Adobe's Acrobat is big, slow, and cumbersome. Foxit is lightning fast, and runs fine …

Member Avatar for melissad
0
21K
Member Avatar for silvercats

127.0.0.1 is the 'loopback' connection. Anything sent to that never actually leaves your box. TIME WAIT is just the state a connection enters after it has been closed, but before it is purged from your systems networking cache (in simple terms).

Member Avatar for rubberman
0
336
Member Avatar for DuroF1

[URL="http://www.vmware.com/"]VMWare[/URL]. [URL="http://www.vmware.com/products/player/overview.html"]VMWare Player[/URL] is now free. Simple, clean, functional, no dual booting, no hassle. By the way, application incompatibilities between XP and Windows 7 are 100% the fault of the people that wrote the application, not Microsoft. They took shortcuts that they were not supposed to (and warned about) years …

Member Avatar for Miss M
0
766
Member Avatar for grvs

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 PowerPoint slide. Really, why over complicate things? PowerPoint is designed for …

Member Avatar for grvs
0
394
Member Avatar for mecpaul

Yep. Get a USB dongle, or a real parallel port. Dongle protection software (Sentinal, Wibu, etc) are installed as low level drivers that want direct access to a real port. They don't work through emulated ports such as USB adapters. Usually, the reason is that the dongle and software rely …

Member Avatar for whipaway
0
114
Member Avatar for komyg
Member Avatar for Networktroubles

Uhhhh... Both ends of a standard patch cable SHOULD be identical. The diagram you posted only shows the difference between the two common pairing schemes. -A is usually used for phone systems, -B is usually used for Ethernet, but it doesn't matter at all really, as long as both ends …

Member Avatar for rdrast
0
180
Member Avatar for spartan118

I'd start with just getting a proper main() going. And passing so much around, you should at least use a structure. Blindly copy and pasting isn't the way to get to modular code.

Member Avatar for rdrast
0
125
Member Avatar for nkswapnil

I didn't know XP was licensed "By Client" at all, it is by installation. 100 PC's require 100 Licenses. End of story. You could also just purchase a site license, which may be worth it for 100 machines. Anything else, and you are violating usage and license agreements. That would …

Member Avatar for thewebhostingdi
0
111
Member Avatar for VilePlecenta

Simple answer, you don't. The taskbar controls are not exposed by any Explorer API, and for good reasons. [url]http://blogs.msdn.com/oldnewthing/archive/2009/02/02/9388941.aspx[/url]

Member Avatar for VilePlecenta
0
105
Member Avatar for firoz.raj
Member Avatar for rdrast
0
111
Member Avatar for timbomo

Use brackets for your if/else clauses: [CODE] if (something) { ... } else if (something_else) { ... } [/CODE] You have statements that should be in the conditional clauses, but aren't, making the compiler see unmatched 'else' statements. You are also putting semicolons where they don't belong. Read the nice …

Member Avatar for Lerner
0
117
Member Avatar for stunriver

Any reason why it wouldn't? It's got twin PCIe x 16 slots, even if they are only x8 if both used in SLI mode.

Member Avatar for stunriver
0
75
Member Avatar for VAARI

Uhhhh.... Is it an actual Windows program? Try installing it perhaps in the XP Virtual machine, or install it in Windows 95 / 98 compatibility mode. If it's a DOS program, good luck.

Member Avatar for rdrast
0
83
Member Avatar for ellimist14

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.

Member Avatar for rdrast
0
163
Member Avatar for abraham james
Member Avatar for punchinello

Well... think... What exactly is the value of "return 1"? That doesn't evaluate to an rvalue.

Member Avatar for mrnutty
0
131
Member Avatar for tomtetlaw

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 necessary?

Member Avatar for rdrast
0
750
Member Avatar for mcap61

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 paste of your 'record_3' section... You only provide the possibility of entering 3 records, why …

Member Avatar for rdrast
0
115
Member Avatar for mayanktalwar

You can't just allocate a bazillion bytes on the stack, which is what happens if you make an allocation like: [code] char myBazillionBytes[100000000]; [/code] You are going to need to dynamically allocate room, either with new and delete[], or, probably best, use a vector, and don't worry about memory management. …

Member Avatar for mrnutty
0
115
Member Avatar for lyshao

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?

Member Avatar for jonsca
0
314
Member Avatar for nicholasamh

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. Besides, 8 other processes opening up your data file to read it will …

Member Avatar for rdrast
0
88
Member Avatar for amirun

[QUOTE=amirun;1019157]give me the functions and headers to load image files; and a small example[/QUOTE] C: Header: stdio.h Functions: fopen() fread() fclose() C++: Header: iostream Functions: ifstream() read() get() Have fun.

Member Avatar for rdrast
0
106
Member Avatar for Lamya Shammary
Member Avatar for sophie_kiu

[url]http://www.microsoft.com/interop/docs/OfficeBinaryFormats.mspx[/url] Covers all office formats from 97 through 2007.

Member Avatar for Protuberance
0
334
Member Avatar for whotookmyname

[QUOTE=whotookmyname;928350]there has to be a better way then deleting (or creating copies of ) the old file completely every time you need to amend something in it.[/QUOTE] 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 …

Member Avatar for rdrast
0
97
Member Avatar for RizzLinux1388

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, update your size and capacity values, then delete [] the original block. Generally, …

Member Avatar for rdrast
0
2K
Member Avatar for cougarblitz99

Is your computer (BIOS) configured to try to boot from a CD? Or is it trying to boot only from Hard/Floppy drive?

Member Avatar for cougarblitz99
0
99
Member Avatar for J-P

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: [url]http://wiki.osdev.org/Main_Page[/url] And read carefully.

Member Avatar for rdrast
0
145
Member Avatar for cmoney12051

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 class declaration, you aren't referring to valid types, you are referring to your own names for …

Member Avatar for cmoney12051
0
128

The End.