Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > C++ > BITS pause functionality

Reply
Thread Tools

BITS pause functionality

 
 
sumit
Guest
Posts: n/a
 
      01-10-2007
Hi everyone,

I am implementing the download manger using VC 6 with the help of
bits.h.
But i am not getting how to pause the download.. Can anybody plz
provide me the way of how to implement it.. A code snippet will do

Thanks
sumit

 
Reply With Quote
 
 
 
 
Victor Bazarov
Guest
Posts: n/a
 
      01-10-2007
sumit wrote:
> I am implementing the download manger using VC 6 with the help of
> bits.h.
> But i am not getting how to pause the download.. Can anybody plz
> provide me the way of how to implement it.. A code snippet will do


What's "bits.h"? If that's something specific to VC6, ask about it
in the VC++ newsgroup. If that's something specific to your platform,
ask in the platform newsgroup. If it's a product by itself, contact
the tech support or customer service for a programming manual.

"Download" sounds like something network-related. C++ *language*
has no means for networking. And when it comes to pausing a C++
program, there is only one built-in method: a long tight loop:

for (int i = 0; i < somelargevalue; ++i) ;

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Timebased Function Scheduler with Pause and UnPause functionality Narendra Sisodiya Python 0 04-10-2011 11:05 AM
shifting bits, shift 32 bits on 32 bit int GGG C++ 10 07-06-2006 06:09 AM
8 bits/ch vs 16 bits/ch in PS Terry Digital Photography 5 01-21-2004 06:59 PM
8-Bits vs 12 or 16 bits/pixel; When does more than 8 bits count ? Al Dykes Digital Photography 3 12-29-2003 07:08 PM
win XP 32 bits on a 64 bits processor.. Abbyss Computer Support 3 11-13-2003 12:39 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57