49,757 Topics

Member Avatar for
Member Avatar for freddan007

Is it possible to get the return value of a function started with the CreateThread function or is the only way I can get a value from it to use global variables? I searched but i found nothing. Thanks.

Member Avatar for freddan007
0
514
Member Avatar for Alibeg

I ve just installed ubuntu intrepid ibex (8.10.) on my laptop i have been using it for a while already but i just wanted to clear the system completely so i installed it, put some updates, some programs, but i also installed CodeBlocks using synaptic manager. Everything finished smoothly. Now, …

Member Avatar for Alibeg
0
615
Member Avatar for h3llpunk

Hi, Ive started on doing some animations in win32 but i cant seem to know how to set the starting position without messing up the movement. Also all my animations are flickering. this is my code so far exluding the intializing, windows creations and such. [code=c++] typedef struct _REDINFO { …

Member Avatar for h3llpunk
0
76
Member Avatar for db11

I have two questions, the first of which is simple but I can't think of what the answer is: <code deleted and saved as attachment> lol sorry... I get the following complier error: <errors deleted and saved as attachment> why is 'string' undeclared? Where do I declare it? It is …

Member Avatar for db11
0
228
Member Avatar for greg022549

is there anyone that can look at my small program and tell me what I am doing wrong? If I submit it to you? I am trying to learn C++ and I am a newbie. Here is my zipped file

Member Avatar for siddhant3s
0
85
Member Avatar for 94SupraTT
Member Avatar for homeryansta

I have a linked list of operators ()+-*/ , how would I be able to compare them if they are all of type char? I looked at the ascii table, but they are all out of order so that isn't a choice.

Member Avatar for homeryansta
0
109
Member Avatar for Necrolis

well, after hours apon hours of serching for this, i've come up with nothing but a few sources for some plugins[from thecodeproject.com], which don't cover what I need: Basically writing to the currently active (source) file(at the position of the cursor/caret), like so(highly simplified) [code=cplusplus] fprintf(pOpenDocument,"/*\n\tTime: %s\n\tDate: %s\n\tAuther: %s\n\tReason & …

Member Avatar for Necrolis
0
162
Member Avatar for Mazor

In Linux the output is printed correctly, with 'lines2' having the same value as 'lines' minus 1, but in windows the value of 'lines2' and is always printed as -2. The source code is solely for testing purposes, hence the messy code with no for loops, bad variable names etc. …

Member Avatar for Mazor
0
97
Member Avatar for Q8iEnG

Hi guys :) I have small question of course I don't want to ask for solving my homework, no i'll work on it on my own. I just need some tips :) please. I want to make a program that calculate these function: F1 = 1; F2 = 2*lgn + …

Member Avatar for Q8iEnG
0
140
Member Avatar for mimis

I am trying to solve an algorithmic problem. First of all the user inputs the coordinates of some nodes. I have to go to the node with the biggest x( let name it E) and then to return to the start that will always be the node (0,0)( let name …

Member Avatar for mimis
0
368
Member Avatar for XpL0d3r

I have an assignment where I need to create an inventory program where I can add information about a product to a text file, and shown in the file like shown: 1;Hammer;20;13.50 Where 1 is the record number, Hammer is the description, 20 is the quantity, and 13.50 is the …

Member Avatar for DemonGal711
0
121
Member Avatar for songweaver

Below is the code which is supposed to round to two decimal places, i.e. 1.2874 is suppose to round to 1.29, but rather gives me 128.0000. What am I doing wrong need help fast! #include <iomanip> #include <iostream> #include <cmath> using namespace std; double roundIt(double x, double n) { x …

Member Avatar for kbshibukumar
0
139
Member Avatar for sisse56

[code=c] #include<iostream.h> #include<string.h> void main() { int ch,n,phy_id[10],phy_workex[22]; char phy_name[12],phy_spec[30]; char pat_name[20],pat_gender[10],pat_case[50],ass_phy[12]; int m,pat_age[4],pat_cardno[20],pat_date[4]; do { cout<<"\t\t\t TASK SELECTION WINDOW \n"; cout<<"\t\t\t ********************* \n"; cout<<"\t What would you like to do ?\n"; cout<<"\t Please enter the number you choice \n"; cout<<"\t 1.Register a physician/s \n"; cout<<"\t 2.Register a patient/s \n"; …

Member Avatar for Freaky_Chris
-1
103
Member Avatar for atreides27

so im writing this code, trying to do an exercise with friend functions and all that I have that part down, I was told to take my original code and put in what you see now "Make function add of type AltMoney. Thus, this function now computes the sum of …

Member Avatar for siddhant3s
0
389
Member Avatar for cbreeze

I am supposed to read in data from a file, create a linked list, and be able to traverse it. I feel like I have the first part of the code correct but I get a segmentation fault when I try and run the program and the pgm4.rpt file is …

Member Avatar for vmanes
0
133
Member Avatar for JameB

Hello, I am trying to create a program where I can work with an array of char that contain either 0 or 1 representing a decimal number that the user enters. Basically I need to convert a decimal number into binary and store it into a char array. I wrote …

Member Avatar for blacklight332
0
957
Member Avatar for koushal.vv

Hi, i just need to know is there any method in MFC / C++ which will do the validation for the entered date. ie if the date 12/11/2008 is given as input it should return saying the date is valid.i hope there exsists some standard function. it should also check …

Member Avatar for John A
0
500
Member Avatar for rgfirefly24

So i have the following code: [CODE] //main program char username[15] = {'r','g','f','i','r','e','f','l','y','2','4'}; char password[9] = {'1','2','3','4','5','6','7','8'}; if(client.Send(15,9,username,password)) { printf("Connection Successfully Established"); } [/CODE] [CODE] //class file bool Class_Name::Send(int usize, int psize, char *username, char *password) { itoa(usize,sendbuffer,16); // works fine itoa(psize,sendbuffer + 1,16); // works fine for(int i = …

Member Avatar for rgfirefly24
0
91
Member Avatar for cppnewb

Hi. I am looking for a way to load the windows COMMDLG.DLL from my C++ program and open the print dialogue box. Thanks for any help!

Member Avatar for death_oclock
0
86
Member Avatar for JohnnyG23

This is for c++. Ok, I have most of this done but can't quite figure out how to get the queue to appear on screen. I also think I may have messed up my loops as well. What it is supposed to do is ask what the user wants to …

Member Avatar for Lerner
0
92
Member Avatar for VBNick

hello! I am trying to learn how to do paralell processing. I am baseing this on an example that I saw here: [url]http://www.codeproject.com/KB/recipes/sseintro.aspx[/url] the one titled "SSETest Demo Project" I tried to make my own, and don't understand why it isn't working. Here is the code: [code="cplusplus"] // testconsole.cpp : …

Member Avatar for VBNick
0
228
Member Avatar for shasha821110

Hi, all. I have one question: I am writing my-string class now according to the assignment. And like other String class assignment, we have to overload the operator, do the difference type constructor, etc. Well, i almost finish my assignment. But there have one problem with my code. I am …

Member Avatar for William Hemsworth
0
250
Member Avatar for colmcy1

Hey all, I am trying to first write an array to a text text file, delete the array, then later in the program I need to use the array again so I need to open the text file and read the array and call it the same name as before. …

Member Avatar for 10Pints
0
261
Member Avatar for BruenorBH

I am sort of new to Win32 API programming with C++ and I am having an issue trying to save what is in the textboxes to a file when you hit the close button. I am using the WriteFile() and CreateFile() functions. Everytime I try to do it I get …

Member Avatar for BruenorBH
0
182
Member Avatar for JameB

Hello, I have a problem where I need to delete any occurrence of "~" from a string. I created a function but in the end, it only deletes half of the "~" and leaves the other half.... [code=c++] string goodstring(string inp) { for (int i = 0; i < strlen(inp.c_str()); …

Member Avatar for GDICommander
0
132
Member Avatar for sam_sumit184

program for copying one file to another by using protection of conventional run time error.

Member Avatar for siddhant3s
0
55
Member Avatar for peacerosetx

Greetings All, I have one class I'll call main class and it creates and initializes all of the classes so that they are not re-created again. What I simply want to do is to have in the creation of my other classes pointers to the classes they need to operate. …

Member Avatar for peacerosetx
0
104
Member Avatar for viv_daniweb
Member Avatar for siddhant3s
0
159
Member Avatar for mvmalderen

While searching the internet I always come across several posts where they're saying that Bloodshed Dev-C++ isn't for advanced use (rather for newbies), why are they saying that? Is MinGW not an advanced compiler? Or is it just because they aren't developping Dev-C++ anymore... I know there's Code::Blocks, but I …

Member Avatar for mvmalderen
0
168

The End.