Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #3K
~5K People Reached
Favorite Forums
Favorite Tags

18 Posted Topics

Member Avatar for addicted

[quote=Ancient Dragon;355808][URL="http://www.codexxi.com/MyBlocks.html#atConsoleObj"]Here's[/URL] another link that may interest you.[/quote] if you include "stdlib.h" and add the line [CODE] system("cls"); [/CODE] where you want to clear the screen, maybe it helps I use it in Visual C++

Member Avatar for Bob
0
2K
Member Avatar for shanevdw

[quote=shanevdw;355775]Hi Can someone please help me. I have created a crystal report in visual studio 2005 crysatl reports. I create a dateset with all my necessary fields and parameter from a stored procedure. I create the report using the wizard. It add all my field, but it does not add …

Member Avatar for jerry32uk
0
167
Member Avatar for yoas

i think you can connect to the page via sockets programming in c. and then try parsing the page like seaching the currency values.

Member Avatar for Omarcito
0
116
Member Avatar for pokemon123

[quote=pokemon123;415623] this are what i have started and i need help to go on.Not sure if i'm correct but i'm doing basic OOP language in visual studio. Let me find my code ^_^![/quote] Are you sure that you had started? may be some googling lets you find some ready-to-deploy code... …

Member Avatar for iamthwee
0
87
Member Avatar for JC_McGeekster

[quote=JC_McGeekster;358326]How can I initialise different video modes... like SVGA 800x600 mode, EGA 640x350 mode, et cetera using interrupts... what exactly must I do? Could you demonstrate an example or two for EGA 640x350 and how I can then write to the memory? Thank you.[/quote] may be you can search on …

Member Avatar for Ancient Dragon
0
123
Member Avatar for Zay

[quote=Zay;358321][COLOR=yellowgreen]OK ,thanks[/COLOR] [COLOR=sandybrown]and how i can solve this error ;[/COLOR] [COLOR=red]this is the struct :[/COLOR] [COLOR=blue]struct Book{[/COLOR] [COLOR=blue]address AD;[/COLOR] [COLOR=blue]string name;[/COLOR] [COLOR=blue]long phone;[/COLOR] [COLOR=blue]};[/COLOR] [/quote] Can you give information about [CODE] [COLOR=blue]struct Book{[/COLOR] [COLOR=blue][U]address AD;[/U][/COLOR] [COLOR=blue]...[/COLOR] [COLOR=blue]};[/COLOR][/CODE] what kind of data type address is?

Member Avatar for Zay
0
134
Member Avatar for ReeciePoo

[quote=ReeciePoo;356127]Could anyone recommend my best way to start learning C++ Windows Applications Like any tutorials or books for that matter any help woudl be great[/quote] try [URL]http://www.functionx.com/cpp/index.htm[/URL] practice as much as you can. and maybe write down to a notepaper. (hardcode with a pencil and paper is the permanent way …

Member Avatar for fulyaoner
0
97
Member Avatar for wheelie

[quote=wheelie] you could find source codes that are downloadable and with tutorial pages, like codeproject ...

Member Avatar for fulyaoner
0
144
Member Avatar for srinath.sec

[quote=srinath.sec;350808]how to allocate memory for a two dimensional array dynamically please need code for that one[/quote] you need a pointer to pointer like [CODE]int **myArray;[/CODE] then, first allocate for the int ** like [CODE]myArray = (int**)malloc(sizeof(int*) * HOW_MANY);[/CODE] and then for the int * , for each row in the …

Member Avatar for John A
0
88
Member Avatar for faiz

[quote=faiz;347730]hi,i have to implement multiplication of two huge integers of 40 or more digits.i've made a function in a class for its implementation but its not working.plz help if u find any logical errors in it. [code]void HugeInteger::multiplyHugeIntegers(HugeInteger H1,HugeInteger H2) { int carry=0; int count=0; // introduced to place the …

Member Avatar for iamthwee
0
203
Member Avatar for Osama Mehtab

[quote=Osama Mehtab;347765]...][/quote] in the publication class, there is a line uses getline function in a wrong logic. [CODE]getline(cin,title,' '); [/CODE] HEre the input is taken till a space is seen, but we have to press enter to end the input. ex. if you type "mytitle " and press enter, it …

Member Avatar for fulyaoner
-1
125
Member Avatar for fulyaoner

Hi to all... In a MFC application, I need to change the background color of a drop down list - combo box control. IDC_MYCOMBO is the resource id and m_myCombo is the name of the control. I need to change the backcolor programmatically. Is there a way to achieve that? …

Member Avatar for fulyaoner
0
247
Member Avatar for sukhmani

[quote=sukhmani;346846]hello I'm making chess in c++. I have to submit a report and it should include system development life cycle and detailed design....if some one cud please help me out wid it.... plz mail me at sukhmani[/quote] Do you have any idea about level of difficulty? Will it be a …

Member Avatar for stymiee
0
93
Member Avatar for fulyaoner

Hi to everyone... I am told to code a Schelling's Segregation Model simulation in C++ . This is about agent simulation and let me explain shortly what it is wanted: * There is a place like the chessboard (8*8) * there are 2 kind of people , the X and …

Member Avatar for fulyaoner
0
485
Member Avatar for spankyg

[quote=spankyg;331204]I have arranged this code in many different ways. I can't seem to make it simply print the array. I have read alot about pointers and arrays, but the explanations are scetchy at best. What exactly are the rules for properly pointing to an array? #include <iostream> using namespace std; …

Member Avatar for John A
0
124
Member Avatar for kkx123

[quote=kkx123;328324]can anyone help me with this? i can get it to run but when i run it, the matrix doesnt execute correctly...i am writing it in "C"..this should be a 4x4 magic square...thanks~ [code=c] #include <stdio.h> #define R 4 #define C 4 void Same(int []); int main() { int array[R][C], …

Member Avatar for kkx123
-1
118
Member Avatar for fulyaoner

Hi to everyone... I am to write a code about finding the least coins number to make up an amount that is given by user. It is a trivial question for a programmer and I did code well. In Canada, there are 2 more currencies, Loonie = 1$ and Twonie …

Member Avatar for fulyaoner
0
407
Member Avatar for arrogant
Re: trie

[quote=arrogant]can u ppl help me in implementing trie........... i need complete data structure of trie...............and how to implement it????[/quote] Hi, I can help you if you want. I have implemented a trie in C++, look for details [U][COLOR=#0033cc][URL="http://www.fulyaoner.com/english/ozelkodlar.php"]http://www.fulyaoner.com/english/ozelkodlar.php[/URL][/COLOR][/U] or send mail to fulya at fulyaoner dot com

Member Avatar for iamthwee
0
265

The End.