49,765 Topics

Member Avatar for
Member Avatar for miyumi

now i know how to run the program of while loop.But i have a problem in getting while loop using three counter

Member Avatar for Anuradha Mandal
0
129
Member Avatar for seamus400

I put a few solid days into finding a working method of capturing the screen and they either didn't compile or weren't quite what I was looking for. I am wondering if anybody has any example code to capture the screen every 10 seconds and save it to bmp. I …

Member Avatar for seamus400
0
590
Member Avatar for jjyuyujj

Hi Does anyone know how to playing a set of short WAV files without delay? I was using the following, but there is a delay in-between. PlaySound("a.wav",NULL,NULL);//PLAY WAV SOUND ONCE PlaySound("b.wav",NULL,NULL);//PLAY WAV SOUND ONCE or I need to concatnate a few sets of short WAV files into one descriptor so …

Member Avatar for pseudorandom21
0
282
Member Avatar for Satyrn

Hello Daniweb Community, I am migrating a VS2005 solution to VS2008 which often includes its own ras.h file. Unfortunately there are several projects including <windows.h> which includes "ras.h" from the Microsoft SDK. What I would like to do is get a refactoring tool to rename this header file and update …

Member Avatar for Ancient Dragon
0
115
Member Avatar for donaldw

I would like to be able to dynamically load and display images in a Windows application written in an old version of MS Visual C++. I'm currently using functions as given [URL="http://forums.devx.com/showthread.php?t=89505"]here[/URL] by Karl Lilje. The pictures display fine when they are supposed to but they are not "persistent" (by …

Member Avatar for Ancient Dragon
0
130
Member Avatar for detailer

Hello, Beginner in C++ how to make this program if i pressed ctrl-c the program will quit. and there's a tiny problem. whenever i run my program it says that return 0 is unreachable code. thanks guys :) [CODE]#include <iostream.h> #include <stdio.h> #include <stdlib.h> int main() { while (1) { …

Member Avatar for Ancient Dragon
0
250
Member Avatar for shbk

does anybody know library for c/c++ to catch presses of keys like ctrl+shift+foo or fn+f7 etc. ?

Member Avatar for donaldw
0
82
Member Avatar for Stefano Mtangoo

Hi, I'm making an MVC pattern based app and I though I would learn the principles first. I have reached a stage I need to connect the three elements. When Controller receives user action It calls right model. Now I need to register callback function so that when Model is …

Member Avatar for Stefano Mtangoo
0
1K
Member Avatar for aiwasen

c++ programming from problem analysis to program design by d.s malik .. guys is this a good book for the beginner??

Member Avatar for donaldw
0
136
Member Avatar for Muhasaresa

:) Hello, I am making a C++ console application where the user can encrypt and decrypt text. So far, I have successfully made the encryption part, but am not quite sure how to make the decryption part. For example: abcb -> 128.70.88.70. but I can't make it go back to …

Member Avatar for donaldw
0
158
Member Avatar for ChaseRLewis

This is what I read about it. [CODE] virtual base class becomes common direct base for the derived class [/CODE] So my question is exactly what does this mean. What I believe it means. [CODE] class A { protected: int a; public: virtual int get_a(); A(void); ~A(void); }; [/CODE] With …

Member Avatar for mike_2000_17
0
163
Member Avatar for Marvin Danni

[CODE]#include <iostream> #include <string> using namespace std; int main(){ string str = "Gregory"; int k = 0; for (k=0; str[k]!='\0';k++){ if (str[k]>=65 && str[k]<=90) { str[k]+=32; } } cout << str << endl; } [/CODE] is this code right

Member Avatar for Narue
0
122
Member Avatar for Panathinaikos22

As we learn all, C dont supprot Inheretic, Polymorphism, Function Overloading... And Few Other Things... My Question is: What is this one? [URL=http://imageshack.us/photo/my-images/705/wico.png/][IMG]http://img705.imageshack.us/img705/5661/wico.png[/IMG][/URL] [code] using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Example { public partial class WForm : Form { …

Member Avatar for ddanbe
0
276
Member Avatar for Martin C++

Hello, I m doing an exercise i found in internet. The exercise is the following: [QUOTE] Pancake Glutton Write a program that asks the user to enter the number of pancakes eaten for breakfast by 10 different people (Person 1, Person 2, ..., Person 10) Once the data has been …

Member Avatar for frogboy77
0
209
Member Avatar for queenjay14

Im having some problems identifying where my error is. I've read through the post on this topic and applied the responses to my code but it's still giving me a warning. I am trying to use an array to compute the average of 10 numbers. [CODE]#include <iostream> using namespace std; …

Member Avatar for WaltP
0
221
Member Avatar for senergy

Hi, does someone know nice, clean tutorial with links for all headers and libraries for connection to MySQL database? I'm searching for something good for about week now, but I've still found only some rly rly rly retarded posts, without any libraries for donwload or something, just code, i've tried …

Member Avatar for Ancient Dragon
0
324
Member Avatar for T1205

This assignment will require you to develop a program that reads a series of positive and negative integers from the user and loads these values into an array. The program then calculates and outputs the average of the values read. You will develop the entire program from the problem statement, …

Member Avatar for WaltP
-1
476
Member Avatar for shirlpeyton

[TEX][TEX]This assignment will require you to develop a program that reads a series of positive and negative integers from the user and loads these values into an array. The program then calculates and outputs the average of the values read. You will develop the entire program from the problem statement, …

Member Avatar for WaltP
0
502
Member Avatar for Holali

Hello, I need advice. Ive been using Microsoft Visual studio 2008 and making c++ console applications for some time. I made a "Five in line" game. I have a complete system, so its playable, now i just upgrade an AI. So, I have the code for console version, but I …

Member Avatar for mike_2000_17
0
250
Member Avatar for SCass2010

Hi everyone, I'm trying to learn C++ and about pointers and whatnot and seem to be a bit stuck... one of the exercises we were given involves passing an object (a Driver object) by reference to another object (a Manufacturer), which stores it. The Manufacturer object can then "employ" and …

Member Avatar for NathanOliver
0
137
Member Avatar for maxcraft

Hi i need help, what i am trying to do is that the program should search & print the first occurrence of that integer in the array and last occurrence of that integer in the array. If that integer does not exist in the array at all, then the program …

Member Avatar for vijayan121
0
114
Member Avatar for 4everct01

I have 2 error for my code when i compile and i need some guidance =) This is a small part of my program. Here's my code. I declare my function like below: [CODE] void working (Stack& deck, Stack& deckStack, List* column, Stack* stack, bool& loadGame, bool& exitGame, bool& newGame, …

Member Avatar for 4everct01
0
1K
Member Avatar for manugm_1987

Hi all, Can any one please help me how to call an function from dll in vc++. [CODE]// test1.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "windows.h" #include "conio.h" #include "windef.h" int _tmain(int argc, _TCHAR* argv[]) { HINSTANCE instcall=LoadLibrary(TEXT("c:\\test2.dll")); if(instcall==NULL) printf("Failed to load dll"); …

Member Avatar for thines01
0
392
Member Avatar for Mr.UNOwen

Hello, I've confused myself a bit with virtual functions. I know they're useful when you want to call the parents function via casting the class to it's parent, but I've found myself scratching my head on few cases. So... Lets say I have a parent Class P and a child …

Member Avatar for mike_2000_17
0
365
Member Avatar for sasho648

I writing simple cmd game. My question is how to use timing function while I use _getch() command? Because this getch function stops the timing and the timer continuous after I click the keys.:@

Member Avatar for sasho648
0
311
Member Avatar for sergent

Why doesn't this work: [CODE]#include <iostream> class myclass { public: union d { int i; }; }; int main() { myclass i; i.d.i = 3; return 0; } [/CODE] but this does: [CODE]#include <iostream> class myclass { public: union { int a; }; }; int main() { myclass i; i.a …

Member Avatar for mike_2000_17
0
169
Member Avatar for YungSoprano

Hi, i'm having a few problems when debugging my project. Basically i have two errors; Error 2 error C2065: 'cout' : undeclared identifier Error 3 error C2065: 'cin' : undeclared identifier This is where the errors are (It's a header file) int temp; cout<<"Enter the Client Number : "; cin>>temp; …

Member Avatar for YungSoprano
0
604
Member Avatar for goco17

is it possible to have a back() in stack....i know queue and vector has it... [CODE] #include "Card.hpp" #include "Card2.hpp" #include <stack> using namespace std; typedef char StackItemType; bool Card::isEmpty() const { return cards.size() == 0; } Card Card::see() const { return cards.back(); } Card Card::pop() { Card c = …

Member Avatar for jonsca
0
4K
Member Avatar for AshfaqueIW

Hi all, I am working on a C++ application which involves a thread. My application draws the waveform on screen. The drawing speed should be 25mm/s and the thread should run every 10.56ms for this speed to obtain. But with either 10ms or 11ms set as the Time period for …

Member Avatar for mike_2000_17
0
175
Member Avatar for Chilton

Greetings, I've found [I]Accelerated C++[/I] to be a pretty solid foundation in C++, but with regards to the new standard, does anyone know of a good supplemental text that can keep me up to date with said standard? Any help would be greatly appreciated. Thanks in advance.

Member Avatar for Chilton
0
214

The End.