<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-8717525656538718528</id><updated>2011-08-01T10:29:23.888-07:00</updated><title type='text'>c++ library</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default?start-index=101&amp;max-results=100'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>165</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-8829156030271570744</id><published>2009-07-14T19:37:00.001-07:00</published><updated>2009-07-14T19:37:23.593-07:00</updated><title type='text'>To use the library function rand in c program?</title><content type='html'>i want to create a timetable for 5 days and 8 periods with 10 subjects.to select the subjects randomly i used rand function.but this generates the same number more than one time for a day.how could i avoid it????also i want the individual number to be generated for a particular number of times per week.plz help me.......................&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;To use the library function rand in c program?&lt;br&gt;The rand() function generates random numbers but this does not mean that it'll generate all different numbers. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Consider the following iteration :&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;randomize();&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  for(i=0;i%26lt;10;i+=1)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     printf("%d",rand()%10);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;the program will print random numbers under 10, 10 times. This program code does not imply that 8 may not be repeated twice.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Now, coming to your program, each day has 8 periods to which any of the 10 subjects without any repetitions have to be applied.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Make an array of size 8 denoting the periods per day like ( per[8]);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;now assign the first period as &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;per[0]=rand()%10;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;now for the subsequent assignments compare with the previous elements of the array. If any of them are equal to the value currently assigned, run the randomize statement again. In this way, you'll be able to assign all distinct values to the array.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;hope this helps.&lt;br&gt;Reply:Which compiler are you using, and for which operating system?&lt;br&gt;&lt;br /&gt;&lt;br /&gt;If you're using Borland Turbo C++ 3.0 for DOS, then you can simply view the example code in the IDE's built-in help file.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;I don't want to do your homework for you, so I'll just help you with the rand() function.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;When creating random numbers, you must first 'seed' the random number generator, otherwise your program will always come up with the same 'random' numbers.  In 16 bit compilers, rand() returns a signed 16 bit random number, and in 32 bit compilers, rand() returns a signed 32 bit random number.  You can modify the the line that calls rand() in order to modify the output number to suit your needs.  Just be careful with the numbers when you use rand().  For example, if you're using a 16 bit compiler, you must remember that rand() can only give a random number up to +32767.  But you can go up to +65535 if you use casting to make a variable an unsigned one.&lt;br&gt;&lt;br /&gt;&lt;br /&gt; &lt;br&gt;&lt;br /&gt;&lt;br /&gt;Example:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include %26lt;stdlib.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include %26lt;time.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;time_t t;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int num;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int main(void)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;srand((unsigned) time(%26amp;t));  // seed random number generator&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;// Random number between +1300 and +1400:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;num=(1300+rand()%1400); &lt;br&gt;&lt;br /&gt;&lt;br /&gt;// Random number between +200 to + 2000, in multiples of 10:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;num=((200+(rand() % 180)*10));&lt;br&gt;&lt;br /&gt;&lt;br /&gt;// Random number between +1 to +50:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;num=(1+rand() % 50);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;return 0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Look in your compiler's help file and information on the Internet for more sample code.&lt;br&gt;Reply:Well, I know c++ and c are different but the concept is the same. Run the rand function in an if loop for the day, the loop guidelines should say something like&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;rand=p8&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt; if (rand=p1,p2,p3,p4,p5,p6,p7,)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{rand=p8}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;that way the period is changed until the rand compiles a different number. Not sure what the rand code looks like in c though. i mostly used srand which created a number based on an algorithm in the computers date&lt;br&gt;Reply:The easiest way to ensure you don't get duplicates, is to check each time for duplicates, and get a new random number if one crops up.  If you're doing it this way, it may be easier to store an index giving you a quick way of looking up a number which has already been used.  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;However, if you want to ensure that you never duplicate a day/period, it may be easier to walk through the days and periods and randomly pick the subject (rather than randomly pick all the day, period and subject).  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;If you want to limit the number of occurrences of a subject, then keep a tally of subjects and get a fresh number if you don't like the one you've been given.  Each time you get an acceptable subject, reduce the tally.  If the tally reaches 0, the subject isn't acceptable again.  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;For example:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;/* define the maximum number or times we are prepared to loop to find an availiable subject before giving up */&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#define NUMBER_OF_ATTEMPTS 10&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;/* define the number of times each subject may be picked, always make the 0th item more than the number of periods in a week, to be sure there is something that can always be picked.  Each number corresponds to the number of times you'll allow a particular subject (ie 8 for subject 1 and 6 for subject 3 */&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int subject_tally[]={9999, 8,8,6,6,4}; &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;/* The array containing your final data*/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int picks[5][8];&lt;br&gt;&lt;br /&gt;&lt;br /&gt;/* The loop counter variables */&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int day, period, subject, attempts;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;/* initialise random seed */&lt;br&gt;&lt;br /&gt;&lt;br /&gt;srand (time(NULL)); &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;/* loop through each period of each day*/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;for (day=0; day%26lt;5; day++)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  for (period=0; period%26lt;8; period++)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    attempts=0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    /*attempts loop prevents run away */&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    while (attempts++%26lt;NUMBER_OF_ATTEMPTS) &lt;br&gt;&lt;br /&gt;&lt;br /&gt;    {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      subject = rand() %6 ; /* gives a random number between 0 and 5 */&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      /* only consider the subject if it still has an excess of available periods*/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      if (subject_tally[subject]%26gt;0)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;        picks[day][period]=subject;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;        subject_tally[subject]--;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;        /* Leave this while loop if a subject was successfully picked*/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;        break;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    /* if we ran out of attempts, then make it a free period */&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    if (attempts %26gt; NUMBER_OF_ATTEMPTS)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      picks[day][period]=0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-8829156030271570744?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/8829156030271570744/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/to-use-library-function-rand-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/8829156030271570744'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/8829156030271570744'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/to-use-library-function-rand-in-c.html' title='To use the library function rand in c program?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-6369136800952481934</id><published>2009-07-14T19:37:00.000-07:00</published><updated>2009-07-14T19:37:07.608-07:00</updated><title type='text'>I  want to get a c++ code contaning  a function on library system?</title><content type='html'>c++ fuction&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;I  want to get a c++ code contaning  a function on library system?&lt;br&gt;void f() {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-6369136800952481934?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/6369136800952481934/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/i-want-to-get-c-code-contaning-function.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/6369136800952481934'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/6369136800952481934'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/i-want-to-get-c-code-contaning-function.html' title='I  want to get a c++ code contaning  a function on library system?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-6622308935000140876</id><published>2009-07-14T19:36:00.003-07:00</published><updated>2009-07-14T19:36:51.685-07:00</updated><title type='text'>Can anybody suggest  a site where i can find a program on Library management in C++?</title><content type='html'>I like plograming ,&lt;br&gt;&lt;br /&gt;&lt;br /&gt;about ,&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Imeen,&lt;br&gt;&lt;br /&gt;&lt;br /&gt;%26lt;     %26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;          %26lt;              %26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;                     %26lt;                 .&lt;br&gt;&lt;br /&gt;&lt;br /&gt;                     %26lt;                                           %26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     &lt;br&gt;&lt;br /&gt;&lt;br /&gt;            %26lt;           %26gt;      &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;............................(%26lt;                                                            %26gt;)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;ew  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;ew  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;ew  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;                                     %26lt;#/////////////////////////////#%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;%26lt;     %26gt;&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Can anybody suggest  a site where i can find a program on Library management in C++?&lt;br&gt;Managing c library?&lt;br&gt;Reply:You can try the following site&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.vyomworld.com/source/code.asp...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;or you can read the book containing different project by Sumita Arora see their publication list.&lt;br&gt;Reply:Every compiler package has its own librarian.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Read your compiler documents.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://long-stem-roses.blogspot.com/&gt;long stem roses&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-6622308935000140876?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/6622308935000140876/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/can-anybody-suggest-site-where-i-can.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/6622308935000140876'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/6622308935000140876'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/can-anybody-suggest-site-where-i-can.html' title='Can anybody suggest  a site where i can find a program on Library management in C++?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-3708074035872623448</id><published>2009-07-14T19:36:00.002-07:00</published><updated>2009-07-14T19:36:35.849-07:00</updated><title type='text'>Is it possible to define new functions with the same names as standard library functions in 'C' language?</title><content type='html'>Yes. That's called "overloading."&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Is it possible to define new functions with the same names as standard library functions in 'C' language?&lt;br&gt;Yes it is possible.  However, the reason the library exists is to stnadardize many of the common elements required for writing code, so that people were not re-inventing the wheel each time they wrote a program in C.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;That said, several string input functions--such as gets() and scanf()--are the source of many buffer overflow attacks by hackers.  So it might be a good idea to re-write the headers, and use your own custom library of more secure functions.  That way you will have more robust and secure code in your programs.&lt;br&gt;Reply:Sure.  Just don't use the standard library header directly.&lt;br&gt;Reply:No, it is not possible. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;Not if you link your program with standard library and use standard headers. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Overloading exists only in C++ and allows to define new functions with the same names, but different parameter types. Overloading does not apply to C language and standard C library functions. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;You can't redefine, for example, function printf() or atoi();  If you make C function with the same name and parameter types, the program won't link because of naming conflicts. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;In C++ program (but not C) you can make function with the same name as library function - like atoi() for example, but it has to have different parameter types, and it won't replace the original library function.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-3708074035872623448?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/3708074035872623448/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/is-it-possible-to-define-new-functions.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/3708074035872623448'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/3708074035872623448'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/is-it-possible-to-define-new-functions.html' title='Is it possible to define new functions with the same names as standard library functions in &apos;C&apos; language?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-6972820977481743332</id><published>2009-07-14T19:36:00.001-07:00</published><updated>2009-07-14T19:36:19.424-07:00</updated><title type='text'>Does Anybody Know What Is The Address For The Congress Library Washington D.C.?</title><content type='html'>http://www.loc.gov/index.html&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;The Library of Congress &lt;br&gt;&lt;br /&gt;&lt;br /&gt;101 Independence Ave, SE&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Washington, DC 20540&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-6972820977481743332?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/6972820977481743332/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/does-anybody-know-what-is-address-for.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/6972820977481743332'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/6972820977481743332'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/does-anybody-know-what-is-address-for.html' title='Does Anybody Know What Is The Address For The Congress Library Washington D.C.?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-1930750002358549303</id><published>2009-07-14T19:36:00.000-07:00</published><updated>2009-07-14T19:36:03.759-07:00</updated><title type='text'>How to copy songs from i tunes library to a c.d?</title><content type='html'>hi friends&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How to copy songs from i tunes library to a c.d?&lt;br&gt;first you have to make sure you have a blank cd then you make yourself a playlist by clicking on the songs you want and dragging them to the left side once you have your playlist made you go to it and click on burn cd in the upper right hand corner where you music shows up when you play it then you let it burna dn your done&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-1930750002358549303?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/1930750002358549303/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/how-to-copy-songs-from-i-tunes-library.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/1930750002358549303'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/1930750002358549303'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/how-to-copy-songs-from-i-tunes-library.html' title='How to copy songs from i tunes library to a c.d?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-9034594536604070428</id><published>2009-07-14T19:35:00.003-07:00</published><updated>2009-07-14T19:35:47.918-07:00</updated><title type='text'>Can someone give me the code for library managment project in c language.. the projest must be simple..?</title><content type='html'>have to make a simple project in c language using file management wit a little of graphics.. it should be very sipmle and easy to understand.. if someone cud help me.. plz send me the cop of the code.. thnx..&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Can someone give me the code for library managment project in c language.. the projest must be simple..?&lt;br&gt;Do your own coursework. You WILL get caught if you don't.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Rawlyn.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://99gifts.blogspot.com/&gt;gifts&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-9034594536604070428?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/9034594536604070428/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/can-someone-give-me-code-for-library.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/9034594536604070428'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/9034594536604070428'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/can-someone-give-me-code-for-library.html' title='Can someone give me the code for library managment project in c language.. the projest must be simple..?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-7468185226963039202</id><published>2009-07-14T19:35:00.002-07:00</published><updated>2009-07-14T19:35:31.580-07:00</updated><title type='text'>How do I move my Itunes-program, library etc... from my C -drive (full) to the D -drive (99%empty)?</title><content type='html'>How do you move programs from your C drive to the D drive?&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How do I move my Itunes-program, library etc... from my C -drive (full) to the D -drive (99%empty)?&lt;br&gt;Just click the folder from your C:\ drive and hit CTRL X and open your D:\Drive and hit CTRL V.&lt;br&gt;Reply:D drive is probbly a recovery drive....check how big it is.&lt;br&gt;Reply:if they are setups.. copy paste would be good...lol. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;but i think u talking about the installed stuff..&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;its way too difficult man,, registeries, etc, etc, etc..&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;simplest way would be reinstalling all those stuff in D:\&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;about the library, i hope there may be a option of exporting it,&lt;br&gt;&lt;br /&gt;&lt;br /&gt;install itunes on d:\ and then again import it..&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;I hope it was worth..&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-7468185226963039202?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/7468185226963039202/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/how-do-i-move-my-itunes-program-library.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/7468185226963039202'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/7468185226963039202'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/how-do-i-move-my-itunes-program-library.html' title='How do I move my Itunes-program, library etc... from my C -drive (full) to the D -drive (99%empty)?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-4450294967098988484</id><published>2009-07-14T19:35:00.001-07:00</published><updated>2009-07-14T19:35:16.156-07:00</updated><title type='text'>What is another name for a library file in 'C'?</title><content type='html'>Never heard of any other name.  However, I do know that they have been called "static" library files because of their unchanging nature in the past.  Now, most software uses DLL files, or Dynamic-Linked Libraries (Microsoft seems to love them...) to take care of various parts and pieces of code.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;What is another name for a library file in 'C'?&lt;br&gt;header file would be another option. library is probably universal name for that particular name in c. but awesome question. i'll have to ask my teacher this question.&lt;br&gt;Reply:I don't think there is a synonym for a c library file.  Never heard it called something else.  It's been confused with header and object files by newbs, in error...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;But still, you might find what you're looking for at the link below..&lt;br&gt;Reply:Library files, those containing object modules generated from C source or other compiled source, are also known as archive files.  The term archive originates from early versions of UNIX, and is still the commonly used term to reference them by UNIX programmers today. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;The archive command (ar) is used to manage archive files which are usually named libXXX.a  where XXX is the nature of the library.  Common archives are:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;libc.a   -- standard C library&lt;br&gt;&lt;br /&gt;&lt;br /&gt;libm.a  -- standared Math library&lt;br&gt;&lt;br /&gt;&lt;br /&gt;libsocket.a -- socket &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;If an archive is referenced on the compile command line, the needed object modules from the archive is statically linked into the resulting binary (executable in MSDOS speak).  If shared object archives are referenced at the time a binary is created, the references are noted in the binary, but not stored in the binary file itself.  This results in the binary being a smaller file, but also requires that the shared object archive(s) be present on the computer where the binary is to be loaded and executed.  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Shared object archvies have a name that has the form libXXX.so.v where XXX is the same type name that libXXX.a has, and v is the version number.  Version numbering is important with shared objects as a binary created to work with libiconv.so.2 might not work with libiconv.so.3.  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Shared object archives are sometimes referred to as dynamically linked libraries as the final 'connection' or link between the binary and the contents of the archive is done  as the binary is loaded for execution. Some operating systems also allow the modules from a shared library to reside in one spot in memory and to be shared by any currently running programme that needs the functionality provided.   This has the advantage of reducing the total memory needed to support concurrent executing programmes that all reference the same archive(s).  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;If you are running on a UNIX machine, execute man for ld, ar, and ldd to see more information about creating archives, linking, and determining the reference(s) of a binary to shared objects.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://zinnia2.blogspot.com/&gt;innia&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-4450294967098988484?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/4450294967098988484/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/what-is-another-name-for-library-file.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/4450294967098988484'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/4450294967098988484'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/what-is-another-name-for-library-file.html' title='What is another name for a library file in &apos;C&apos;?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-360792127339681663</id><published>2009-07-14T19:35:00.000-07:00</published><updated>2009-07-14T19:35:00.058-07:00</updated><title type='text'>Is there any library function in C++ which could clear the run screen?</title><content type='html'>if you are talking about plain old c++ programming, I guess the conio.h has a funcition to clear the screen;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include %26lt;iostream.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include %26lt;conio.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void main()&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;   clrscr();&lt;br&gt;&lt;br /&gt;&lt;br /&gt;   &lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;i guess this works.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Is there any library function in C++ which could clear the run screen?&lt;br&gt;What you see below are the nest of functions that you can use on your key board for short cuts. Copy and paste this and save it for future refrence.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Tech Tips on Windows Keyboard Shortcuts for V6.0, and updated with all NEW shortcuts for Internet Explorer v7.0.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Borrowing from Firefox and other browsers, IE7 now features tabbed-browsing. With tabbed-browsing you can, among other things: &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Use one Internet Explorer window to view all your web pages.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Open links in a background tab while viewing the page you're on.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Save and open multiple web pages at once by using favorites&lt;br&gt;&lt;br /&gt;&lt;br /&gt;and home page tabs.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Most people think they know the ins and outs of using their favorite software (and maybe they do), but there are hundreds of little shortcuts that can be used to make common tasks even easier. This Tech Tip is going to follow a different format than the norm and will list a few dozen of these hot keys that can be used to make working in Microsoft Windows even easier.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;The shortcuts covered are broken up into groups based on the main key involved in activating them. So, let’s take a look at what we can do with the ALT, CTRL, SHIFT, and Windows Keys, as well as a few combo moves… &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;General Keyboard Shortcuts: &lt;br&gt;&lt;br /&gt;&lt;br /&gt;CTRL+C (Copy)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;CTRL+X (Cut)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;CTRL+V (Paste)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;CTRL+Z (Undo)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;DELETE (Delete)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;SHIFT+DELETE (Delete the selected item permanently without placing the item in the Recycle Bin)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;CTRL while dragging an item (Copy the selected item)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;CTRL+SHIFT while dragging an item (Create a shortcut to the selected item)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;F2 key (Rename the selected item)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;CTRL+RIGHT ARROW (Move the insertion point to the beginning of the next word)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;CTRL+LEFT ARROW (Move the insertion point to the beginning of the previous word)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;CTRL+DOWN ARROW (Move the insertion point to the beginning of the next paragraph)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;CTRL+UP ARROW (Move the insertion point to the beginning of the previous paragraph)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;CTRL+SHIFT with any of the arrow keys (Highlight a block of text)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;SHIFT with any of the arrow keys (Select more than one item in a window or on the desktop, or select text in a document)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;CTRL+A (Select all) F3 key (Search for a file or a folder)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;ALT+ENTER (View the properties for the selected item)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;ALT+F4 (Close the active item, or quit the active program)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;ALT+ENTER (Display the properties of the selected object)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;ALT+SPACEBAR (Open the shortcut menu for the active window)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;CTRL+F4 (Close the active document in programs that enable you to have multiple documents open simultaneously)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;ALT+TAB (Switch between the open items)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;ALT+ESC (Cycle through items in the order that they had been opened)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;F6 key (Cycle through the screen elements in a window or on the desktop)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;F4 key (Display the Address bar list in My Computer or Windows Explorer)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;SHIFT+F10 (Display the shortcut menu for the selected item)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;ALT+SPACEBAR (Display the System menu for the active window)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;CTRL+ESC (Display the Start menu)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;ALT+Underlined letter in a menu name (Display the corresponding menu)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Underlined letter in a command name on an open menu (Perform the corresponding command)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;F10 key (Activate the menu bar in the active program)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;RIGHT ARROW (Open the next menu to the right, or open a submenu)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;LEFT ARROW (Open the next menu to the left, or close a submenu)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;F5 key (Update the active window)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;BACKSPACE (View the folder one level up in My Computer or Windows Explorer)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;ESC (Cancel the current task)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;SHIFT when you insert a CD-ROM into the CD-ROM drive (Prevent the CD-ROM from automatically playing)&lt;br&gt;&lt;br /&gt;&lt;br /&gt; &lt;br&gt;&lt;br /&gt;&lt;br /&gt; &lt;br&gt;&lt;br /&gt;&lt;br /&gt;Microsoft Internet Explorer 7.0 Keyboard Shortcuts: &lt;br&gt;&lt;br /&gt;&lt;br /&gt;CTRL+click (Open links in a new tab in the background)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;CTRL+SHIFT+click (Open links in a new tab in the foreground)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;CTRL+T (Open a new tab in the foreground)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;ALT+ENTER (Open a new tab from the Address bar)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;ALT+ENTER (Open a new tab from the search box)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;CTRL+Q (Open Quick Tabs - thumbnail view)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;CTRL+TAB/CTRL+SHIFT+TAB (Switch between tabs)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;CTRL+n (n can be 1-8) (Switch to a specific tab number)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;CTRL+9 (Switch to the last tab)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;CTRL+W (Close current tab)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;ALT+F4 (Close all tabs)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;CTRL+ALT+F4 (Close other tabs)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;For more information, visit:  http://www.microsoft.com&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Dialog Box Keyboard Shortcuts: &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;If you press SHIFT+F8 in extended selection list boxes, you enable extended selection mode. In this mode, you can use an arrow key to move a cursor without changing the selection. You can press CTRL+SPACEBAR or SHIFT+SPACEBAR to adjust the selection. To cancel extended selection mode, press SHIFT+F8 again. Extended selection mode cancels itself when you move the focus to another control.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;CTRL+TAB (Move forward through the tabs)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;CTRL+SHIFT+TAB (Move backward through the tabs)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;TAB (Move forward through the options)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;SHIFT+TAB (Move backward through the options)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;ALT+Underlined letter (Perform the corresponding command or select the corresponding option)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;ENTER (Perform the command for the active option or button)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;SPACEBAR (Select or clear the check box if the active option is a check box)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Arrow keys (Select a button if the active option is a group of option buttons)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;F1 key (Display Help)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;F4 key (Display the items in the active list)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;BACKSPACE (Open a folder one level up if a folder is selected in the Save As or Open dialog box)&lt;br&gt;&lt;br /&gt;&lt;br /&gt; &lt;br&gt;&lt;br /&gt;&lt;br /&gt;Windows Explorer Keyboard Shortcuts: &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;END (Display the bottom of the active window)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;HOME (Display the top of the active window)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;NUM LOCK+Asterisk sign (*) (Display all of the subfolders that are under the selected folder)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;NUM LOCK+Plus sign (+) (Display the contents of the selected folder) &lt;br&gt;&lt;br /&gt;&lt;br /&gt;NUM LOCK+Minus sign (-) (Collapse the selected folder)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;LEFT ARROW (Collapse the current selection if it is expanded, or select the parent folder)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;RIGHT ARROW (Display the current selection if it is collapsed, or select the first subfolder)&lt;br&gt;&lt;br /&gt;&lt;br /&gt; &lt;br&gt;&lt;br /&gt;&lt;br /&gt;Microsoft Natural Keyboard Shortcuts: &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Windows Logo (Display or hide the Start menu)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Windows Logo+BREAK (Display the System Properties dialog box)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Windows Logo+D (Display the desktop)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Windows Logo+M (Minimize all of the windows)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Windows Logo+SHIFT+M (Restore the minimized windows)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Windows Logo+E (Open My Computer)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Windows Logo+F (Search for a file or a folder)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;CTRL+Windows Logo+F (Search for computers)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Windows Logo+F1 (Display Windows Help)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Windows Logo+ L (Lock the keyboard)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Windows Logo+R (Open the Run dialog box)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Windows Logo+U (Open Utility Manager) &lt;br&gt;&lt;br /&gt;&lt;br /&gt; &lt;br&gt;&lt;br /&gt;&lt;br /&gt;Accessibility Keyboard Shortcuts: &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Right SHIFT for eight seconds (Switch FilterKeys either on or off)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Left ALT+left SHIFT+PRINT SCREEN (Switch High Contrast either on or off)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Left ALT+left SHIFT+NUM LOCK (Switch the MouseKeys either on or off)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;SHIFT five times (Switch the StickyKeys either on or off)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;NUM LOCK for five seconds (Switch the ToggleKeys either on or off)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Windows Logo +U (Open Utility Manager) &lt;br&gt;&lt;br /&gt;&lt;br /&gt; &lt;br&gt;&lt;br /&gt;&lt;br /&gt;Remote Desktop Connection Navigation: &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;CTRL+ALT+END (Open the Microsoft Windows NT Security dialog box)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;ALT+PAGE UP (Switch between programs from left to right)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;ALT+PAGE DOWN (Switch between programs from right to left)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;ALT+INSERT (Cycle through the programs in most recently used order)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;ALT+HOME (Display the Start menu)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;CTRL+ALT+BREAK (Switch the client computer between a window and a full screen)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;ALT+DELETE (Display the Windows menu)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;CTRL+ALT+Minus sign (-) (Place a snapshot of the entire client window area on the Terminal server clipboard and provide the same functionality as pressing ALT+PRINT SCREEN on a local computer.)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;CTRL+ALT+Plus sign (+) (Place a snapshot of the active window in the client on the Terminal server clipboard and provide the same functionality as pressing PRINT SCREEN on a local computer.)&lt;br&gt;&lt;br /&gt;&lt;br /&gt; &lt;br&gt;&lt;br /&gt;&lt;br /&gt;Other Information: &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Some keyboard shortcuts may not work if StickyKeys is turned on in Accessibility Options.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Some of the Terminal Services client shortcuts that are similar to the shortcuts in Remote Desktop Sharing are not available when you use Remote Assistance in Windows XP Home Edition.&lt;br&gt;&lt;br /&gt;&lt;br /&gt; &lt;br&gt;&lt;br /&gt;&lt;br /&gt;Final Words: &lt;br&gt;&lt;br /&gt;&lt;br /&gt;Windows hot keys are all intended to provide some sort of convenient alternative to common tasks, and whether specific combinations do so is up to the individual to decide. Some are simple time-saving motions, while others are complex maneuvers in finger gymnastics. There are dozens of other common Windows shortcuts (and even more related to specific software titles), and memorizing just a few of the more basic ones may be worth the time-savings they can afford you.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Good luck and we hope this will help you now as well as in the futire.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-360792127339681663?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/360792127339681663/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/is-there-any-library-function-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/360792127339681663'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/360792127339681663'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/is-there-any-library-function-in-c.html' title='Is there any library function in C++ which could clear the run screen?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-1256027163590462001</id><published>2009-07-14T19:34:00.002-07:00</published><updated>2009-07-14T19:34:43.640-07:00</updated><title type='text'>Where is the West Regional Library in Cary, N.C. and how do I get there?</title><content type='html'>This is a brand new library that opened on Sept 16 and is somewhere near Highway 55. I tried the townofcary website with no luck so if they have a website, that would be great also.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Where is the West Regional Library in Cary, N.C. and how do I get there?&lt;br&gt;The webpage for this library branch is here http://www.wakegov.com/locations/library...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;It is located at 4000 Louis Stephens Drive, Cary, NC 27519&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-1256027163590462001?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/1256027163590462001/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/where-is-west-regional-library-in-cary.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/1256027163590462001'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/1256027163590462001'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/where-is-west-regional-library-in-cary.html' title='Where is the West Regional Library in Cary, N.C. and how do I get there?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-4941760847415845712</id><published>2009-07-14T19:34:00.001-07:00</published><updated>2009-07-14T19:34:27.467-07:00</updated><title type='text'>How to rebuild the library files in c to debug linking errors?</title><content type='html'>on runnin the program it will ive the error-&lt;br&gt;&lt;br /&gt;&lt;br /&gt;linking error:undefined symbol scanf(............)&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How to rebuild the library files in c to debug linking errors?&lt;br&gt;If you do not have scanf(), you are missing&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include %26lt;stdio.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;in the file.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-4941760847415845712?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/4941760847415845712/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/how-to-rebuild-library-files-in-c-to.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/4941760847415845712'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/4941760847415845712'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/how-to-rebuild-library-files-in-c-to.html' title='How to rebuild the library files in c to debug linking errors?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-7143389323866304665</id><published>2009-07-14T19:34:00.000-07:00</published><updated>2009-07-14T19:34:11.695-07:00</updated><title type='text'>How can i make a 'library system' using C++ programming ????what can i use data structures or classes???</title><content type='html'>am a new programming student and i really tried to do this using structures but i failed so plz can anyone help me with that???&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How can i make a 'library system' using C++ programming ????what can i use data structures or classes???&lt;br&gt;I'm not really well acquinted with C++...is the system development restricted to using C++ only, cause if it's not then it would be better to use C# ( C-sharp) instead as it is easier and simpler to use. My advice is to use classes instead so that you can define the relationships between the classes...making programming for the system so much easier! Hope this helps a little:)&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://2gerbera.blogspot.com/&gt;gerbera&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-7143389323866304665?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/7143389323866304665/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/how-can-i-make-library-system-using-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/7143389323866304665'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/7143389323866304665'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/how-can-i-make-library-system-using-c.html' title='How can i make a &apos;library system&apos; using C++ programming ????what can i use data structures or classes???'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-8493391236430003534</id><published>2009-07-14T19:33:00.003-07:00</published><updated>2009-07-14T19:33:55.828-07:00</updated><title type='text'>I moved my itunes to an external hard drive, now when i open itunes, it creates  a music library on my c drive</title><content type='html'>how do i keep this from happening. IN the preferences tab i even moved the music library to my G (my external drive)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;when i reopen itunes it empty and I have to reimport&lt;br&gt;&lt;br /&gt;&lt;br /&gt;everything which takes forever.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;help?&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;I moved my itunes to an external hard drive, now when i open itunes, it creates  a music library on my c drive&lt;br&gt;When you move where you store your Itunes library, it will import to the new location. I had to delete the first library then change the location. Then import the songs I wanted to Itunes. That reloaded everything on my ipod. There will be a reference file on you C drive still. I also choose the option of Itunes not duplicating the songs on the other drive.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;I then backed all my songs to another exterior drive.&lt;br&gt;Reply:Maybe leave a copy there so it sees it is already there.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-8493391236430003534?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/8493391236430003534/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/i-moved-my-itunes-to-external-hard.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/8493391236430003534'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/8493391236430003534'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/i-moved-my-itunes-to-external-hard.html' title='I moved my itunes to an external hard drive, now when i open itunes, it creates  a music library on my c drive'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-8300588456897502425</id><published>2009-07-14T19:33:00.002-07:00</published><updated>2009-07-14T19:33:39.921-07:00</updated><title type='text'>Where can i find c code for library management?</title><content type='html'>Check out this site http://www.wareprise.com/EnterpriseSoftw...&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-8300588456897502425?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/8300588456897502425/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/where-can-i-find-c-code-for-library.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/8300588456897502425'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/8300588456897502425'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/where-can-i-find-c-code-for-library.html' title='Where can i find c code for library management?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-4996914818414312099</id><published>2009-07-14T19:33:00.001-07:00</published><updated>2009-07-14T19:33:23.564-07:00</updated><title type='text'>Can anyone helpme with c coding for library management?</title><content type='html'>Wait up I'm still in a coding........You damn library management geeks never slow down....&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-4996914818414312099?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/4996914818414312099/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/can-anyone-helpme-with-c-coding-for.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/4996914818414312099'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/4996914818414312099'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/can-anyone-helpme-with-c-coding-for.html' title='Can anyone helpme with c coding for library management?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-7387974935776587925</id><published>2009-07-14T19:33:00.000-07:00</published><updated>2009-07-14T19:33:07.825-07:00</updated><title type='text'>What library and function do you need to open have the program open a file for you in c++?</title><content type='html'>I'm currently learning c++ and I was thinking about creating a program that opens a file for me. What is the command for opening a file in c++ and, if there needs to be a different library please include that too.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Thanks&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;What library and function do you need to open have the program open a file for you in c++?&lt;br&gt;Here's a simple example:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include %26lt;iostream%26gt; // Header for input/output streams&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include %26lt;fstream%26gt; // Header for file access&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;using namespace std; // Use the standard namespace&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void main () {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  // Create a file stream&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  ofstream myfile;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  // Open the file&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  myfile.open ("example.txt");&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  // Write to the file&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  myfile %26lt;%26lt; "Writing this to a file.\n";&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  // Close the file&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  myfile.close();&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;Reply:Have a look at   the following headers:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;%26lt;iostream%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;%26lt;fstream%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;%26lt;iomanip%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;You should see that all sorts of methods for reading/writing files are there.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Here's afewexample portions:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;ifstream inFile;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;inFile.open("myFile.dat", ios::in);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;if (inFile.is_open() == 0)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;inFile.get( blah blah blah)&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://4rosemary.blogspot.com/&gt;rosemary&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-7387974935776587925?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/7387974935776587925/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/what-library-and-function-do-you-need.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/7387974935776587925'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/7387974935776587925'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/what-library-and-function-do-you-need.html' title='What library and function do you need to open have the program open a file for you in c++?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-7024770253822980120</id><published>2009-07-14T19:32:00.003-07:00</published><updated>2009-07-14T19:32:51.947-07:00</updated><title type='text'>Program in c++ under the library stdio.h to make an X O game?</title><content type='html'>stdio.h isn't a C++ library - it's a C header.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;You can probably find some source-code on the net if you search for 'tictactoe.c' or 'tictactoe.cpp', which I assume you haven't done yet.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-7024770253822980120?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/7024770253822980120/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/program-in-c-under-library-stdioh-to.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/7024770253822980120'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/7024770253822980120'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/program-in-c-under-library-stdioh-to.html' title='Program in c++ under the library stdio.h to make an X O game?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-5378098142896906964</id><published>2009-07-14T19:32:00.002-07:00</published><updated>2009-07-14T19:32:35.458-07:00</updated><title type='text'>Could someone give me a tutorial on how to write a GUI framework/library in c++?</title><content type='html'>I Want to write an API like windows.h or GTK. I know this might be hard, but I want to try.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Could someone give me a tutorial on how to write a GUI framework/library in c++?&lt;br&gt;go to codeproject.com and learn MFC and WTL for gui framework&lt;br&gt;Reply:It's harder to write the tutorial than it is to write the library.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Most programmers buy a library, rather than write one, especially C++ programmers. After all, if they were into systems programming, they'd be using C, not C++.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;And if you need a tutorial in order to do it, you are going to end up with something unusable. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;So, I imagine the answer to your question is "no".&lt;br&gt;Reply:I don't see why you would want to.  On Windows, you can use DirectX, GDI, or GDI+ for graphics work.  However, if you've created some useful graphics procedures which make use of DirectX, GDI, or GDI+, then you can just make your procedures public and put them into a .dll file.&lt;br&gt;&lt;br /&gt;&lt;br /&gt; &lt;br&gt;&lt;br /&gt;&lt;br /&gt;There's 2 ways you can go.  You can write a COM object, or you can just write a .dll file with public procedures.  I don't recommend the COM object route because there is more work and you should know that COM objects, OOP, and frameworks produce bloated, slow code.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Creating a .dll file is easy.  I don't recommend that you use a framework (Microsoft's MFC or Borland's VCL) for creating a .dll file because your code might require some of the stupid 'support' .dll files that those frameworks use.  You don't want to bother having to include those files when you distribute your .dll file.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Here's information on DLL files:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://msdn2.microsoft.com/en-us/library...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;(Remember to set the linker to create a .dll file, not an .exe file.)&lt;br&gt;Reply:Or else you may contact  a C++ expert at websites like http://oktutorial.com/&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-5378098142896906964?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/5378098142896906964/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/could-someone-give-me-tutorial-on-how.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/5378098142896906964'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/5378098142896906964'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/could-someone-give-me-tutorial-on-how.html' title='Could someone give me a tutorial on how to write a GUI framework/library in c++?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-6753761848243289702</id><published>2009-07-14T19:32:00.001-07:00</published><updated>2009-07-14T19:32:22.729-07:00</updated><title type='text'>C++ Query V.V.URGENT:        how to set path for graphics library functions in c++??</title><content type='html'>the actual problem is whenevr i run the programs containg library functions defined in the file graphics.h the program output shows a .BGI error..so can u suggest me any way to solve this error????&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;C++ Query V.V.URGENT:        how to set path for graphics library functions in c++??&lt;br&gt;In you programm you are using this function in the following way.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;initgraph(%26amp;gdriver, %26amp;gmode, "");&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;but in this function you have give the path of you tc\bgi folder.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;I assume this folder is placed on system in "C:\tc\bgi".Please search this bgi folder in TC folder whatever you use(turboc2 etc)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;and give the full path in your initgraph function. just like&lt;br&gt;&lt;br /&gt;&lt;br /&gt;initgraph(%26amp;gdriver, %26amp;gmode, "C:\\TC\\BGI\\");&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Hope this will help.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-6753761848243289702?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/6753761848243289702/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/c-query-vvurgent-how-to-set-path-for.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/6753761848243289702'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/6753761848243289702'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/c-query-vvurgent-how-to-set-path-for.html' title='C++ Query V.V.URGENT:        how to set path for graphics library functions in c++??'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-5592427930652492627</id><published>2009-07-14T19:32:00.000-07:00</published><updated>2009-07-14T19:32:04.045-07:00</updated><title type='text'>Writing compiled library .lib in C.....?</title><content type='html'>I need to write my own optimised math library for embedded processor. How can I do that?&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Writing compiled library .lib in C.....?&lt;br&gt;First of all, what is the processor, and what embedded operating environment are you using? That kind of enables someone to help you.  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;Second,  writing your own optimized math library is a science in itself.  There is so much open source software out there for importing a math library into your project... why try and re-invent the wheel?&lt;br&gt;&lt;br /&gt;&lt;br /&gt;For starters, check out:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.thefreecountry.com/sourcecode...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;and&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://opensource.hp.com/opensource_proj...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Get a handle on using tools available before considering anything else. There are people out there that have devoted considerable parts of their careers writing all of these math API's and libraries. Take advantage of that and concentrate on your application.&lt;br&gt;Reply:You need to write a class......you are prolly better off using C++ because it is more object oriented than C.....I haven't worked with C a lot but in C++ you create a .h file, in your case math.h, and you include it like #include%26lt;iostream%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;but, the syntax is quotes like &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include%26lt;iostream%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include"math.h"&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;NOTE: &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include%26lt;math.h%26gt;, is legal with out a source file (a .cpp file) , and will include the standard math libary .cpp (source file) that was already created by the standard, so you might wanna use a different name I dont know if it will confuse the compiler or not...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;the .h file is your decleration, it is where you would put things such as (this is my class to handle big integers&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#ifndef _BIG_INT_H_&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#define _BIG_INT_H_&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;class big_int&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt; &lt;br&gt;&lt;br /&gt;&lt;br /&gt; public:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  big_int::big_int(); // default constructor&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  big_int big_int::operator+(big_int); // operator overloading for addition&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  big_int big_int::operator*(big_int);// calculates multiplication&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  big_int big_int::fact(const int); //calculates factoral&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  big_int%26amp; big_int::operator=(big_int);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  void big_int::set_array_size(int);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  void big_int::output();&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  int big_int::size();&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;  int num_array[500];&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt; private:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  int array_size; &lt;br&gt;&lt;br /&gt;&lt;br /&gt;  friend void set_array_size(int);&lt;br&gt;&lt;br /&gt;&lt;br /&gt; &lt;br&gt;&lt;br /&gt;&lt;br /&gt;};&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#endif&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;the #ifndef _BIG_INT_H_  and #define _BIG_INT_H_, are used by the compiler&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;then you need a source file, my source file for this was: &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;/*&lt;br&gt;&lt;br /&gt;&lt;br /&gt;big_int.cpp defination file&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;A class that can compute mathmatical opperations of  large integers by using arrays.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;*/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include"big_int.h"&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include%26lt;iostream%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt; big_int::big_int(){ &lt;br&gt;&lt;br /&gt;&lt;br /&gt;};&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;big_int%26amp; big_int::operator=(big_int rhs){&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  for(int i =0; i %26lt; rhs.size(); ++i){&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    num_array[i] = rhs.num_array[i];&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  };&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  set_array_size(rhs.size());&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  return *this;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;};&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;big_int big_int::operator+(big_int rhs){&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  // variables that are going to have the reversed data &lt;br&gt;&lt;br /&gt;&lt;br /&gt;  big_int reversed_lhs , reversed_rhs;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;  int rhs_index = rhs.size() - 1; // value of the highest index in rhs array&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  // reverse the rhs  array&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  for(int i = 0; i %26lt; rhs.size(); ++i){&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    reversed_rhs.num_array[i] = rhs.num_array[rhs_index];&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    --rhs_index;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  };&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  // set the value of the size of the reversed rhs array&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  reversed_rhs.set_array_size(rhs.size()); &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  int lhs_index = size() - 1; // value of the highest index in the lhs array&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  // reverse the lhs array and store it in reversed_lhs&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  for(int i = 0; i %26lt; size(); ++i){&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    reversed_lhs.num_array[i] = num_array[lhs_index];&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    --lhs_index;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  };&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  // et the value of the size of the reversed lhs array&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  reversed_lhs.set_array_size(size());&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  // variable to store the reversed result&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  big_int reversed_result;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  int max_size;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  // calculate the biggest array and store it in max_size&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  if(reversed_lhs.size() %26gt; reversed_rhs.size()){&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    max_size = reversed_lhs.size();&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  }else{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    max_size = reversed_rhs.size();&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  };&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  // variables needed for addition&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  int index = 0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  int carry = 0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  while(index %26lt; max_size+1){&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    // store the values of the added indexs in temp&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    int temp = reversed_rhs.num_array[index] + reversed_lhs.num_array[index] + carry;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    // assures that there is only a single digit in the array&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    if(temp %26gt; 9){&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      reversed_result.num_array[index] = temp % 10; // sets value of big int if it is 2 digits&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      carry = (temp / 10); //sets carry if the temp is greater than 10&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    }else{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      reversed_result.num_array[index] = temp;//sets single digit value&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      carry = 0;// no carry&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    };&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    ++index;//incriment index&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  };&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  reversed_result.set_array_size(index); //sets size of the big_int&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  // put the array in the correct order and filter out possible 0's that were added on the front and store in result&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  big_int result;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  bool check = true;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  int reversed_result_index = reversed_result.size() - 1;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  int result_index = 0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  int times_to_execute = reversed_result.size();&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  int count = 0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  while(count %26lt; times_to_execute){&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    // makes sure that there was not an extra 0 added on front, and if so runs loop one less time and does not copy 0&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    if(reversed_result.num_array[reversed_re... - 1] == 0 %26amp;%26amp; check == true){&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      -- reversed_result_index;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      check = false; // prevents output of leading 0's&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      times_to_execute = times_to_execute -1;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    };&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    // copies the arrays&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      result.num_array[result_index] = reversed_result.num_array[reversed_resul...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      ++result_index;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      --reversed_result_index;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      ++count;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  };&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  // sets the size of result&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  result.set_array_size(count);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  //returns a big_int with the addition&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  return result;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;};&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;//operator overloading for multiplication&lt;br&gt;&lt;br /&gt;&lt;br /&gt;// uses place values and adds up a series of numbers with place holding values&lt;br&gt;&lt;br /&gt;&lt;br /&gt;// to reach result, does not work, but does output series of numbers whoes sum &lt;br&gt;&lt;br /&gt;&lt;br /&gt;//is the correct result, and error is not in addition&lt;br&gt;&lt;br /&gt;&lt;br /&gt;big_int big_int::operator*(big_int rhs){&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  // variables that are going to have the reversed data &lt;br&gt;&lt;br /&gt;&lt;br /&gt;  big_int biggest , smallest;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  // if statement to figure out the array with the most digits, then revereses arrays to the correct reveresed greatest or reversed least&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  if(rhs.size() %26gt; size()){&lt;br&gt;&lt;br /&gt;&lt;br /&gt; &lt;br&gt;&lt;br /&gt;&lt;br /&gt;  // reverse the rhs  array&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  for(int i = 0; i %26lt; rhs.size(); ++i){&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    biggest.num_array[i] = rhs.num_array[i];&lt;br&gt;&lt;br /&gt;&lt;br /&gt;   };&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  // set the value of the size of the reversed rhs array&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  biggest.set_array_size(rhs.size()); &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt; &lt;br&gt;&lt;br /&gt;&lt;br /&gt;  // reverse the lhs array and store it in reversed_lhs&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  for(int i = 0; i %26lt; size(); ++i){&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    smallest.num_array[i] = num_array[i];&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  };&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  //s et the value of the size of the reversed lhs array&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  smallest.set_array_size(size());&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  }else{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;   // reverse the rhs  array&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  for(int i = 0; i %26lt; rhs.size(); ++i){&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    smallest.num_array[i] = rhs.num_array[i];&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  };&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  // set the value of the size of the reversed rhs array&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  smallest.set_array_size(rhs.size()); &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  int lhs_index = size() - 1; // value of the highest index in the lhs array&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  // reverse the lhs array and store it in reversed_lhs&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  for(int i = 0; i %26lt; size(); ++i){&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    biggest.num_array[i] = num_array[i];&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  };&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  // set the value of the size of the reversed lhs array&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  biggest.set_array_size(size());&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  };&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt; &lt;br&gt;&lt;br /&gt;&lt;br /&gt;  // variables that will be used in multiplication &lt;br&gt;&lt;br /&gt;&lt;br /&gt;  int smallest_index = smallest.size() - 1; //index to start on right side&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  int carry = 0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  big_int add_result;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  int add_result_size = 0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  add_result.set_array_size(1);//add_resul is initalized with one digit that is a zero;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  int add_result_index; //index of result&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  big_int result;//stores result&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  result.set_array_size(1);//sets size of result, only needs to be set once&lt;br&gt;&lt;br /&gt;&lt;br /&gt;                           // because addition process returns a big int&lt;br&gt;&lt;br /&gt;&lt;br /&gt;                           // with the size already set&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  // loop that multiplies each digit in the big int arrays&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  while(smallest_index %26gt;= 0){&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    int biggest_index = biggest.size() - 1; // index to start on right side, resets &lt;br&gt;&lt;br /&gt;&lt;br /&gt;    while(biggest_index %26gt;= 0){&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      // set the front of the array to 0&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      add_result.num_array[0] = 0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      int add_size = 0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      int temp;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      // temp value that stores the mutliplication&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      temp = (smallest.num_array[smallest_index]* biggest.num_array[biggest_index]) + carry;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      // if temp is greater than 9 it sets the carry value and the number to be added&lt;br&gt;&lt;br /&gt;&lt;br /&gt;        if(temp %26gt; 10){&lt;br&gt;&lt;br /&gt;&lt;br /&gt;add_result.num_array[0] = (temp%10);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;carry = temp / 10;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      }else{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;// sets number to be added and carry value if temp is a single digit&lt;br&gt;&lt;br /&gt;&lt;br /&gt;add_result.num_array[0] = temp;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;carry = 0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      };&lt;br&gt;&lt;br /&gt;&lt;br /&gt;//calculates the place (number of 0's) to put after the value to be added&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      add_size= ((biggest.size() - biggest_index) + (smallest.size() - smallest_index)-1);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      //sets the size of the add array&lt;br&gt;&lt;br /&gt;&lt;br /&gt;        add_result.set_array_size(add_size);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;// add_result has a differnt value at end of loop, and sum of values is result&lt;br&gt;&lt;br /&gt;&lt;br /&gt;//however i do not know why it is not working, and the error is not in the addition&lt;br&gt;&lt;br /&gt;&lt;br /&gt;// it outputs numbers whoes sum is the multiplication result&lt;br&gt;&lt;br /&gt;&lt;br /&gt;        std::cout %26lt;%26lt; '\n';&lt;br&gt;&lt;br /&gt;&lt;br /&gt;std::cout %26lt;%26lt; "ADD ";&lt;br&gt;&lt;br /&gt;&lt;br /&gt;add_result.output();&lt;br&gt;&lt;br /&gt;&lt;br /&gt;result = (result + add_result);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;std::cout %26lt;%26lt; '\n';&lt;br&gt;&lt;br /&gt;&lt;br /&gt;result.output();&lt;br&gt;&lt;br /&gt;&lt;br /&gt;// makes add_result have a zero value&lt;br&gt;&lt;br /&gt;&lt;br /&gt;add_result.num_array[0] = 0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;add_result.set_array_size(1);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      &lt;br&gt;&lt;br /&gt;&lt;br /&gt;// decriment index&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      --biggest_index;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      &lt;br&gt;&lt;br /&gt;&lt;br /&gt;    };&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    //decriment index&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    --smallest_index;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;   &lt;br&gt;&lt;br /&gt;&lt;br /&gt;  };&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  return result;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;};&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;/*&lt;br&gt;&lt;br /&gt;&lt;br /&gt;big_int big_int::fact(const int in_fact){&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  big_int result;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  result.set_array_size(1);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  result.num_array[0] = 1;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  //big int with value of one to add to incriment&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  big_int one;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  one.set_array_size(1);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  one.num_array[0] = 1;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  big_int incriment; // big int that will be incriment up to the value of fact&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  incriment.set_array_size(1);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  incriment.num_array[0] = 0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  //calculates the factoral by multiplying result *= incriment&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  // then incrimenting incriment by one&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  for(int i = 0; i %26lt; fact; ++i){&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    result = result * incriment;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    incriment = incriment + one;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  };&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  return result;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;};&lt;br&gt;&lt;br /&gt;&lt;br /&gt;*/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;// outputs the big_int stored in the array&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void big_int::output(){&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  for(int i=0; i %26lt; size(); ++i){&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    std::cout %26lt;%26lt; num_array[i];&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    if(0 == (i % 50) %26amp;%26amp; i != 0){&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      std::cout %26lt;%26lt; '\n';&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    };&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  };&lt;br&gt;&lt;br /&gt;&lt;br /&gt;};&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;// sets the size of the private member array_size&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void big_int::set_array_size(int size){&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  array_size = size;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;};&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;// returns the size of the array&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int big_int::size(){&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  return array_size;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;};&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;classes are pretty confusing, that code I showed you compiles, but doesn't completely work like it should and is done in C++ lol......&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;classes will allow you in your main program to do things such as &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;x.add(1), vector.push_back(5), if you are familiar with vectors,  they are sort of like complex functions...you can also overload operators, (operator is a key word in C++) i dont know about C.....if you search online you can prolly find a source code to a math library.....librarys are classes....&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;You also need to compile your classes, with your main program, it is the same as compiling a function with a header file......&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;sorry to post all this code on here lol&lt;br&gt;&lt;br /&gt;&lt;br /&gt;good luck!&lt;br&gt;Reply:Assuming that you have a C compiler with other utility libraries for the processor already, then you should be able to write your code without the standard entry point function (main) and compile it to an object.  You'll likely need to use a switch to tell the compiler that you want no entry point unless the one you have has an IDE that supports library creation as an automatic option.  Most compilers, though not all, include a library tool that will take this compiled object code and create a standard library that the compiler and linker understand.  The documentation for the librarian utility is usually included with it.  Don't forget to write the header file separately and include it in the source for the library.  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;When you place your library in as a link option and include your new header file (using #include "MyHeaders.h" ) your project should access it all as needed.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Happy new library!&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://2wallflower.blogspot.com/&gt;wallflower&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-5592427930652492627?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/5592427930652492627/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/writing-compiled-library-lib-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/5592427930652492627'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/5592427930652492627'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/writing-compiled-library-lib-in-c.html' title='Writing compiled library .lib in C.....?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-5090181254632625618</id><published>2009-07-14T19:31:00.002-07:00</published><updated>2009-07-14T19:31:47.958-07:00</updated><title type='text'>Is thare any library available for C# or Java by which any file format of MS/Open office be viewed/altered?</title><content type='html'>Is it open source? I know Itext can save .rtf %26amp; .pdf files using both Java and C#. How about viewing these files? How about viewing %26amp; manipulating .xls,.csv, .odt, .ods,.ppt,.odp files from C# and/or Java? Anyone have any idea? I want to make my own 'lightweight' (and independent) open source office application using C#/Java to be submitted to sourceforge.net. It will not use any code/resources of MS/Open office.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Is thare any library available for C# or Java by which any file format of MS/Open office be viewed/altered?&lt;br&gt;There is a C library libgsf which seems to read/write a variety of structured formats including Office and gsf-sharp for the C# bindings. Beagle for example uses this to index Office documents.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-5090181254632625618?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/5090181254632625618/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/is-thare-any-library-available-for-c-or.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/5090181254632625618'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/5090181254632625618'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/is-thare-any-library-available-for-c-or.html' title='Is thare any library available for C# or Java by which any file format of MS/Open office be viewed/altered?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-6533984513479879688</id><published>2009-07-14T19:31:00.001-07:00</published><updated>2009-07-14T19:31:32.036-07:00</updated><title type='text'>Does anybody knows of open source pdf creation library for c++?</title><content type='html'>free,open source software,project,library,code in java&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://best-java-source.bizdrv.com/&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-6533984513479879688?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/6533984513479879688/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/does-anybody-knows-of-open-source-pdf.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/6533984513479879688'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/6533984513479879688'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/does-anybody-knows-of-open-source-pdf.html' title='Does anybody knows of open source pdf creation library for c++?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-1697131593426669371</id><published>2009-07-14T19:31:00.000-07:00</published><updated>2009-07-14T19:31:15.720-07:00</updated><title type='text'>How can i usee " itoa " function of standard library in C++ ????</title><content type='html'>i dont know how to use it n wats the syntex .............&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;if  Y  is some integer and i want to put its value in char Z ....by using    itoa   function ....how will i do it and also what is that 3rd argument (ie an int) in that function  plzzzzzzzzzzzzz help mee&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How can i usee " itoa " function of standard library in C++ ????&lt;br&gt;It Converts an integer into a string. This is not ANSI C.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;It defined in stdlib.h&lt;br&gt;&lt;br /&gt;&lt;br /&gt;syntax id : char *itoa( int value, char *string, int radix );&lt;br&gt;&lt;br /&gt;&lt;br /&gt;itoa converts the integer val into a string using radix as the base.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;value  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;Is the integer to be converted to string representation. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;string  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;Points to the buffer that is to hold resulting string. The resulting string may be as long as seventeen bytes. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;radix  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;Is the base of the number; must be in the range 2 - 36. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt; itoa() is not in the standard C library.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;it acts like strtol() with base 10.But, if the value of the&lt;br&gt;&lt;br /&gt;&lt;br /&gt;integer is outside the range of an int the behaviour is undefined.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;strtol() and strtoul() are recommended instead of atoi(). You can also choose a base from 0 to 36. Open your C-book for detail.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;If you want to convert integer Y to a char Z then try&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;char *z = itoa( y, char *str, 10);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;I assumed here you are converting a number of base10.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;this function returns the string str.. and that we are storing in z.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Hope you understood.&lt;br&gt;Reply:The first parameter is the integer.  The second is the char*.  The third parameter is the maximum length of the char string.  E.g.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;itoa(nInt, szBuf, sizeof(szBuf));&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-1697131593426669371?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/1697131593426669371/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/how-can-i-usee-itoa-function-of.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/1697131593426669371'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/1697131593426669371'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/how-can-i-usee-itoa-function-of.html' title='How can i usee &quot; itoa &quot; function of standard library in C++ ????'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-7383287414790701240</id><published>2009-07-14T19:30:00.003-07:00</published><updated>2009-07-14T19:30:59.541-07:00</updated><title type='text'>Where would I find a library of C# functions that support spline fitting to data?</title><content type='html'>Check out &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.dotnet247.com/247reference/ar...&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Where would I find a library of C# functions that support spline fitting to data?&lt;br&gt;check out http://www.pscode.com for great modules.  You can filter it so you are just searching for stuff written in the .NET framework languages, too.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://hollyhock1.blogspot.com/&gt;hollyhock&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-7383287414790701240?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/7383287414790701240/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/where-would-i-find-library-of-c_14.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/7383287414790701240'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/7383287414790701240'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/where-would-i-find-library-of-c_14.html' title='Where would I find a library of C# functions that support spline fitting to data?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-5307501570510164851</id><published>2009-07-14T19:30:00.002-07:00</published><updated>2009-07-14T19:30:43.829-07:00</updated><title type='text'>Where would I find a library of C# functions that support spline fitting to data?</title><content type='html'>There are many places, but its a good idea to look for things like this in Numerical Recipes first.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Where would I find a library of C# functions that support spline fitting to data?&lt;br&gt;VTK.org&lt;br&gt;Reply:Numrical recipes books on line&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.nr.com/oldverswitcher.html&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;has program listing in many languages that you can download&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-5307501570510164851?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/5307501570510164851/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/where-would-i-find-library-of-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/5307501570510164851'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/5307501570510164851'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/where-would-i-find-library-of-c.html' title='Where would I find a library of C# functions that support spline fitting to data?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-1873163252946343629</id><published>2009-07-14T19:30:00.001-07:00</published><updated>2009-07-14T19:30:27.731-07:00</updated><title type='text'>Is there a graph library for c?</title><content type='html'>GD is a full featured graphics library written in C&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.boutell.com/gd/&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-1873163252946343629?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/1873163252946343629/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/is-there-graph-library-for-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/1873163252946343629'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/1873163252946343629'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/is-there-graph-library-for-c.html' title='Is there a graph library for c?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-7824483912048269784</id><published>2009-07-14T19:30:00.000-07:00</published><updated>2009-07-14T19:30:11.846-07:00</updated><title type='text'>What is a library in c language?</title><content type='html'>Instead of RE-INVENTING the code every time, you can write in the C language to CALL functions and sub programs that perform special functions for you.   Countless standard Libraries contain many of the functions that you want and need.  But you can develop your own set of libraries for your special needs. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Good luck&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;What is a library in c language?&lt;br&gt;CHAMBER'S&lt;br&gt;Reply:The C standard library is a now-standardised collection of header files and library routines used to implement common operations, such as input/output and string handling, in the C programming language. Unlike other languages such as COBOL, Fortran, and PL/I, C does not include builtin keywords for these tasks, so nearly all C programs rely on the standard library to function.&lt;br&gt;Reply:It contains a class or a bunch of functions you can utilize in your program.  You have to include it in the project.&lt;br&gt;Reply:A library is a collection of subprograms used to develop software. Libraries are distinguished from executables in that they are not independent programs; rather, they are "helper" code that provides services to some other independent program. Today the vast majority of the code that executes in a typical application is located in the libraries it uses. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;In C++, the standard library is STL (Standard Template Library), containing algorithms, containers, iterators, strings and so forth.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-7824483912048269784?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/7824483912048269784/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/what-is-library-in-c-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/7824483912048269784'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/7824483912048269784'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/what-is-library-in-c-language.html' title='What is a library in c language?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-6151474486918907162</id><published>2009-07-14T19:29:00.003-07:00</published><updated>2009-07-14T19:29:55.770-07:00</updated><title type='text'>Gd library installation C++, windows?</title><content type='html'>Alright i've unpacked all the files from the folder i downloaded into the directory that my compiler is in. Some of the functions in a header file work, while others give linker errors. gdImagePtr works, but gdImageDestroy gives an error&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;' [Linker error] undefined reference to `_imp__gdImageDestroy@4' &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;anyone know a  solution to this problem?&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Gd library installation C++, windows?&lt;br&gt;You get linker errors if you don't link in the appropriate libraries. You did link in the compiled gd library, right?&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://1cabbage.blogspot.com/&gt;cabbage&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-6151474486918907162?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/6151474486918907162/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/gd-library-installation-c-windows.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/6151474486918907162'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/6151474486918907162'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/gd-library-installation-c-windows.html' title='Gd library installation C++, windows?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-7568716533404804991</id><published>2009-07-14T19:29:00.002-07:00</published><updated>2009-07-14T19:29:39.754-07:00</updated><title type='text'>How to create our own library file and header file from c (OS is windows xp)?</title><content type='html'>I want to know how to create our own library file and header file in c.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;i use turbo C and the os is windows xp.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;i could find the command equivalent of 'ar' command in Linux (archieve command) same in Windowz xp&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;thanks&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How to create our own library file and header file from c (OS is windows xp)?&lt;br&gt;hi,&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;first you can create header file by ( .h ) extension.for example triq.h in this file you can write what (functions) you wants in the header file.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;second you can store this  ( .h ) file extension in to header files location.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;then crate c program and include this header file.thats all..bye&lt;br&gt;Reply:create files&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;bob.h&lt;br&gt;&lt;br /&gt;&lt;br /&gt;bob.c&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;In bob.c put:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include "pathto\bob.h"&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;your c code here&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-7568716533404804991?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/7568716533404804991/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/how-to-create-our-own-library-file-and.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/7568716533404804991'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/7568716533404804991'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/how-to-create-our-own-library-file-and.html' title='How to create our own library file and header file from c (OS is windows xp)?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-6143909364065488188</id><published>2009-07-14T19:29:00.001-07:00</published><updated>2009-07-14T19:29:23.764-07:00</updated><title type='text'>I am in 12,th .i want a c++ program of library manegment.it means i want that programs coading.?</title><content type='html'>library manegment&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;I am in 12,th .i want a c++ program of library manegment.it means i want that programs coading.?&lt;br&gt;This is the wrong category for your question since it has nothing to do with special education.  Try posting in another section such as higher education or computers and you might get a more helpful answer.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-6143909364065488188?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/6143909364065488188/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/i-am-in-12th-i-want-c-program-of.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/6143909364065488188'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/6143909364065488188'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/i-am-in-12th-i-want-c-program-of.html' title='I am in 12,th .i want a c++ program of library manegment.it means i want that programs coading.?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-4967952955091350997</id><published>2009-07-14T19:29:00.000-07:00</published><updated>2009-07-14T19:29:07.753-07:00</updated><title type='text'>Why do i get a visual c +++run time library error only when I'm playing my on-line game? And how do I fix it?</title><content type='html'>This seems to only happen when I start to play an on-line game . After about 3 minutes my game freezes up and I get this error. But once the game is closed out the Visual c +++runtime error diappears. Why is this happening and how do I fix it? I have a 17" Tosbia laptop (Satelite) with Windows 2000xp in it. Do I need to update my video driver? I havent found an update for it yet.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Why do i get a visual c +++run time library error only when I'm playing my on-line game? And how do I fix it?&lt;br&gt;It might be your laptop doesn't have the ability, you should try update your video card by looking it up at Windows Update NOT Microsoft Update because Windows Update will list all of the updates from that card maker and what card it works for. So go to http://v4.windowsupdate.microsoft.com/ca... and click on "Find Driver Updates" then "Video" it will give you a list of update by your maker and you can use filters as well to find it. Also do a disk defragment or disk clean up both are not harmful they just clean up your system of files and compresses them. Also check for game updates.&lt;br&gt;Reply:c++ runtime error is the software error. whoever coded the application (game ur using) apparently has a *bug* that needs fixin... email/contact the game vendor and let them know. They have to fix in the code and redistribute the game to get it fixed...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;u cannot do anything to alieve the issue&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-4967952955091350997?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/4967952955091350997/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/why-do-i-get-visual-c-run-time-library.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/4967952955091350997'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/4967952955091350997'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/why-do-i-get-visual-c-run-time-library.html' title='Why do i get a visual c +++run time library error only when I&apos;m playing my on-line game? And how do I fix it?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-2753872138481610501</id><published>2009-07-14T19:28:00.003-07:00</published><updated>2009-07-14T19:28:51.784-07:00</updated><title type='text'>C++ Source Code Parser Application or Library?</title><content type='html'>I need to parse C/C++ source files and I don't want to do it neither by hand nor by using a parser creator (e.g. bison). Call me lazy but I have other things to work on.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Does anyone knows of a library to link my application to or a command line tool that I can use for this purpose?&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;C++ Source Code Parser Application or Library?&lt;br&gt;Obviously, the g++ front end is available, but that&lt;br&gt;&lt;br /&gt;&lt;br /&gt;doesn't strike me as being particularly easy to integrate&lt;br&gt;&lt;br /&gt;&lt;br /&gt;into another application.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;At reference #1 (below), there's an extension called&lt;br&gt;&lt;br /&gt;&lt;br /&gt;GCC-XML which parses C++ and produces parse trees in XML&lt;br&gt;&lt;br /&gt;&lt;br /&gt;format (which would be *much* easier for your application&lt;br&gt;&lt;br /&gt;&lt;br /&gt;to process).  Maybe that's a closer fit.&lt;br&gt;Reply:BOOST has a complete C++ parser implemented in C++ template programming. Follow http://www.boost.org/                          &lt;span&gt;Report It&lt;/span&gt;&lt;br /&gt;                      &lt;br&gt;Reply:download it&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://phlox4.blogspot.com/&gt;phlox&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-2753872138481610501?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/2753872138481610501/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/c-source-code-parser-application-or.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/2753872138481610501'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/2753872138481610501'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/c-source-code-parser-application-or.html' title='C++ Source Code Parser Application or Library?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-2195581468024412297</id><published>2009-07-14T19:28:00.002-07:00</published><updated>2009-07-14T19:28:35.685-07:00</updated><title type='text'>Cd library management project code in c programing language?</title><content type='html'>small project in c programing language to manage a vcd library or a vcd rental shope&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Cd library management project code in c programing language?&lt;br&gt;http://www.planet-source-code.com/&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-2195581468024412297?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/2195581468024412297/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/cd-library-management-project-code-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/2195581468024412297'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/2195581468024412297'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/cd-library-management-project-code-in-c.html' title='Cd library management project code in c programing language?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-7848727727005032110</id><published>2009-07-14T19:28:00.001-07:00</published><updated>2009-07-14T19:28:19.804-07:00</updated><title type='text'>Im using firefox and when i go to the yahoo homepage i get a Microsoft Visual C++ Runtime Library Help Me Out!</title><content type='html'>Check the address you typed in.  I think something like that happened to me when I accidentally typed in http:// twice.  Good luck!&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Im using firefox and when i go to the yahoo homepage i get a Microsoft Visual C++ Runtime Library Help Me Out!&lt;br&gt;There are any number of process that can interfere with your programs including spys, trojans and virus. Please got to the site http://www.sysinternals.com and download and run the program Autoruns. It is free. It will detect most if not all programs and process running in your system including those that may be missing files to run correctly. You can stop a file from running or delete it entirely. This is a good first step, however you do need to download and run well known good anti spy, antivirus and anti trojan programs as well.&lt;br&gt;Reply:You're alone in this error.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Suggestions?&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Uninstall %26amp; reinstall firefox.  Sounds like you're having problems with your firefox installation.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;That doesn't work?  You may have a virus, need to reformat, or are just really bogged down with spyware/malware/adware&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-7848727727005032110?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/7848727727005032110/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/im-using-firefox-and-when-i-go-to-yahoo.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/7848727727005032110'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/7848727727005032110'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/im-using-firefox-and-when-i-go-to-yahoo.html' title='Im using firefox and when i go to the yahoo homepage i get a Microsoft Visual C++ Runtime Library Help Me Out!'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-8210666350132686057</id><published>2009-07-14T19:28:00.000-07:00</published><updated>2009-07-14T19:28:03.773-07:00</updated><title type='text'>When i close my sonic digitalmedia LE, i get a the runtime error microsoft visual C++ runtime library R6025 pc</title><content type='html'>This error occurs because of a known issue with the reader’s version of Norton AntiVirus. Symantec hasn’t released a fix for this issue and--given the fact that this version has been out for four years--isn’t likely to release one in the future. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Our first recommendation is for the reader to upgrade to a recent edition of Norton AntiVirus or some other reputable antivirus utility. We suspect the reader has let his annual update subscription lapse and is therefore using an out-of-date utility. This isn’t prudent computing behavior; any virus, worm, or Trojan horse released since the reader’s most recent update can slip past the utility’s monitoring features. Indeed, viruses are known to cause this same type of “R6025” error in other applications, including Windows Explorer, although we don’t think that is the situation here. Before installing the new antivirus utility, however, he should uninstall Norton AntiVirus 2002.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-8210666350132686057?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/8210666350132686057/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/when-i-close-my-sonic-digitalmedia-le-i.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/8210666350132686057'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/8210666350132686057'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/when-i-close-my-sonic-digitalmedia-le-i.html' title='When i close my sonic digitalmedia LE, i get a the runtime error microsoft visual C++ runtime library R6025 pc'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-6826134880728639789</id><published>2009-07-14T19:27:00.002-07:00</published><updated>2009-07-14T19:27:47.695-07:00</updated><title type='text'>Does anyone know how to correct a problem with my computer.It says microsoft C++ runtime library?</title><content type='html'>Under that it says a buffer has been overrun and has corrupted the programs internal state.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Does anyone know how to correct a problem with my computer.It says microsoft C++ runtime library?&lt;br&gt;You'll need to provide a lot more information than that, I'm afraid.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Information such as the following would help:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;1. What were you doing on the computer when this error occurred?&lt;br&gt;&lt;br /&gt;&lt;br /&gt;2. How often does it happen?&lt;br&gt;&lt;br /&gt;&lt;br /&gt;3. Which program(s) were you running when this occurred?&lt;br&gt;&lt;br /&gt;&lt;br /&gt;4. Which operating system are you using and which SP or patch version?&lt;br&gt;&lt;br /&gt;&lt;br /&gt;5. What's your hardware configuration? (which machine, which chip, how much memory, etc.)&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://verbena4.blogspot.com/&gt;verbena&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-6826134880728639789?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/6826134880728639789/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/does-anyone-know-how-to-correct-problem.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/6826134880728639789'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/6826134880728639789'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/does-anyone-know-how-to-correct-problem.html' title='Does anyone know how to correct a problem with my computer.It says microsoft C++ runtime library?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-4776782271544964031</id><published>2009-07-14T19:27:00.001-07:00</published><updated>2009-07-14T19:27:31.353-07:00</updated><title type='text'>Evrytime i open this game that i downloaded an error pops up that says "Microsoft visual c++ runtime library"</title><content type='html'>wut is that???? how can i fix this cause it wont let me into the game&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Evrytime i open this game that i downloaded an error pops up that says "Microsoft visual c++ runtime library"&lt;br&gt;You need to download the C++ runtime lib.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;search the Microsoft website for it :D&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-4776782271544964031?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/4776782271544964031/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/evrytime-i-open-this-game-that-i.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/4776782271544964031'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/4776782271544964031'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/evrytime-i-open-this-game-that-i.html' title='Evrytime i open this game that i downloaded an error pops up that says &quot;Microsoft visual c++ runtime library&quot;'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-6271093824343886776</id><published>2009-07-14T19:27:00.000-07:00</published><updated>2009-07-14T19:27:15.781-07:00</updated><title type='text'>How do you create a packet/namespace/class library in C# Visual Studio?</title><content type='html'>I gots me a bunch of classes that I would like to be able to access by &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;using myClasses;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;but I have no idea how to do this. I have done similiar things in Java but never with C#.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How do you create a packet/namespace/class library in C# Visual Studio?&lt;br&gt;create .cs (class) files from the file%26gt;new menu.  this will create a class file using the default namespace of your project.  you can then add all the methods and properties you want from existing code et.al.  if you use the same namespace, you won't need to use a using statement.  or you can create a brand new project with all your classes in it, then create a reference to that project from the solution explorer.  good to put the project in the same solution as your main project.  then use the using command just as you are wishing to in your question.&lt;br&gt;Reply:Change the project to compile as a DLL, and put that DLL somewhere global (e.g. besides the Debug folder)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Now create a new project, and add your DLL as a Reference (browse to it).&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Now in your code you can do the using statement of your new library.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-6271093824343886776?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/6271093824343886776/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/how-do-you-create-packetnamespaceclass.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/6271093824343886776'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/6271093824343886776'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/how-do-you-create-packetnamespaceclass.html' title='How do you create a packet/namespace/class library in C# Visual Studio?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-4372995706272495935</id><published>2009-07-14T19:26:00.003-07:00</published><updated>2009-07-14T19:26:59.752-07:00</updated><title type='text'>When I try to open an attachment,I get message "Microsoft Visual C++Runtime Library" Runtime Error?</title><content type='html'>I get a message that says "This application has requested the Runtime to terminate it in an unusual way.  Please contact the application support team for more information".  I can't open Word or Photo attachments.  I'm using Vista Home Basic %26amp;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;IE7.  This problem started abt 2 weeks ago.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;When I try to open an attachment,I get message "Microsoft Visual C++Runtime Library" Runtime Error?&lt;br&gt;Do not select 'Open', choose the option 'Save' then after downloading the attachment, if it is a picture open it with a default image viewer.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;If the file (or attachment) was from Yahoo!Mail, it's pretty clean since it was scanned first before actually sent to you.&lt;br&gt;Reply:You need some neccesary files named "Visual Basic Runtime Files" to run certain applications. Install in here:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.microsoft.com/downloads/detai...&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-4372995706272495935?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/4372995706272495935/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/when-i-try-to-open-attachmenti-get.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/4372995706272495935'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/4372995706272495935'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/when-i-try-to-open-attachmenti-get.html' title='When I try to open an attachment,I get message &quot;Microsoft Visual C++Runtime Library&quot; Runtime Error?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-4001488753993454258</id><published>2009-07-14T19:26:00.002-07:00</published><updated>2009-07-14T19:26:43.773-07:00</updated><title type='text'>How do i download World of Warcraft without getting a Microsoft Visual C++ Runtime Library error???</title><content type='html'>Use Bitfiles, because those are the ones that work and rarely has viruses on them.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://snapdragon2.blogspot.com/&gt;snapdragon2&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-4001488753993454258?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/4001488753993454258/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/how-do-i-download-world-of-warcraft.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/4001488753993454258'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/4001488753993454258'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/how-do-i-download-world-of-warcraft.html' title='How do i download World of Warcraft without getting a Microsoft Visual C++ Runtime Library error???'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-6112226761538280192</id><published>2009-07-14T19:26:00.001-07:00</published><updated>2009-07-14T19:26:27.682-07:00</updated><title type='text'>Why does this keep popping up on my computer? "Microsoft Visual C++ Debug Library" How do I get rid of it?</title><content type='html'>I ran my Norton  Virus scan and that didn't help. It only pops up when I'm on Yahoo Fantasy Sports. HELP!!!&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Why does this keep popping up on my computer? "Microsoft Visual C++ Debug Library" How do I get rid of it?&lt;br&gt;One possible cause.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Open Internet Explorer and click on TOOLS then on INTERNET OPTIONS.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;When the Internet Options Window opens go to the Advanced TAB.  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Disable Script Debugging should be ticked.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Display a notification about every script error - should NOT be ticked.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Best to Restore Defaults for all these settings.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Bill&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-6112226761538280192?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/6112226761538280192/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/why-does-this-keep-popping-up-on-my.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/6112226761538280192'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/6112226761538280192'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/why-does-this-keep-popping-up-on-my.html' title='Why does this keep popping up on my computer? &quot;Microsoft Visual C++ Debug Library&quot; How do I get rid of it?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-3602933602690419537</id><published>2009-07-14T19:26:00.000-07:00</published><updated>2009-07-14T19:26:11.485-07:00</updated><title type='text'>How can I use the &lt;stream&gt; library in c++?</title><content type='html'>Can any body tell me how how to use "fstream" in c++ to open close and manipulate files&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How can I use the %26lt;stream%26gt; library in c++?&lt;br&gt;use the following links..they are useful..&lt;br&gt;&lt;br /&gt;&lt;br /&gt;first link will give you directly use of fstream to read..&lt;br&gt;&lt;br /&gt;&lt;br /&gt;similarily you can write...for that you can use help menu in your c++ package(i.e.Turbo c) you are using..&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Second link will give you all details methods..to study..&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-3602933602690419537?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/3602933602690419537/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/how-can-i-use-library-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/3602933602690419537'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/3602933602690419537'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/how-can-i-use-library-in-c.html' title='How can I use the &amp;lt;stream&amp;gt; library in c++?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-6595615026999013155</id><published>2009-07-14T19:25:00.003-07:00</published><updated>2009-07-14T19:25:55.669-07:00</updated><title type='text'>Could downloading firefox be the cause of the Microsoft visual C++ runtime library buffer overrun detected?</title><content type='html'>error I'm getting?&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Could downloading firefox be the cause of the Microsoft visual C++ runtime library buffer overrun detected?&lt;br&gt;Buffer overflows are the most common form of attacks on a system. The buffer overflow may also be caused by a programming error. Hackers overflow the buffer by thousands of bytes. The VC++ runtime can detect an overflow by just one byte -- not much to work with if you are a hacker.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;You can try to download and install the latest VC++ runtime from microsoft. If the error you are getting is not a sign of trouble, the updated VC++ runtime may fix this.&lt;br&gt;Reply:firefox didnt cause it.you have other proublems. this free tool can help  http://www.iobit.com  good luck.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-6595615026999013155?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/6595615026999013155/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/could-downloading-firefox-be-cause-of.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/6595615026999013155'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/6595615026999013155'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/could-downloading-firefox-be-cause-of.html' title='Could downloading firefox be the cause of the Microsoft visual C++ runtime library buffer overrun detected?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-425025115238838477</id><published>2009-07-14T19:25:00.002-07:00</published><updated>2009-07-14T19:25:39.769-07:00</updated><title type='text'>I'm getting a runtime error message from :Microsoft Visual C ++ runtime library . how do I stop it?</title><content type='html'>Enter your error message here:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Runtime Errors and others:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://support.microsoft.com/default.asp... &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Good Luck&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;I'm getting a runtime error message from :Microsoft Visual C ++ runtime library . how do I stop it?&lt;br&gt;Buy a Macintosh.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://1lavender.blogspot.com/&gt;avender&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-425025115238838477?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/425025115238838477/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/im-getting-runtime-error-message-from.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/425025115238838477'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/425025115238838477'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/im-getting-runtime-error-message-from.html' title='I&apos;m getting a runtime error message from :Microsoft Visual C ++ runtime library . how do I stop it?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-8382391641294544175</id><published>2009-07-14T19:25:00.001-07:00</published><updated>2009-07-14T19:25:23.981-07:00</updated><title type='text'>I no longer have DriveCleaner Freeware but get a Microsoft Visual C++Runtime Library 'Runtime error' box.</title><content type='html'>The 'Runtime error' box says. 'This application has requested the Runtime to terminate it in an unusual way. Please contact the application support team' I have run 'CCleaner' and Serif 'PC Tune up' but neither stop the box popping up. HELP! Please!&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;I no longer have DriveCleaner Freeware but get a Microsoft Visual C++Runtime Library 'Runtime error' box.&lt;br&gt;Aloha from Down Unda!&lt;br&gt;&lt;br /&gt;&lt;br /&gt;The PC Tune up was never of any value to me as it required a fee I am not willing to pay.  However, the 'DriveCleaner' sounds like it may be found in your program files. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;['My Computer' %26gt; 'HHD' %26gt; 'Program Files'] where it may need to be deleted manually [right click %26gt; 'delete']&lt;br&gt;&lt;br /&gt;&lt;br /&gt;You may find it in the 'Add/Remove Programs' list to preclude going into the Program File.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;You may also want to invest some time to run a disk check for the next start up after assuring Microsoft/Windows updates are completed to check the disk %26amp; correct any registry errors.  It may take an hour or more but it's a sure fire way to eliminate an error not found anywhere else.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Best wishes~&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-8382391641294544175?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/8382391641294544175/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/i-no-longer-have-drivecleaner-freeware.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/8382391641294544175'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/8382391641294544175'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/i-no-longer-have-drivecleaner-freeware.html' title='I no longer have DriveCleaner Freeware but get a Microsoft Visual C++Runtime Library &apos;Runtime error&apos; box.'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-5242087295162230370</id><published>2009-07-14T19:25:00.000-07:00</published><updated>2009-07-14T19:25:07.657-07:00</updated><title type='text'>Is there some graphics library in C?</title><content type='html'>I mean one which provides functions such as line() and so.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Something similar to the graph library in pascal.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Is there some graphics library in C?&lt;br&gt;graphics.h&lt;br&gt;Reply:There is a cross platform library, GTK - see the link, that works on linux or windows or mac. If you're already programming in windows that functionality already exists, all based on DeviceContext and Metafiles, it's called GDI.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-5242087295162230370?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/5242087295162230370/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/is-there-some-graphics-library-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/5242087295162230370'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/5242087295162230370'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/is-there-some-graphics-library-in-c.html' title='Is there some graphics library in C?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-2664156752963236508</id><published>2009-07-12T20:40:00.001-07:00</published><updated>2009-07-12T20:40:24.257-07:00</updated><title type='text'>How i can solved his problem?? microsoft visual c++ runtime library?</title><content type='html'>it appears when i opend a photo program.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How i can solved his problem?? microsoft visual c++ runtime library?&lt;br&gt;OMG i had that for like a year, i tried EVERYTHING to get rid of it, no such luck&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;i ended up having to reformat my computer&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;egh&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;if you have a backup hard drive&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;you can move all your stuff to that&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;then reformat&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;thats what i did&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;sorry, i know that stupid C++ can be a real bain in the neck&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-2664156752963236508?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/2664156752963236508/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/how-i-can-solved-his-problem-microsoft.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/2664156752963236508'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/2664156752963236508'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/how-i-can-solved-his-problem-microsoft.html' title='How i can solved his problem?? microsoft visual c++ runtime library?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-3174885420039268430</id><published>2009-07-12T20:40:00.000-07:00</published><updated>2009-07-12T20:40:08.370-07:00</updated><title type='text'>Hey, does anyone know where I can find C++ language library??? maybe some examples?</title><content type='html'>All you need to program in C++ is a compiler and notepage.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;one of the more popular is located here: &lt;br&gt;&lt;br /&gt;&lt;br /&gt;  http://www.delorie.com/djgpp/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;As for examples there's TONS on the Net, a simple Google Search for 'C++ examples'  returned over 32,000 hits.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Hey, does anyone know where I can find C++ language library??? maybe some examples?&lt;br&gt;Heres some brief example of operators..&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://12violet.blogspot.com/&gt;violet&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-3174885420039268430?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/3174885420039268430/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/hey-does-anyone-know-where-i-can-find-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/3174885420039268430'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/3174885420039268430'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/hey-does-anyone-know-where-i-can-find-c.html' title='Hey, does anyone know where I can find C++ language library??? maybe some examples?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-6082056370206849995</id><published>2009-07-12T20:39:00.003-07:00</published><updated>2009-07-12T20:39:52.695-07:00</updated><title type='text'>How can i fix the microsoft visual c++ runtime library error?</title><content type='html'>download msvcrt.dll and put it in C:\Windows\System32.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;overwrite the old one.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.dll-files.com/dllindex/dll-fi...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;hope it helps.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-6082056370206849995?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/6082056370206849995/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/how-can-i-fix-microsoft-visual-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/6082056370206849995'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/6082056370206849995'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/how-can-i-fix-microsoft-visual-c.html' title='How can i fix the microsoft visual c++ runtime library error?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-2275697637718839524</id><published>2009-07-12T20:39:00.002-07:00</published><updated>2009-07-12T20:39:36.728-07:00</updated><title type='text'>Please help me with this : Microsoft Visual C++ Runtime Library, some kind of error message in itunes, help!?</title><content type='html'>get the new itunes out. 7.3&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;it should work&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;i had the same problem and now its fixed&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Please help me with this : Microsoft Visual C++ Runtime Library, some kind of error message in itunes, help!?&lt;br&gt;I was having a similar problem where the Microsoft Visual C++ Runtime framework emitting an error "abnormal program termination."  iTunes version 7.2 would open, the iTunes Music Store window would open, connect to iTMS, and display, at which time the error occurred.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Re-running the iTunes 7.2 installer did not work, so I resigned myself to update to version 7.3.  Using Apple Software Update to update to iTunes 7.3 failed saying a newer version was installed.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Since I had already downloaded the iTunes update, in Apple Software Update I went to the Tools menu, then "Open downloaded updates folder..."  I double-clicked the iTunes 7.3 MSI file, which happily installed iTunes 7.3.  I'm now able to run iTunes, although it's version 7.3.&lt;br&gt;Reply:Me too! i got the same problem!! i open up iTunes, the library pops up then windows gives the erroe, said it asked the program to terminate in an odd way...&lt;br&gt;Reply:can you rephrase your question? is it you mean that when you go to the itunes site, an error comes up saying debug? and then you click yes and microsoft c++ comes up, if thats the error you are having, just click no when asked to debug, it doesnt matter at all&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-2275697637718839524?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/2275697637718839524/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/please-help-me-with-this-microsoft.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/2275697637718839524'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/2275697637718839524'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/please-help-me-with-this-microsoft.html' title='Please help me with this : Microsoft Visual C++ Runtime Library, some kind of error message in itunes, help!?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-3143758149206195917</id><published>2009-07-12T20:39:00.001-07:00</published><updated>2009-07-12T20:39:20.486-07:00</updated><title type='text'>How do i fix this problem. M/soft visual c++ runtime library. R6025-pure virtual function call. I`v got xp hom</title><content type='html'>This error is caused by erroneous programming on the part of  the developer who wrote the application your trying to run. Without going into too much detail, they have done something which is not allowed by the C++ language in the source code of the application. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Most C++ compilers would detect this and refuse to build the Executable, however Microsoft Visual C++ compiler version 6 was particular bad at detecting this error during the compilation process which resulted in buggy applications making it out into the world.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;There is nothing you can do to fix it, the best thing you can do is contact the software company that made the application and see if they have a newer version of the software or a a patch to fix the problem&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How do i fix this problem. M/soft visual c++ runtime library. R6025-pure virtual function call. I`v got xp hom&lt;br&gt;Thank-you, Trekkie, for the info.  The error message involves Roxio 8.2, I believe, because I haven't accepted their upgrade to 9.0.  I'll work on it.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;ReeRee                          &lt;span&gt;Report It&lt;/span&gt;&lt;br /&gt;                      &lt;br&gt;Reply:That happened to me once when I was using WindowsMediaPlayer. But nothing else happened after that, and I haven't seen the message since.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-3143758149206195917?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/3143758149206195917/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/how-do-i-fix-this-problem-msoft-visual.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/3143758149206195917'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/3143758149206195917'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/how-do-i-fix-this-problem-msoft-visual.html' title='How do i fix this problem. M/soft visual c++ runtime library. R6025-pure virtual function call. I`v got xp hom'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-4263508485080411232</id><published>2009-07-12T20:39:00.000-07:00</published><updated>2009-07-12T20:39:04.095-07:00</updated><title type='text'>How to create a DLL library in C and then use it with C#?</title><content type='html'>after i have done all the neccessary coding, i have tried to add the generated c++ dll to my C# references and it keeps on prompting that i should only add valid assembly or COM references. pls help&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How to create a DLL library in C and then use it with C#?&lt;br&gt;Without seeing your code and writing a short novel here, the answer you need is probably in one or all of the four URLs below.  Good luck!&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://peony3.blogspot.com/&gt;peony&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-4263508485080411232?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/4263508485080411232/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/how-to-create-dll-library-in-c-and-then.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/4263508485080411232'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/4263508485080411232'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/how-to-create-dll-library-in-c-and-then.html' title='How to create a DLL library in C and then use it with C#?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-4535750058534314002</id><published>2009-07-12T20:38:00.002-07:00</published><updated>2009-07-12T20:38:50.203-07:00</updated><title type='text'>XML DOM library in C++ UNIX?</title><content type='html'>Any idea that how can I manipulate (Adding and Removing) with XML nodes in UNIX C++? Any idea/ document about how to do the implementation using libxml or some other libs??? Any help will be appriciated.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;XML DOM library in C++ UNIX?&lt;br&gt;You may want to look at the Apache Xerces project. They have a C (or C++) XML parser, which does DOM and SAX.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-4535750058534314002?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/4535750058534314002/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/xml-dom-library-in-c-unix.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/4535750058534314002'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/4535750058534314002'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/xml-dom-library-in-c-unix.html' title='XML DOM library in C++ UNIX?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-1510152047118656362</id><published>2009-07-12T20:38:00.001-07:00</published><updated>2009-07-12T20:38:34.916-07:00</updated><title type='text'>Where can i find a easy C++ graphics library?</title><content type='html'>I want to go beyond simple text only programs and make one that has simple visuals.  Does anyone have a recommendation or know where i can find a include file that would work for me?&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Where can i find a easy C++ graphics library?&lt;br&gt;there are many graphics libraries - search sourceforge.net&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;2 come to my mind: Allegro and SDL&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;however, you don't write what you really want to do - so maybe they don't fit your need.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-1510152047118656362?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/1510152047118656362/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/where-can-i-find-easy-c-graphics.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/1510152047118656362'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/1510152047118656362'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/where-can-i-find-easy-c-graphics.html' title='Where can i find a easy C++ graphics library?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-7062321702429580233</id><published>2009-07-12T20:38:00.000-07:00</published><updated>2009-07-12T20:38:15.647-07:00</updated><title type='text'>Runtime error  from microsoft visual c++ runtime library    help?</title><content type='html'>Go to www.microsoft.com and in the search bar type in the error and then click onto the appropiate link[s]&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Runtime error  from microsoft visual c++ runtime library    help?&lt;br&gt;Try MSDN.com&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-7062321702429580233?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/7062321702429580233/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/runtime-error-from-microsoft-visual-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/7062321702429580233'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/7062321702429580233'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/runtime-error-from-microsoft-visual-c.html' title='Runtime error  from microsoft visual c++ runtime library    help?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-7807508632830054607</id><published>2009-07-12T20:37:00.003-07:00</published><updated>2009-07-12T20:37:59.822-07:00</updated><title type='text'>Can any1 well acqainted with the c graphics library drop me a mail so dat i can contact?</title><content type='html'>my id is sangeetha16_hm@yahoo.co.in&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Can any1 well acqainted with the c graphics library drop me a mail so dat i can contact?&lt;br&gt;i don't know abt C graphics library if u want i could give u best books on it!&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;My ID: Deepak_bluethunder@yahoo.com&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://long-stem-roses.blogspot.com/&gt;long stem roses&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-7807508632830054607?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/7807508632830054607/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/can-any1-well-acqainted-with-c-graphics.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/7807508632830054607'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/7807508632830054607'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/can-any1-well-acqainted-with-c-graphics.html' title='Can any1 well acqainted with the c graphics library drop me a mail so dat i can contact?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-4860632354382716895</id><published>2009-07-12T20:37:00.002-07:00</published><updated>2009-07-12T20:37:43.224-07:00</updated><title type='text'>What causes Microsoft Visual C++ Runtime Library Runtime Errors?</title><content type='html'>What causes these errors?  When I try to play Wolfenstein Enemy Territory, and I'm about to auto-download a mod pak that someone created, I receive this error...can someone please help?&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;What causes Microsoft Visual C++ Runtime Library Runtime Errors?&lt;br&gt;need more memory, when your pc tries to run or open more than one program at once, it can cause "runtime" errors if you don't have enough memory to run everything at once, add a memory board, it'll solve this problem.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-4860632354382716895?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/4860632354382716895/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/what-causes-microsoft-visual-c-runtime.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/4860632354382716895'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/4860632354382716895'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/what-causes-microsoft-visual-c-runtime.html' title='What causes Microsoft Visual C++ Runtime Library Runtime Errors?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-3103204246164609278</id><published>2009-07-12T20:37:00.001-07:00</published><updated>2009-07-12T20:37:28.386-07:00</updated><title type='text'>How Can Include Other C graphics library files in my turbo c3 dos env?</title><content type='html'>how to do basic graphics programming?&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How Can Include Other C graphics library files in my turbo c3 dos env?&lt;br&gt;just copy the header files into the include folder in tc main folder&lt;br&gt;Reply:learning more computer......&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-3103204246164609278?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/3103204246164609278/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/how-can-include-other-c-graphics.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/3103204246164609278'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/3103204246164609278'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/how-can-include-other-c-graphics.html' title='How Can Include Other C graphics library files in my turbo c3 dos env?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-822207451151794696</id><published>2009-07-12T20:37:00.000-07:00</published><updated>2009-07-12T20:37:10.981-07:00</updated><title type='text'>Itunes error: visual C++ runtime library?</title><content type='html'>I recently began getting this error message again. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;I have had this same error message problem before, and this time i closed itunes and opened it again several times, which did not help. I have the latest version of the software, and even tried downloading it again to see if that would help matters, but i am still getting the error.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Any guidance would be appreciated, and a best answer will be given if the answer solves the problem. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;Thanks!&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Itunes error: visual C++ runtime library?&lt;br&gt;Uninstall it completely before re-installing.&lt;br&gt;Reply:sorry that i cant help ! but i get the same thing,first time thought.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;and all my porgrams arent working and closing unexpectedly !&lt;br&gt;Reply:Okay this happened to me a couple of minutes ago! And it won't go away! It's happened to me before and this is the solution that worked for me:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;I deleted most of my downloads, closed all open windows, and tried again. It didn't work. Tried a couple of hours later and held the mouse down on one of the songs-so it would start playing. Guess what? It worked! So right now it's not working for me but I'll wait a little longer. I was planning to buy two songs today and now I can't get it to work! I've seen resolved answers to these kind of questions and this is what one computer expert, "Ms. Dell" put as an answer to this question asked by another user:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Hello, Ugh. My ID is Ms. Dell, and I am pleased to help you today.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Since you have already uninstalled and reinstalled Itunes and the problem still persisted, I am going to provide you additional steps in correcting this dysfunctional problem.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Be patient with me, because this problem requires patience.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;We need to delete staled codes in IE7 first.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Open IE7 ( Internet explore 7) which is your browser, and click on TOOLS located to the upper right and then select INTERNET OPTIONS......... There, you will see many buttons. Click on DELETE, then you’ll be taken to where you can either DELETE FILES, DELETE HISTORY, DELETE FORMS, DELETE PASSWORDS AND DELETE ALL.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;I highly recommend you to delete your files, history, forms and cookies. Then close that box and then click on OK located to the bottom.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Before we proceed to the next step, be informed that you may lose your Itunes songs.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;What OS are you using, is it windows XP or Vista? Let's assume you are using XP.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Click on START located to the bottom left on your computer screen and click on MY COMPUTER. Double click on Local disk (C:) then click on PROGRAM FILES. Then click on the Itunes folder..... Then delete everything in that folder relating to Itunes...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;After you have finished deleting all the items in Itunes folder, repeat the step to remove Quciktime player from your computer, too. Then reboot your computer. Then go to http://www.apple.com/itunes/ to re-download Itunes.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;NOTE: Turn off your personal firewall program when you are downloading Itunes. But remember to turn it back on as soon as you are finished.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;I hope this helps.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;You have a great day now.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Ms. Dell.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;-That's what she put to this question:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://answers.yahoo.com/question/index;...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Thanks Ms. Dell! You're a BIG help! &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;ஐ♥Me♥ஐ&lt;br&gt;Reply:I'm sorry but "Ms. Dell"'s suggestion is pretty unorthodox. You should never delete a program by going to the Programs folder and deleting the corresponding program. You should always go to "Control Panels" %26gt; "Add/Remove Programs" and find the program you want to remove there. That will get rid of all of the hidden files most programs throw all over your hard drive. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Also, deleting your downloads and browsing history won't have anything to do with iTunes getting a runtime error.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;So if you want to uninstall iTunes, do it through add/remove programs. It might work if you do it the other way but a lot of the time this will get you into trouble.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-822207451151794696?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/822207451151794696/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/itunes-error-visual-c-runtime-library.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/822207451151794696'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/822207451151794696'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/itunes-error-visual-c-runtime-library.html' title='Itunes error: visual C++ runtime library?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-3466814824069001010</id><published>2009-07-12T20:36:00.003-07:00</published><updated>2009-07-12T20:36:54.525-07:00</updated><title type='text'>I keep getting a microsoft c++runtime library runtime error  Program C:/windows/living~1.scr help remove it.?</title><content type='html'>I had that same problem. I had to take my tower to someone so they could remove the virus off my harddrive.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://99gifts.blogspot.com/&gt;gifts&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-3466814824069001010?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/3466814824069001010/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/i-keep-getting-microsoft-cruntime.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/3466814824069001010'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/3466814824069001010'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/i-keep-getting-microsoft-cruntime.html' title='I keep getting a microsoft c++runtime library runtime error  Program C:/windows/living~1.scr help remove it.?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-8582799458384910631</id><published>2009-07-12T20:36:00.002-07:00</published><updated>2009-07-12T20:36:39.768-07:00</updated><title type='text'>Microsoft Visual C++ Runtime Library error?</title><content type='html'>I keep getting this message everytime i try to open up Zune to sync music on too the zune device .. HOW can you fix this promblem!&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Microsoft Visual C++ Runtime Library error?&lt;br&gt;http://www.microsoft.com/downloads/detai...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;go there and DL microsoft visual c+++SP1 Redistributable Package (x86) &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;that fixed my problem,hope it may yours too&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-8582799458384910631?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/8582799458384910631/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/microsoft-visual-c-runtime-library_2197.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/8582799458384910631'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/8582799458384910631'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/microsoft-visual-c-runtime-library_2197.html' title='Microsoft Visual C++ Runtime Library error?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-5764776669515091538</id><published>2009-07-12T20:36:00.001-07:00</published><updated>2009-07-12T20:36:24.706-07:00</updated><title type='text'>Microsoft vertual c + runtime library.   what is this????????????</title><content type='html'>its keep come up like error.and closing internet window.i did scan with 2 progrrams.fixed problems , restarte comp.still have this thing.please help!!!!!!!!!&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Microsoft vertual c + runtime library.   what is this????????????&lt;br&gt;i wish i could help.. when you know more please let me know I'm having the same problems&lt;br&gt;Reply:You are missing it, it is not a virus or anything. You've wasted time scanning. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.microsoft.com/downloads/detai...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Download this and follow the instructions.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://zinnia2.blogspot.com/&gt;innia&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-5764776669515091538?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/5764776669515091538/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/microsoft-vertual-c-runtime-library.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/5764776669515091538'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/5764776669515091538'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/microsoft-vertual-c-runtime-library.html' title='Microsoft vertual c + runtime library.   what is this????????????'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-7702654214111337761</id><published>2009-07-12T20:36:00.000-07:00</published><updated>2009-07-12T20:36:09.771-07:00</updated><title type='text'>Before constructing c-dna library, what is the two things that should be taken into our mind.?</title><content type='html'>The first thing to ask is, do you really need to construct your own cDNA library, or can you get one from someone else?  If you can get one from someone else, this can put you weeks or months ahead in terms of time.  If you decide you really need your own, then make sure you carefully decide on the source of the tissue or cells, making sure of their purity, and make sure you use good technique during mRNA isolation.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Good luck!&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Before constructing c-dna library, what is the two things that should be taken into our mind.?&lt;br&gt;well u have to keep in mind if ure synthesizing the cDNA from the 3'-5' end or frm the 5'-3' end... u have to keep in mind abt th purity of the mRNA u have taken.. and also u will have a large number of enzymes tht u can choose to hlp in ure cDNA synthesis.. u shld be able to decide which is the best suited enzymes to suit ure criteria..&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-7702654214111337761?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/7702654214111337761/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/before-constructing-c-dna-library-what.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/7702654214111337761'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/7702654214111337761'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/before-constructing-c-dna-library-what.html' title='Before constructing c-dna library, what is the two things that should be taken into our mind.?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-8031736539506569369</id><published>2009-07-12T20:35:00.003-07:00</published><updated>2009-07-12T20:35:52.069-07:00</updated><title type='text'>Microsoft Visual C++ Runtime Library” Runtime Error! Program in compro tv tuner card?</title><content type='html'>Since the card has a windows driver, it was probably written in C++, hence the error.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Check with the manufacturer for updated drivers or firmware.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;A reboot usually helps. If the problems continue contact the manufacturer or return it.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-8031736539506569369?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/8031736539506569369/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/microsoft-visual-c-runtime-library_7260.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/8031736539506569369'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/8031736539506569369'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/microsoft-visual-c-runtime-library_7260.html' title='Microsoft Visual C++ Runtime Library” Runtime Error! Program in compro tv tuner card?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-599290502629060119</id><published>2009-07-12T20:35:00.002-07:00</published><updated>2009-07-12T20:35:36.686-07:00</updated><title type='text'>Microsoft Visual C++ Runtime Library,Runtime Error ,Anyone get this mess. too?It disconnects me online.?</title><content type='html'>I get this message from time to time and usually right in the middle of something important,very frustrating.AT%26amp;T says it's not their problem,it's in my PC.I have not been using a computer very long ,so I need the solution in laymans terms,Thank you.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Microsoft Visual C++ Runtime Library,Runtime Error ,Anyone get this mess. too?It disconnects me online.?&lt;br&gt;Hey, I'm actually having the same problem. I've also noticed that iTunes stops working as well, so bummer. I think, though that the best thing to do is run a registry scan on your computer. "Registry is a file that is used to log all the changes you make to your system. As you install and uninstall programs in your computer, you make changes to the registry. Overtime, the registry becomes cluttered and causes all sorts of PC performance problems," the site below should help answer some questions. If that doesn't work you can try reinstalling the operationg system or even reformating %26amp; and reinstalling your computer (delete everyting and basically clean sweep of ALL information on your computer)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;   Hope it helps&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-599290502629060119?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/599290502629060119/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/microsoft-visual-c-runtime.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/599290502629060119'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/599290502629060119'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/microsoft-visual-c-runtime.html' title='Microsoft Visual C++ Runtime Library,Runtime Error ,Anyone get this mess. too?It disconnects me online.?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-5998313627054420960</id><published>2009-07-12T20:35:00.001-07:00</published><updated>2009-07-12T20:35:20.365-07:00</updated><title type='text'>Microsoft Visual C++ Runtime Library?</title><content type='html'>Runtime Error!&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Program: ...gram Files\Sunbelt Software\Personal Firewall\assist.exe&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;This application has requested the Runtime to termination it in an unusual way. Please contact the application's support team for more information.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Microsoft Visual C++ Runtime Library?&lt;br&gt;http://www.sunbelt-software.com/Support-...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;I think you need to call tech support and report a bug.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://2gerbera.blogspot.com/&gt;gerbera&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-5998313627054420960?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/5998313627054420960/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/microsoft-visual-c-runtime-library_6184.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/5998313627054420960'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/5998313627054420960'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/microsoft-visual-c-runtime-library_6184.html' title='Microsoft Visual C++ Runtime Library?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-7741428229542738664</id><published>2009-07-12T20:35:00.000-07:00</published><updated>2009-07-12T20:35:07.029-07:00</updated><title type='text'>Microsoft Visual C++ Runtime Library error?</title><content type='html'>I keep getting this error and how do I go about fixing it? Do I need to fix the MS Visual or the source which is hptaskmanager? What causes these errors?&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Microsoft Visual C++ Runtime Library error?&lt;br&gt;Follow this link it tells you the couse and all possible fixes.:)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://support.microsoft.com/kb/307817&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-7741428229542738664?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/7741428229542738664/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/microsoft-visual-c-runtime-library_2763.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/7741428229542738664'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/7741428229542738664'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/microsoft-visual-c-runtime-library_2763.html' title='Microsoft Visual C++ Runtime Library error?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-4760885615246431289</id><published>2009-07-12T20:34:00.002-07:00</published><updated>2009-07-12T20:34:46.304-07:00</updated><title type='text'>Microsoft Visual C++ Runtime Library?</title><content type='html'>http://www.google.com/search?hl=en%26amp;lr=%26amp;r...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.google.com/search?sourceid=na...&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Microsoft Visual C++ Runtime Library?&lt;br&gt;You mean to use DLLs ?&lt;br&gt;Reply:Um, what about it?&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Please be more specific.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-4760885615246431289?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/4760885615246431289/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/microsoft-visual-c-runtime-library_1926.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/4760885615246431289'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/4760885615246431289'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/microsoft-visual-c-runtime-library_1926.html' title='Microsoft Visual C++ Runtime Library?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-8816327587668309602</id><published>2009-07-12T20:34:00.001-07:00</published><updated>2009-07-12T20:34:30.226-07:00</updated><title type='text'>"Microsoft Visual C=++ Runtime Library" and "Abnormal program termination" I'm seeing more errors like this ??</title><content type='html'>I'm getting these Runtime errors that leads to abnormal program termination. Is their a Microsoft hotfix that makes problems or is their a program flaw... &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Best Regards &lt;br&gt;&lt;br /&gt;&lt;br /&gt;Jesper Bang&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;"Microsoft Visual C=++ Runtime Library" and "Abnormal program termination" I'm seeing more errors like this ??&lt;br&gt;It sounds like your trying to run your program with the wrong complier settings. If you programming in c++ then you have the visual c++ option checked. Un check it and run it again.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-8816327587668309602?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/8816327587668309602/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/microsoft-visual-c-runtime-library-and.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/8816327587668309602'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/8816327587668309602'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/microsoft-visual-c-runtime-library-and.html' title='&quot;Microsoft Visual C=++ Runtime Library&quot; and &quot;Abnormal program termination&quot; I&apos;m seeing more errors like this ??'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-9202029671873382757</id><published>2009-07-12T20:34:00.000-07:00</published><updated>2009-07-12T20:34:16.339-07:00</updated><title type='text'>In C++, what library(ies) should I include for QB-style graphics?</title><content type='html'>Such as just turning on and off pixels. I'm having a hard time with windows applications, so can I try a more QBASIC style approach?&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;In C++, what library(ies) should I include for QB-style graphics?&lt;br&gt;I miss QB. It was such a nice language for graphics. I've never quite had anything comparable.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;You might try the Fast light toolkit. It's used in an open source version of basic that is very QB-like. So you might be able to learn something from the source code. There's a fairly extensive tutorial for Fast light too.&lt;br&gt;Reply:If you mean API functions like SetPixel(), you need to include the library gdi32.lib with your C++ application.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://4rosemary.blogspot.com/&gt;rosemary&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-9202029671873382757?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/9202029671873382757/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/in-c-what-libraryies-should-i-include.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/9202029671873382757'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/9202029671873382757'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/in-c-what-libraryies-should-i-include.html' title='In C++, what library(ies) should I include for QB-style graphics?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-5317974813295242576</id><published>2009-07-12T20:33:00.003-07:00</published><updated>2009-07-12T20:33:58.482-07:00</updated><title type='text'>How do you link the Directx SDK library to the Dev-C++ compiler?</title><content type='html'>How do you link the Directx SDK library to the Dev-C++ compiler, and is the Directx library compatiple with all directx tutorials on the net?&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How do you link the Directx SDK library to the Dev-C++ compiler?&lt;br&gt;I don't use Dev-C++, but according to a tutorial, click on the tools menu and click "compiler options", then click the Directories tab.  Add directories from the Microsoft Directx SDK to the correct items, such as the include files to the include item and library to the library item.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-5317974813295242576?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/5317974813295242576/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/how-do-you-link-directx-sdk-library-to_12.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/5317974813295242576'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/5317974813295242576'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/how-do-you-link-directx-sdk-library-to_12.html' title='How do you link the Directx SDK library to the Dev-C++ compiler?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-8413446512525337657</id><published>2009-07-12T20:33:00.002-07:00</published><updated>2009-07-12T20:33:42.561-07:00</updated><title type='text'>How do you link the Directx SDK library to the Dev-C++ compiler?</title><content type='html'>How do you link the Directx SDK library to the Dev-C++ compiler, and is the Directx library compatiple with all directx tutorials on the net?&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How do you link the Directx SDK library to the Dev-C++ compiler?&lt;br&gt;Double post, go to:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://answers.yahoo.com/question/index;...&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-8413446512525337657?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/8413446512525337657/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/how-do-you-link-directx-sdk-library-to.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/8413446512525337657'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/8413446512525337657'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/how-do-you-link-directx-sdk-library-to.html' title='How do you link the Directx SDK library to the Dev-C++ compiler?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-4570273494537583810</id><published>2009-07-12T20:33:00.001-07:00</published><updated>2009-07-12T20:33:26.557-07:00</updated><title type='text'>Which graphics library to use with C to make hangman game?</title><content type='html'>I am making a hangman game with C. I've already made it using text, but now I wanna convert it to graphics. Which graphics library should I use, WinBGIm or Allegro?&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Which graphics library to use with C to make hangman game?&lt;br&gt;Go the whole hog - use OpenGL and make it 3D :)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.opengl.org/&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://2wallflower.blogspot.com/&gt;wallflower&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-4570273494537583810?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/4570273494537583810/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/which-graphics-library-to-use-with-c-to.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/4570273494537583810'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/4570273494537583810'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/which-graphics-library-to-use-with-c-to.html' title='Which graphics library to use with C to make hangman game?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-3204463138725851723</id><published>2009-07-12T20:33:00.000-07:00</published><updated>2009-07-12T20:33:11.107-07:00</updated><title type='text'>Why can't i install ym on my pc? the error "Could not load the DLL library C:\WINDOWS\KERNEL32..." apears...</title><content type='html'>You may have downloaded the wrong version of Yahoo Messenger:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;For Mac:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://messenger.yahoo.com/mac.php&lt;br&gt;&lt;br /&gt;&lt;br /&gt;For Windows Vista:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://messenger.yahoo.com/download.php&lt;br&gt;&lt;br /&gt;&lt;br /&gt;The new version of Yahoo Messenger just released (9.0 Beta):&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://beta.messenger.yahoo.com&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-3204463138725851723?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/3204463138725851723/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/why-cant-i-install-ym-on-my-pc-error.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/3204463138725851723'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/3204463138725851723'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/why-cant-i-install-ym-on-my-pc-error.html' title='Why can&apos;t i install ym on my pc? the error &quot;Could not load the DLL library C:\WINDOWS\KERNEL32...&quot; apears...'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-8824046217924730535</id><published>2009-07-12T20:32:00.003-07:00</published><updated>2009-07-12T20:32:55.886-07:00</updated><title type='text'>Could not connect to MySQLPHP Warning: Unknown(): Unable to load dynamic library '.;C:\PHP\extensions\php_msql</title><content type='html'>Try copying the extension you want from the extensions directory to the root directory of PHP.  There are also some conflicts with different versions of PHP and MySQL, but try that first.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-8824046217924730535?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/8824046217924730535/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/could-not-connect-to-mysqlphp-warning.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/8824046217924730535'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/8824046217924730535'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/could-not-connect-to-mysqlphp-warning.html' title='Could not connect to MySQLPHP Warning: Unknown(): Unable to load dynamic library &apos;.;C:\PHP\extensions\php_msql'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-3959484158439385393</id><published>2009-07-12T20:32:00.002-07:00</published><updated>2009-07-12T20:32:38.503-07:00</updated><title type='text'>Can't download yahoo messenger. error message "could not load dll library. c:/windows/kernel32.dll module not</title><content type='html'>The kernel is related by Linux. Only the Linux uses the kernel. I think you are trying the wrong version of yahoo messenger. Try windows version.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Good luck&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Can't download yahoo messenger. error message "could not load dll library. c:/windows/kernel32.dll module not&lt;br&gt;I'm looking for the answer to this question, too.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Kursat - you're way off base.  Every OS has a kernel, you just hear about the Linux one more often.  Don't answer questions based off limited knowledge, you'll send people down the wrong path with answers like that.                          &lt;span&gt;Report It&lt;/span&gt;&lt;br /&gt;                      &lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-3959484158439385393?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/3959484158439385393/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/cant-download-yahoo-messenger-error.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/3959484158439385393'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/3959484158439385393'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/cant-download-yahoo-messenger-error.html' title='Can&apos;t download yahoo messenger. error message &quot;could not load dll library. c:/windows/kernel32.dll module not'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-81713617643156435</id><published>2009-07-12T20:32:00.001-07:00</published><updated>2009-07-12T20:32:25.038-07:00</updated><title type='text'>I am getting a n error message "could not load DLL library C\\windows\user32\dll, the specified module cold no</title><content type='html'>I thought I had the Voice messenger was installed. But I am unable to get to the dialing pages. Also I have seen the page to pay for the international calling...cant find it anymore...Help.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;I am getting a n error message "could not load DLL library C\\windows\user32\dll, the specified module cold no&lt;br&gt;You should un-install Messenger and do a clean re-install. The un-install is important; it removes any corrupt files that an install alone might not fix.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Click the "Start" button, click "Control Panel", and open "Add/Remove Programs". Scroll down to "Yahoo! Messenger" and remove it. (If you can't find it, look for "Yahoo! Applications", "SBC Yahoo!" or any item in the list with the word "Yahoo!" in it.) Then install a fresh copy of the most recent version from http://messenger.yahoo.com&lt;br&gt;Reply:I had the same problem.  The other answer is good, but also check that your anti virus is up to date.  This was the root of my problem and it took me literally months to get it figured out.  Also, googl the exact erro, and it will take you to some sites that can walk you through the re-installion of the libraries, which has to do with the dll error.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://hollyhock1.blogspot.com/&gt;hollyhock&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-81713617643156435?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/81713617643156435/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/i-am-getting-n-error-message-could-not.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/81713617643156435'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/81713617643156435'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/i-am-getting-n-error-message-could-not.html' title='I am getting a n error message &quot;could not load DLL library C\\windows\user32\dll, the specified module cold no'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-5578742864671602111</id><published>2009-07-12T20:32:00.000-07:00</published><updated>2009-07-12T20:32:06.521-07:00</updated><title type='text'>Why i keep recieving messenger couldnot load the dll library C:\windows\kernel32dll.the specified module could</title><content type='html'>have you ever heard of 3rd party chat clients ? ... these chat programs are written by actual chat user ... mostly from Yahoo Chat Help:1 ...  no ad banners / free / boot proof and loaded with options these free chats are more stable then messenger and rock ... currently Yazak chat has a special login feature to help you enter chat ... uncheck the anti bounce feature and click join room fast on it's change room page and you should enter chat quickly ... get it  @ http://www.freecreed.com .... listed under yahoo pages / free  boot proof chat on the menu bar&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-5578742864671602111?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/5578742864671602111/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/why-i-keep-recieving-messenger-couldnot.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/5578742864671602111'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/5578742864671602111'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/why-i-keep-recieving-messenger-couldnot.html' title='Why i keep recieving messenger couldnot load the dll library C:\windows\kernel32dll.the specified module could'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-2860069065688896940</id><published>2009-07-12T20:31:00.003-07:00</published><updated>2009-07-12T20:31:50.354-07:00</updated><title type='text'>I keep getting error-Can not load DLL library C:\WINNT\kernel 32.dll The specified module can not be found</title><content type='html'>I get this message when I try to load Yahoo!Messenger on my PC. How do I fix this. And I'm not very computer litterate, so step by step would be greatly appreciated.  Thanks!!&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;I keep getting error-Can not load DLL library C:\WINNT\kernel 32.dll The specified module can not be found&lt;br&gt;http://www.dll-files.com/dllindex/dll-fi...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;download the .dll file here &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Since I have never had this error, I wouldn't know what to do next but IF the message asks you to locate the file, then just select the downloaded file.  Otherwise ask another question to see what to do with the file =P&lt;br&gt;Reply:idk&lt;br&gt;Reply:http://www.dll-files.com/dllindex/dll-fi...&lt;br&gt;Reply:Search on Google. One time I had a problem with changing my account picture so I went on Google and I learned how to fix it.&lt;br&gt;Reply:re-install messenger =) that shud fix the problem =)&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-2860069065688896940?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/2860069065688896940/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/i-keep-getting-error-can-not-load-dll.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/2860069065688896940'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/2860069065688896940'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/i-keep-getting-error-can-not-load-dll.html' title='I keep getting error-Can not load DLL library C:\WINNT\kernel 32.dll The specified module can not be found'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-2722876502134188382</id><published>2009-07-12T20:31:00.002-07:00</published><updated>2009-07-12T20:31:36.395-07:00</updated><title type='text'>Could not download the dll library c:\windows\user32.dll?</title><content type='html'>you can download that file from here http://www.dll-files.com/dllindex/dll-fi...&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Could not download the dll library c:\windows\user32.dll?&lt;br&gt;For definitions search on google.&lt;br&gt;Reply:boot disk&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-2722876502134188382?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/2722876502134188382/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/could-not-download-dll-library.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/2722876502134188382'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/2722876502134188382'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/could-not-download-dll-library.html' title='Could not download the dll library c:\windows\user32.dll?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-1012197205944920720</id><published>2009-07-12T20:31:00.001-07:00</published><updated>2009-07-12T20:31:18.507-07:00</updated><title type='text'>I'm at a publis library c below?</title><content type='html'>I'm at 1 and I can't go on to my email to tlk to friends&lt;br&gt;&lt;br /&gt;&lt;br /&gt;how do i get around filters?&lt;br&gt;&lt;br /&gt;&lt;br /&gt;help me I can't even go play games&lt;br&gt;&lt;br /&gt;&lt;br /&gt;but other ppl can&lt;br&gt;&lt;br /&gt;&lt;br /&gt;y?&lt;br&gt;&lt;br /&gt;&lt;br /&gt;is it cuz I'm only 12 and registered as a kid?&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;I'm at a publis library c below?&lt;br&gt;Check with the Librarians.  At one Library I go to, some PCs are not for games but others are.  It just depeds on the local policies.  It is possible that you can use chat if you use the web based version, since most public PCs don't allow downloading to the harddrives.  Ask!&lt;br&gt;Reply:well&lt;br&gt;&lt;br /&gt;&lt;br /&gt;at the library i goes to they lets u do anything even porn&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Ask the Liberian &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;* maybe it's becuz when you got Ur libery card ur parents didn't check the games thing&lt;br&gt;&lt;br /&gt;&lt;br /&gt;just get off ur *** and ask  the librarian&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://1cabbage.blogspot.com/&gt;cabbage&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-1012197205944920720?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/1012197205944920720/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/im-at-publis-library-c-below.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/1012197205944920720'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/1012197205944920720'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/im-at-publis-library-c-below.html' title='I&apos;m at a publis library c below?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-8018641517297781859</id><published>2009-07-12T20:31:00.000-07:00</published><updated>2009-07-12T20:31:02.208-07:00</updated><title type='text'>When i accept any person's webcam, i m receiving a dilog box of "microsoft visual c++ runtime library"</title><content type='html'>in this dilog box, i m receiving also that "runtime error!" ,program:c:\progra~1\yahoo!\messen~1\yah... and also  "abnormal program termination"&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;When i accept any person's webcam, i m receiving a dilog box of "microsoft visual c++ runtime library"&lt;br&gt;abnormal program termination indicates that the program is either corrupted or improperly installed.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;please reinstall the software.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-8018641517297781859?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/8018641517297781859/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/when-i-accept-any-persons-webcam-i-m.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/8018641517297781859'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/8018641517297781859'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/when-i-accept-any-persons-webcam-i-m.html' title='When i accept any person&apos;s webcam, i m receiving a dilog box of &quot;microsoft visual c++ runtime library&quot;'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-3592173927257028438</id><published>2009-07-12T20:30:00.003-07:00</published><updated>2009-07-12T20:30:47.422-07:00</updated><title type='text'>I want the biggest VB.NET or C#.NET Source Code Library Sit or CD?</title><content type='html'>I want the biggest VB.NET or C#.NET Source Code Library Sit or CD? &lt;br&gt;&lt;br /&gt;&lt;br /&gt;please, If you have links to download this CD or links of Big library of .Net Source code, Can you give me these links....&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;^.^&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;And Thank you&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;I want the biggest VB.NET or C#.NET Source Code Library Sit or CD?&lt;br&gt;I like www.koders.com.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;www.codeproject.com and www.csharpfriends.com are also great.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-3592173927257028438?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/3592173927257028438/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/i-want-biggest-vbnet-or-cnet-source.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/3592173927257028438'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/3592173927257028438'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/i-want-biggest-vbnet-or-cnet-source.html' title='I want the biggest VB.NET or C#.NET Source Code Library Sit or CD?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-5773447943875333996</id><published>2009-07-12T20:30:00.002-07:00</published><updated>2009-07-12T20:30:30.415-07:00</updated><title type='text'>Help!! I have a Dell Vista, whenever I start my computer, I get a Visual C++ Runtime Library error!?</title><content type='html'>Whenever I start up my dell vista computer, I get a message that says:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;"Buffer overrun detected!"&lt;br&gt;&lt;br /&gt;&lt;br /&gt;"Program: C:\Windows\Explorer.EXE"&lt;br&gt;&lt;br /&gt;&lt;br /&gt;"A buffer overrun has been detected which has corrupted the program's internal state. The program cannot safely continue execution and must now be terminated."&lt;br&gt;&lt;br /&gt;&lt;br /&gt;I have no idea how to get rid of the message, I downloaded AVG antivirus, Spybot, and AdAware, scanned my computer using all three programs and still no luck! Please computer technicians, I really need help, my computer is only 5 months old! &lt;br&gt;&lt;br /&gt;&lt;br /&gt;Thank you very much.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Help!! I have a Dell Vista, whenever I start my computer, I get a Visual C++ Runtime Library error!?&lt;br&gt;Sorry but i'm really smart and i just want to said that i don't know what the problem is, you should contact someone to repair it or fix the problem.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-5773447943875333996?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/5773447943875333996/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/help-i-have-dell-vista-whenever-i-start.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/5773447943875333996'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/5773447943875333996'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/help-i-have-dell-vista-whenever-i-start.html' title='Help!! I have a Dell Vista, whenever I start my computer, I get a Visual C++ Runtime Library error!?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-9144037132843223392</id><published>2009-07-12T20:30:00.001-07:00</published><updated>2009-07-12T20:30:16.302-07:00</updated><title type='text'>While attempting to run yahoo multi messnger.. showed microsoft visual c++ runtime library... run time error!?</title><content type='html'>program c:\program files\yahoo!\messenger\y!multi messenger.exe... what happened? what should i do?&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;While attempting to run yahoo multi messnger.. showed microsoft visual c++ runtime library... run time error!?&lt;br&gt;u should reinstalled the yahoo messanger. the software u have loaded for multilogin is disturbing that. it may be change some coding of yahoo messanger.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://phlox4.blogspot.com/&gt;phlox&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-9144037132843223392?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/9144037132843223392/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/while-attempting-to-run-yahoo-multi.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/9144037132843223392'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/9144037132843223392'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/while-attempting-to-run-yahoo-multi.html' title='While attempting to run yahoo multi messnger.. showed microsoft visual c++ runtime library... run time error!?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-8941260117556576467</id><published>2009-07-12T20:30:00.000-07:00</published><updated>2009-07-12T20:30:00.438-07:00</updated><title type='text'>Library C:\google search?</title><content type='html'>blocked&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Library C:\google search?&lt;br&gt;C:\ is your hard drive.  Google is not on your hard drive.  the browser URL should read http://www.google.com&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-8941260117556576467?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/8941260117556576467/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/library-cgoogle-search.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/8941260117556576467'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/8941260117556576467'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/library-cgoogle-search.html' title='Library C:\google search?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-8550964597674744193</id><published>2009-07-12T20:29:00.002-07:00</published><updated>2009-07-12T20:29:43.868-07:00</updated><title type='text'>I keep getting a message from Microsoft Visual C++Runtime Library saying Runtime Error! etc.  Meaning? .?</title><content type='html'>The message says Program: C:\PROGRA~1\Yahoo!\MESSEN~1\ypager.exe&lt;br&gt;&lt;br /&gt;&lt;br /&gt;This application has requested the Runtime to terminate it in an unusual way.  Please contact the application's support team for more information.  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;I am a computer novice.  What does it all mean?&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;I keep getting a message from Microsoft Visual C++Runtime Library saying Runtime Error! etc.  Meaning? .?&lt;br&gt;It is pointing to a problem with Yahoo Messenger. Try uninstalling it and rebooting then reinstalling.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-8550964597674744193?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/8550964597674744193/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/i-keep-getting-message-from-microsoft.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/8550964597674744193'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/8550964597674744193'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/i-keep-getting-message-from-microsoft.html' title='I keep getting a message from Microsoft Visual C++Runtime Library saying Runtime Error! etc.  Meaning? .?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-5443704440600905320</id><published>2009-07-12T20:29:00.001-07:00</published><updated>2009-07-12T20:29:31.918-07:00</updated><title type='text'>Does anyone know what (microsolf visual c++ runtime library) mean?</title><content type='html'>It pops up on my computer as  a runtime error warning. It also says program c/program files/internet explorer/explore.exe  It also says the application has requested the run time to terminate it in unusal way. Please contact the applications support team for more information.  ..... I can connect to my internet server. But I can not open my home page or mail box or browse on the net. I had to run a system restore to fix the problem, this is the secount time I'v had to do this???Thanks to anyone who can help.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Does anyone know what (microsolf visual c++ runtime library) mean?&lt;br&gt;When software are written in C++, the finished products sometime requires the addition runtime library files to run, these are normally packaged together with the software and installed onto your computer during the first installation, when you get an error such as yours, it either meant the library file is not found, damaged, or simply altered by a different software when they install their library files, over writing whats already on your computer.&lt;br&gt;Reply:microsolf visual c++ runtime library error means that the software was written with microsoft visual c++, usually there is an untreated event in the program... not enough testing.... if u have problems on this computer u should do a virus checkup.... it looks like a windows crash for me.....&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-5443704440600905320?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/5443704440600905320/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/does-anyone-know-what-microsolf-visual.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/5443704440600905320'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/5443704440600905320'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/does-anyone-know-what-microsolf-visual.html' title='Does anyone know what (microsolf visual c++ runtime library) mean?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-2390601852920575410</id><published>2009-07-12T20:29:00.000-07:00</published><updated>2009-07-12T20:29:10.506-07:00</updated><title type='text'>Dialog box of Microsoft Visual C++ Runtime Library shows up whne i click "Ask a Question" by using FireFox</title><content type='html'>Whenever i use Mozilla Firefox(latestest version) to ask a question in this website it will show "Runtime Error!, Program: C:\PROGRAM FILES\MOZILLA FIREFOX.EXE   This application has requested the Runtime to terminate it in an unusual way. " But there is no problem if i use IE. what is wrong with my firefox? How to fix this problem? Please.....help.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Dialog box of Microsoft Visual C++ Runtime Library shows up whne i click "Ask a Question" by using FireFox&lt;br&gt;Please update your Windows to Windows Me... or you will have many other problems with firefox!...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Have a nice day&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://verbena4.blogspot.com/&gt;verbena&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-2390601852920575410?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/2390601852920575410/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/dialog-box-of-microsoft-visual-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/2390601852920575410'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/2390601852920575410'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/dialog-box-of-microsoft-visual-c.html' title='Dialog box of Microsoft Visual C++ Runtime Library shows up whne i click &quot;Ask a Question&quot; by using FireFox'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-3076026437886219126</id><published>2009-07-12T20:28:00.003-07:00</published><updated>2009-07-12T20:28:54.662-07:00</updated><title type='text'>What is a Buffer Overrun C++ Runtime Library?</title><content type='html'>What is this Buffer Overrun C++ thing. I searched it up and people say its some sort of guy hacking into your computer.Is this true and what should I do? I really don't want to lose all my computer memory. If you need more information heres a picture of it.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://i103.photobucket.com/albums/m144/...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;I was playing a online game until this pop up came up. PLEASE HELP!&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;What is a Buffer Overrun C++ Runtime Library?&lt;br&gt;A buffer overrun is a common kind of error that can happen to a program... usually one that is not coded well or that is having a compatibility issue with your computer.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;The buffer is a space in the programs code.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Imagine if the space is only supposed to hold 5 numbers. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;Now imagine the program generated 100 numbers.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;If the programmer did not program a way for the program to handle this extra data.. the program will report a buffer overrun.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Did I explain that in simple enough way for you? If not, email me and I will write more.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Basically, what would concern me is the program itself... is this fiesta.bin thing a known program and where did you get it from. Because ANY program that is good can be re-wrapped with bad code which is better known as a virus.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;If you are concerned.... scan the program with an up to date virus scanner. If the problem continues you may want to try re-installing it and/or contacting the technical support of the manufacturer of the program. They will usually have an FAQ page with known issues. You may just need a patch that they may have on their website. :)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Good Luck!&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;--&lt;br&gt;&lt;br /&gt;&lt;br /&gt;got your email. If you don't have antivirus or firewall.. I wouldn't be going on line. period.  Windows has a built in firewall you can use... and you could get a freeware antivirus solution like AVG but I don't recommend freeware. The error message, as I said, really has nothing to do with viruses (in general) so will it happen again? Probably.. if it is poorly coded or a compatibility issue. If it's a virus you are already hung... ya know? 'cause you've already run it. so if it was a virus you would already be infected. I would suggest you at least get a freeware solution, scan using an online scanner http://housecall65.trendmicro.com and turn on windows firewall.  :)  ps. glad I explained it good :D&lt;br&gt;Reply:I read about this issue and it seems its a problem with the game software.  Although like the other person said, you should have a firewall and virus software.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;But this particular issue it seems is a game issue and a patch issue.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;You can read about it here&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.outspark.com/forums/showthrea...&lt;br&gt;Reply:try and reset your computer and it will clear the ram&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-3076026437886219126?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/3076026437886219126/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/what-is-buffer-overrun-c-runtime.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/3076026437886219126'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/3076026437886219126'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/what-is-buffer-overrun-c-runtime.html' title='What is a Buffer Overrun C++ Runtime Library?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-8528174867873831541</id><published>2009-07-12T20:28:00.002-07:00</published><updated>2009-07-12T20:28:42.063-07:00</updated><title type='text'>What is "Microsoft Visual C++ Runtime Library  Runtime Error!   abnormal program termination.  How can i fix?</title><content type='html'>Program is &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Program: C:\Program Files\NEXON\MapleStory\MapleStory.exe&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;What is "Microsoft Visual C++ Runtime Library  Runtime Error!   abnormal program termination.  How can i fix?&lt;br&gt;The program you're using was written in Visual C++, a programming language. Microsoft's C++ does not produce fully compiled EXE programs, and requires runtime dynamic link libraries. The short answer to your question is this is something that usually cannot be fixed. It may be the result of an incompatibility between two or more programs running in memory, or an error in the program itself. There is usually nothing to worry about, unless... If you absolutely need this program, you can try the MSCONFIG utility to clear up any possible conflicts. Please research this utility as there are many good resources available online for it. The only other possible solution is to update your runtimes by using Vcredist.exe, available from http://support.microsoft.com/kb/259403&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-8528174867873831541?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/8528174867873831541/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/what-is-microsoft-visual-c-runtime_12.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/8528174867873831541'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/8528174867873831541'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/what-is-microsoft-visual-c-runtime_12.html' title='What is &quot;Microsoft Visual C++ Runtime Library  Runtime Error!   abnormal program termination.  How can i fix?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-4560271659088247311</id><published>2009-07-12T20:28:00.001-07:00</published><updated>2009-07-12T20:28:26.718-07:00</updated><title type='text'>Microsoft Visual C ++ Runtime Library - any advice please???</title><content type='html'>Every time I close MS Word I get the message&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Runtime Error!&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Program: C:\programfiles\microsoftoffice\office10...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Can you tell me how to get rid of it please.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Microsoft Visual C ++ Runtime Library - any advice please???&lt;br&gt;Try to re-download and install the Visual C++ Runtime form this link:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.microsoft.com/downloads/detai...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Then read this page carefully:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://support.microsoft.com/kb/307817&lt;br&gt;Reply:easiest way would be to reinstall word..&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;you don't state what the file thats causing the problem is..&lt;br&gt;&lt;br /&gt;&lt;br /&gt;only part of the path, or the version of word or o/s your using..&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;there will be a file it specifies , try looking it up on the web.. see if you can get a newer version.. e.g. if its  a DLL file. etc&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-4560271659088247311?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/4560271659088247311/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/microsoft-visual-c-runtime-library-any.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/4560271659088247311'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/4560271659088247311'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/microsoft-visual-c-runtime-library-any.html' title='Microsoft Visual C ++ Runtime Library - any advice please???'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-1222812335507311275</id><published>2009-07-12T20:28:00.000-07:00</published><updated>2009-07-12T20:28:16.211-07:00</updated><title type='text'>Microsoft Visual C++ Runtime Library?</title><content type='html'>The whole error message says: &lt;br&gt;&lt;br /&gt;&lt;br /&gt;"Runtime error!&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Program: C:\Program Files\Microsoft Office\ Office10\WINWORD.EXE&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;abnormal program termination."&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;This happened to me this morning when I was typing an essay. I retyped they whole thing and the error happened again when I tried to save it. Now, I am trying to recover it, and every time I do, I get that error message. How do I fix it????&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Microsoft Visual C++ Runtime Library?&lt;br&gt;Dunno what's causing the Runtime Error, but I can suggest a strategy to help you isolate it.  Try this:  Create a very small file in Word and see if you can save it to a different directory.  If you can't you at least know you have a problem not related to the file you're creating.  In this case, I'd suggest reinstalling (or repairing) Word from the Office CD.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;If you can save the test file, try again, this time into the directory you want to save the real file in.  Failure points to something with the directory.  Permissions?  A corrupted directory?&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;If the second save succeeds, try recreating your real file a bit at a time in the real directory, saving often to see where it fails.  That might give you a clue as to what's causing the problem.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Good luck.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://snapdragon2.blogspot.com/&gt;snapdragon2&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-1222812335507311275?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/1222812335507311275/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/microsoft-visual-c-runtime-library_12.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/1222812335507311275'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/1222812335507311275'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/microsoft-visual-c-runtime-library_12.html' title='Microsoft Visual C++ Runtime Library?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-371837642481980628</id><published>2009-07-09T02:17:00.001-07:00</published><updated>2009-07-09T02:17:20.970-07:00</updated><title type='text'>Microsoft Visual C++ Debug Library, I am getting a runtime error! abnormal program termination.?</title><content type='html'>Here is the message I'm getting:  C:\PROGRA~1\Yahoo!\MESSEN~1\YAHOOM~1.EXE  it tells me to press retry to debug the application but that doesn't work.  I 'm ejected from Yahoo Messenger when I use the cam to send/receive. Please help me this is so frustrating...&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Microsoft Visual C++ Debug Library, I am getting a runtime error! abnormal program termination.?&lt;br&gt;Maybe try uninstall %26amp; reinstall to restart, see whether it works, try ur best %26amp; Gud Luck!&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-371837642481980628?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/371837642481980628/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/microsoft-visual-c-debug-library-i-am.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/371837642481980628'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/371837642481980628'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/microsoft-visual-c-debug-library-i-am.html' title='Microsoft Visual C++ Debug Library, I am getting a runtime error! abnormal program termination.?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-5400829088912914491</id><published>2009-07-09T02:17:00.000-07:00</published><updated>2009-07-09T02:17:05.805-07:00</updated><title type='text'>Microsoft Visual C++ runtime library error?</title><content type='html'>I stratred my laptop this morning, and I got this messenge. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;Runtime Error!&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Program: C:\Windows\system32\rundll32.exe&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;This application has requested the Runtime to terminate it in an unusual way.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Please contact the application's support team for more information. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;I couldn't close the error window, what should I do?&lt;br&gt;&lt;br /&gt;&lt;br /&gt;btw, my laptop is running windows vista.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Microsoft Visual C++ runtime library error?&lt;br&gt;i got a C++ in my english class&lt;br&gt;Reply:i got my pc back! yay! My brother has a pc to&lt;br&gt;Reply:I GET THIS A LOT. SOMEONE TOLD ME IS WAS A SCRIPT ERROR IN THE MEDIA OR LANGUAGE. RESTORE YOUR COMPUTER TO AN EARLIER TIME. DUNNO THE REAL REASON FOR THIS BUT I HAD IT IN MY REALPLAYER A LOT.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-5400829088912914491?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/5400829088912914491/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/microsoft-visual-c-runtime-library_3205.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/5400829088912914491'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/5400829088912914491'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/microsoft-visual-c-runtime-library_3205.html' title='Microsoft Visual C++ runtime library error?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-5789849797653267978</id><published>2009-07-09T02:16:00.003-07:00</published><updated>2009-07-09T02:16:49.857-07:00</updated><title type='text'>Mircosoft Visual C++ Runtime Library Runtime Error everytime i try to access my hard drive or any folder?</title><content type='html'>I keep getting this error when i try to access my hardrive or any folders on my computer. Is says the program is C:\WINDOWS\explorer.exe and also says This application has requested the Runtime to terminate it in an unusual way. I cannot access my hard drive or any of my folders anymore. Please help&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Mircosoft Visual C++ Runtime Library Runtime Error everytime i try to access my hard drive or any folder?&lt;br&gt;Runtime Errors and others:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://support.microsoft.com/default.asp...   &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Good Luck&lt;br&gt;Reply:go to http://support.microsoft.com and search for runtime errors.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-5789849797653267978?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/5789849797653267978/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/mircosoft-visual-c-runtime-library.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/5789849797653267978'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/5789849797653267978'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/mircosoft-visual-c-runtime-library.html' title='Mircosoft Visual C++ Runtime Library Runtime Error everytime i try to access my hard drive or any folder?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-1372564910549906306</id><published>2009-07-09T02:16:00.002-07:00</published><updated>2009-07-09T02:16:33.219-07:00</updated><title type='text'>Microsoft Visual C++ Runtime Library Error ( Exploere.EXE  Error)?</title><content type='html'>Buffer Overrun detected!&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Program: C\WINDOWS\Explorer.EXE&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;A buffer overrun&lt;br&gt;&lt;br /&gt;&lt;br /&gt; has been detected which has corrupted the program's internal state. The program cannot safely continue execution and must now be terminated.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;                                  [       OK       ]&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Hello everyone! can help me about this problem,i got this error thing today,last night my computer was fine but today every time i open my computer or turned On,This thing just pop-up suddenly i have no idea when it came from,when i press the OK everything on my desktop was like empty then came back to normal then that thing again well pop-up all the time so i just ignore it for while,anyone knows how to solve this problem?many thanks =)&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Microsoft Visual C++ Runtime Library Error ( Exploere.EXE  Error)?&lt;br&gt;Spyware, Adware or a virus. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;There are a lot of programs to remove that stuff, the one I use is called PC Pitstop&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://1lavender.blogspot.com/&gt;avender&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-1372564910549906306?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/1372564910549906306/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/microsoft-visual-c-runtime-library_6103.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/1372564910549906306'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/1372564910549906306'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/microsoft-visual-c-runtime-library_6103.html' title='Microsoft Visual C++ Runtime Library Error ( Exploere.EXE  Error)?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-6819926641805379616</id><published>2009-07-09T02:16:00.001-07:00</published><updated>2009-07-09T02:16:17.487-07:00</updated><title type='text'>Microsoft visual C++ runtime library (can you help)?</title><content type='html'>buffer overrun detected!&lt;br&gt;&lt;br /&gt;&lt;br /&gt;program:c:\program files\internet explorer\ iexplore.exe&lt;br&gt;&lt;br /&gt;&lt;br /&gt;a buffer overrun had been detcted witch had corrupted the programs internet state. the program cannot safely continue execution and must now be terinated. click on ok what can i do to fix this is there someone out there who knows how to fix it . please help me .&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Microsoft visual C++ runtime library (can you help)?&lt;br&gt;You didn't mention what version of Internet Explorer or Windows you are using, so it could be one of several things.  Here are a couple of likely cases.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;You could be using a vulnerable or unpatched version of IE.   In which case you would need to run all applicable security updates or upgrade the browser.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;You could have some spyware/adware that is causing the problem.  Download, install, install updates and scan your pc with an anti-spyware program like Spybot.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-6819926641805379616?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/6819926641805379616/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/microsoft-visual-c-runtime-library-can.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/6819926641805379616'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/6819926641805379616'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/microsoft-visual-c-runtime-library-can.html' title='Microsoft visual C++ runtime library (can you help)?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8717525656538718528.post-2250232438504907740</id><published>2009-07-09T02:16:00.000-07:00</published><updated>2009-07-09T02:16:03.351-07:00</updated><title type='text'>Microsoft Visual C++  Runtime Library?</title><content type='html'>When using Microsoft word, when I'm typing a document, all of a sudden this box comes up that says: Runtime error&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Program:C:\ProgramFiles\MicrosoftOffic...  It shuts down Word, I've tried to repair it under  the control panel, I've tried uninstalling and reinstalling it and nothing has helped. Any information on this will be GREATLY appreciated.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Microsoft Visual C++  Runtime Library?&lt;br&gt;See http://support.microsoft.com/?kbid=55522... "WD: How to Troubleshoot a Visual C++ Runtime Error in Word".&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;-- &lt;br&gt;&lt;br /&gt;&lt;br /&gt;garfield-n-odie&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Microsoft MVP 2005-2008&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://mvp.support.microsoft.com/&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8717525656538718528-2250232438504907740?l=c-library2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-library2.blogspot.com/feeds/2250232438504907740/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-library2.blogspot.com/2009/07/microsoft-visual-c-runtime-library_4230.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/2250232438504907740'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8717525656538718528/posts/default/2250232438504907740'/><link rel='alternate' type='text/html' href='http://c-library2.blogspot.com/2009/07/microsoft-visual-c-runtime-library_4230.html' title='Microsoft Visual C++  Runtime Library?'/><author><name>hpdncf</name><uri>http://www.blogger.com/profile/04628496096956440660</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
