Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+5
Strength to Decrease Rep
-1
21% Quality Score
Upvotes Received
6
Posts with Upvotes
5
Upvoting Members
5
Downvotes Received
30
Posts with Downvotes
15
Downvoting Members
18
4 Commented Posts
~19.4K People Reached
Interests
trips to different times
Favorite Tags
Member Avatar for CppBuilder2006

this program contains a template function that can calculate determinant of any n by n matrix using permutations. it can be run in Visual C++ 2010 Express.

Member Avatar for aruldave
2
438
Member Avatar for justice igwe

well am using the turbo c++ compiler , so you must convert it to cpp ( c++) before u can use it ok. here we go. steps: (1)press the windows shortcut key and hold R or go click on RUN (2) type in the following( C:/TC/BIN/TC.EXE) hit ENTER, wait for …

Member Avatar for justiceigwe
-3
343
Member Avatar for CppBuilder2006

Hi I'm a newbie in linux. I installed Kubuntu 10.10. then tried to install VirtualBox. an error message appeared: g++ is not installed. the OS cannot be connected to the internet. where can I find and download a self-contained package for g++ to be installed on Kubuntu 10.10?

Member Avatar for Moncky
0
155
Member Avatar for CppBuilder2006

hello I'm writing a program. this program needs to create a few files & use them. where should it create the fils? the program should not create the files in the same folder as itself. because it will be in C:\Program Files where Windows Seven won't allow to create files …

Member Avatar for jonsca
0
98
Member Avatar for CppBuilder2006

my app needs to be run as admin, but a link to my app is in startup. when Windows 7 starts my app doesn't work! what should I do?

Member Avatar for CppBuilder2006
0
121
Member Avatar for spacerat

The other code snipplets I found were either recursive or too complex. I therefore developed a simple, fast and yet non-recursive method; thats useful especially when working on the graphics card with CUDA as recursion is not possible there. (c) Sven Forstmann

Member Avatar for chtulu
1
623
Member Avatar for gufur

Hi! I just upgraded to win 7 64 bit. I have tryed it both on cygwin compiler and MinGW compiler (toolchain) Working on eclipse. My code works perfect in Linux/ubuntu environment but running in win 7 environment I have the following problem. My last cin does not work. The input …

Member Avatar for gufur
0
378
Member Avatar for CppBuilder2006

I have a problem with this Window Procedure. in new versions of Windows OS, when I run the program, at first everything is painted & then paintings disappear (until the window receives the next paint message) [CODE] long _stdcall WndProc ( HWND hwnd, unsigned msg, unsigned wParam, long lParam ) …

Member Avatar for CppBuilder2006
0
146
Member Avatar for chary8088

First , introduce myself 4 years of LINUX, C++ network program development experience, LINUX platform engaged in high-concurrent network procedures, mass data processing program; Familiar with modeling tools, process design, and detailed design; Familiar with C++ language, TCP / IP protocol, UDP protocol, ARP protocol and other network protocol development …

Member Avatar for CppBuilder2006
0
145
Member Avatar for pooja90 soni
Member Avatar for bandit711

Having problem set code up for five rows and 4 column. Any ideas have too do it the code, i am currently using: [CODE] cout << setfill(' ') <<setiosflags(ios::left) << setw(11) << "Student" << setw(10) << "Quiz1" << setw(8) << "Quiz2" << setw(8) << "Quiz3" << setw(8) << "Quiz4" << …

Member Avatar for bandit711
0
168
Member Avatar for nitgru1123

Hi buddy,, can u jst refer me some links or share sum of ur own experiences about creating a text editor.....dat wut exactly the text editor is all about. I dont bother bout the inferface of it......i jst need how the core looks like....i.e. data structure implementation and all that....hope …

Member Avatar for CppBuilder2006
-2
81
Member Avatar for thileep
Member Avatar for mrbright88

i need help starting this program..........Write a program that finds and outputs the minimum element in an array int A[10]

Member Avatar for CppBuilder2006
-2
81
Member Avatar for mrnobody

Hi, I'm doing a program to capture from USB camera. And to do the program, I need directshow which can be found in directX sdk. I read that the new versions of directx are not compatable with VC++ 6.0. Does anybody know where I can get an old version which …

Member Avatar for CppBuilder2006
0
601
Member Avatar for andrew80

Hi to all, THis is my first post here. I have a project to create a scientific calculator. i wrote a code and i need some help on how to proceed. The code i wrote is for +, - , * , / now i want to continue with x^y, …

Member Avatar for CppBuilder2006
0
874
Member Avatar for William Hemsworth
Member Avatar for William Hemsworth
1
2K
Member Avatar for CppBuilder2006

This is the project of my program: [url]http://www.4shared.com/file/259396798/53d2a9dc/MRKtack.html[/url] it works in Visual C++ 2008 Express! please download & test it on your compiler. it is an API graphical program. It works in my Windows XP properly! but when I install it on Windows Seven/Vista there is a problem with painting! …

0
77
Member Avatar for CppBuilder2006

how can I complete/run the example on this page: [url]http://msdn.microsoft.com/en-us/library/ms644960(VS.85).aspx[/url] :icon_idea:

0
64
Member Avatar for CppBuilder2006

why does this program have an exception in VC++ 2008 Express? [CODE] #include <conio.h> //#include <C:\WString(v2.00).h> #include <iostream> #include <string> using namespace std; class WCS { public: wchar_t* string; WCS(const wstring& wstr) { wchar_t* c = new wchar_t [wstr.size() + 1]; wcscpy(c,wstr.c_str()); string = c; } ~WCS() { delete [] …

Member Avatar for CppBuilder2006
0
204
Member Avatar for CppBuilder2006

temporaries: Definition: a temporary is a C++ object which is niether a constant nor a variable, but is has type. example1: [CODE]TYPE f(int a) {...}[/CODE] f(2) is a temporary. it is niether a constant nor a variable but it has a type. example2: [CODE] class A { public: A(char ch) …

Member Avatar for CppBuilder2006
0
272
Member Avatar for CppBuilder2006

the process Foo is running. Foo calls a lot of functions (loaded somewhere in RAM). how can a programmer get the names & prototypes of all functions called (or loaded) by Foo? now suppose the programmer suceeded to identify the function Hitler(int,int) called by Foo. how can the programmer redirect …

Member Avatar for WaltP
-4
146
Member Avatar for CppBuilder2006

I am writing a Windows API program. I noticed that WM_KEYDOWN message is not sent to the window procedure when I press Alt + Backspace. what message is sent when I press Alt + Backspace?

Member Avatar for mitrmkar
0
78
Member Avatar for n.utiu

Hi! I am quite an active programmer. I work allot for school so i need a good IDE. I a[COLOR="red"][/COLOR]m currently working on Windows with Dev C++. Dev is quite a good compiler and editor but IMO the debugger...sucks. So I would like to know your opinion on Dev, and …

Member Avatar for abdelhakeem
0
86
Member Avatar for King Dede
Member Avatar for Stefano Mtangoo
0
298
Member Avatar for wheelie

With regard to the following code. I have only included Memory.h in ClassA.cpp, but ClassB.cpp still seems to be able to see it. How do i make it so that ClassB does not use the operator new in Memory.h, but the usual one? Am am I right in thinking it …

Member Avatar for CppBuilder2006
0
114
Member Avatar for CppBuilder2006

when a window is not active (eg it is minimized, hidden, or under other windows) it does not receive mouse click messages. I am going to write a program that produces a few circular waves around mouse pointer whenever the user clicks. my program is always hidden & so it …

Member Avatar for CppBuilder2006
0
247
Member Avatar for mrnutty

Some background. We all used the string class, but some of you might not know that string is just a typedef of basic_string. In fact here is the typedef you might find when looking in the XString library. [code] typedef basic_string<char, char_traits<char>, allocator<char> > string; [/code] This code snippet shows …

Member Avatar for Dave Sinkula
2
3K
Member Avatar for ball3r

Hi guys, Firstly, a quick thank you to whoever put this site up, wealth of advice and everyone here sounds helpful. I'm quite new to C++ and programming in general so go easy on me. I'm trying to find a way through a maze from a given start point through …

Member Avatar for WaltP
0
5K
Member Avatar for Shillz

can anyone guide me how to run a c++ program inclusive of graphics through notepad++ by using borland compiler OR plz guide me hw to compile n run a c++ graphics prog in vista..as it's not possible by normal tcpp

Member Avatar for CppBuilder2006
0
940