49,765 Topics

Member Avatar for
Member Avatar for FujiFilm

I deleted IDR_MAINFRAME256 and need to add it back to my toolbar folder under Resource View. How do I add it back.

Member Avatar for FujiFilm
0
27
Member Avatar for Tellalca

Hey; I have an assignment. My assignment includes the following tasks to be implemented under Linux: – Display a list of all available files (with their types) in the working directory, – Display a list of only regular files in the working directory, – Display a list of only directories …

Member Avatar for sergent
0
218
Member Avatar for PhysicsExpert

This worked in VC++ 6 but in Visual Studio 2010 assign needs a second parameter, in the context of this function would it be a better idea to use resize or reserve and why? [CODE] bool CN3ShapeExtra::Load(HANDLE hFile) { bool bSuccess = CN3Shape::Load(hFile); int iPC = m_Parts.size(); m_Rotations.clear(); if(iPC <= …

Member Avatar for PhysicsExpert
0
181
Member Avatar for qazerty23

Hello, I have two forms named are Form1 and Form2 (Form1.h / Form2.h) There are a textbox and a button on Form1 and Form2. When I click the button on Form1, it must show Form2 and when I click the button on Form2, it must fill the textbox on Form1 …

Member Avatar for sergent
0
131
Member Avatar for Danny1994

Hello, im searching a Packer wich can protect hackers from "Reverse Engineering". It has to work for Net DLLs which are made with visual studio 2008. and it would be awesome if it would be free. Cheers :)

Member Avatar for andyman2
0
146
Member Avatar for mnewsome

Looking for the executable file for visual studio express 10.0. Traced the program file folders to: [COLOR="Green"]progrram files \ microsoft visual studio 10.0\ common7\IDE[/COLOR] There is an app that will allow programs to be run from a USB drive if the path to the executable file and its path is …

0
43
Member Avatar for goocreations

Hi I've seen a function in numpy ([URL="http://docs.scipy.org/doc/numpy/reference/generated/numpy.gradient.html"]http://docs.scipy.org/doc/numpy/reference/generated/numpy.gradient.html[/URL]) for calculating the gradient of a 2-dimensional array. Numpy also provides 2 examples on that website (I'm more interested in the second one). I now want to use such a function in C++. Does anyone know if there is such a function …

Member Avatar for goocreations
0
2K
Member Avatar for hokage4

I,m having a problem with my program. [CODE] float num,num1,score; cin>>num; score=num/num1; cout<<score; //if num and num1 is a digit, continue program; else, end program[/CODE] I already tried using (isalpha and isdigit), but it seems to be working only in int and char data type, also tried using stringstream approach, …

Member Avatar for hokage4
0
125
Member Avatar for TheWolverine

Hi all, I'm busy writing a generic textfile reader class and I'm struggling to write the code to deal correctly with end-of-line (EOL) characters for Mac, Linux and Windows. I've done a fair bit of reading on the issue and I came up with the following function within my TextFileReader …

Member Avatar for TheWolverine
0
557
Member Avatar for clickspiker23

Im trying to learn c++ and i got a book which is not that great in my opinion, due to errors. one of my problems im having with one of the exercises is trying to set values for food, land. every time i run the program i get a bunch …

Member Avatar for Duoas
0
107
Member Avatar for visom

Hi everyone. My code is used to calculate fractions and display them as "3/4 + 3/4 = 3/2" and such. I having some trouble with the the code segment [CODE] calculate.setadd(); calculate.setsub(); calculate.setmult(); calculate.setdiv();[/CODE] There's a red line under the close parenthesis saying "too few arguments in function to call". …

Member Avatar for visom
0
293
Member Avatar for Veneficus

Hello. So I am attempting to load a Bitmap into my project. I am using Visual Studio 2010. I am going to the resource view, right click, choose to add a new Resource, and from there I pick Import. Then, I simply select a .bmp file and I choose open. …

Member Avatar for mrnutty
0
100
Member Avatar for eman 22
Member Avatar for mrnutty
0
101
Member Avatar for ekailan

Is it possible to use file to increase the memory available. for example: if we ahve code need 1 GB RAM to be work is it possible to run it in a system with 512MB RAM and use a file to allocate the rest of the memory needed.

Member Avatar for predator78
0
113
Member Avatar for Sonia11

I have written this code using templates which works very perfectly well. I am a beginner in using templates, so I really want someone to check if its written in a correct format. Because when I am deleting template<elemType> from the beginning of each function and main, the code is …

Member Avatar for mrnutty
0
308
Member Avatar for stereomatching

something like [code] class base { public : virtual void draw() const = 0; virtual void area() const = 0; }; class rectangle : public base { public : virtual void draw() const {std::cout<<"rectangel\n";} virtual void area() const {std::cout<<"rect area\n";} }; class triangle : public base { public : void …

Member Avatar for thekashyap
0
161
Member Avatar for predator78

Hi from what I have seen this should be correct but compiler is complaining. [CODE] #include <iostream> #include <string> using namespace std; // player class class Player{ int *position; string name; public: Player(); ~Player(); void set_name(){ cout << "enter name: "; getline(cin,name); cout << "name is now: " << name …

Member Avatar for predator78
0
97
Member Avatar for jowana

Hello, how can I pause the terminal after running the program? I am using a program that outputs a table of error rates.. but can't see the result. I used few suggestions on the web but still not working , char d; cin>>d; not working , what else can I …

Member Avatar for sergent
-1
212
Member Avatar for Ertzel

I am trying to use the Net User command from the cmd in my C++ program. I have this... [CODE]char acUserName[100]; DWORD nUserName = sizeof(acUserName); if (GetUserName(acUserName, &nUserName)){ cout << "User Name: " << acUserName << endl; system("Net User"); }[/CODE] This displays the User Name on the screen and then …

Member Avatar for Ertzel
0
146
Member Avatar for jayrpalanas

anybody can give me the free link for c/c++ software?...please give me... thank you!!!

Member Avatar for iamthwee
0
169
Member Avatar for SQLpower

Hello, guys. I found useful stuff so far. I'd like to ask if someone can give me some ideas how to wandering guards or set switches to open certain doors in a maze game in c++? At the moment I am thinking just to add some bits, can someone give …

Member Avatar for iamthwee
0
320
Member Avatar for infiniteloop56

Hey everyone, I am new to this site, basically my problem is this: The user inputs an integer, and then the user inputs a character, the program is supposed to make a triangle out of the character, with the max width of the user inputed integer. for example; user inputs …

Member Avatar for goldzero
0
1K
Member Avatar for SQLpower

Hello. I have some problems understanding the code. I'd like to ask for some help. I need someone to break it down for me. Just to explain what's going on and what's happening. Well this is map.cpp: I got the other bits but I am struggling with this one and …

Member Avatar for Sky Diploma
0
204
Member Avatar for DerrickC

I have written the following program. It collects inventory information and stores it in a file. I need to write a separate program that will access that file and give me the totals of the information stored in it ie. (quantity,wholesalecost,retailcost). What I'm specifically having trouble with is how to …

Member Avatar for DerrickC
0
184
Member Avatar for programing

plz help me with code c++ for binary full adder that sum to binaryn like 1111 + 0110 [CODE]#include <iostream> using std::cout; using std::endl; const int LENGTH = 5; char sumChars(char x, char y, char& carry); int main() { char first[LENGTH + 1] = "10100";// 20 char second[LENGTH + 1] …

Member Avatar for Sky Diploma
0
3K
Member Avatar for Muhammad Anas

A part of one of the programs in my assignment requires to declare three arrays of same size which will be used in parallel to store gpa's, registration numbers and names of the students respectively. When I use a single loop to take input in all these three arrays then …

Member Avatar for Muhammad Anas
0
2K
Member Avatar for gcardonav

Hi guys: The following code compares two folders and if the input is correct will print out the data. That's not my problem, I wanted to add an empty line when the comparison is incorrect. The things is that it adds a good amount of empty lines before I get …

Member Avatar for WaltP
0
221
Member Avatar for failbot

This should display 5 lines of code that say "test", yet I am only getting 4 and it is never reaching zero, since the output never displays, "the test is over". What is wrong with this implementation? I am quite sure it's an error in my next() function. Any help …

Member Avatar for predator78
0
164
Member Avatar for Jimmyteoh

1. when declare array, what the thing needed. 2. know how to build/use 2D array. 3. how the pointer relate to array. 4. give string manipulation function and describe it. 5. what is the key element for OOP. 6. define structure. 7. how destructor works. 8. define class.

Member Avatar for Veneficus
-5
112
Member Avatar for Red Dragon

the aim of this programme is to create a .txt file (of which the name is specified by the user) of all the items in a certain directory (also specified by the user) the problem is about half way down, the 'mydir' bit [CODE] #include <iostream> #include <fstream> #include <string> …

Member Avatar for Red Dragon
0
358

The End.