Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
33% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
6
Posts with Downvotes
4
Downvoting Members
3
2 Commented Posts
0 Endorsements

15 Posted Topics

Member Avatar for Romon

Follow the W3C Web standard model http://www.w3.org/wiki/The_web_standards_model_-_HTML_CSS_and_JavaScript Separate semantic (HTML) from style (CSS) and execution (JavaScript). HTML pages must be simple and readable, with external link to CSS and JavaScript.

Member Avatar for monica_14
0
603
Member Avatar for stefy14

[CODE]int _tmain(int argc, _TCHAR* argv[]) { int i = 0; int number; int resto[10]; int sum = 0; cout << "input number\n"; cin >> number; while (number > 0) { resto[i] = number%10; sum = sum + resto[i]; number = number/10; i++; } for (i = i-1; i >= 0 …

Member Avatar for amisha_1
0
58K
Member Avatar for harinath_2007

Create a Windows Form application (CLR - Windows Form Application). Right click on Tools box to add a new COM component. Select Windows Media Player, check it and push OK. It will be added to Toolbox. Draw a Media Player control on the form. In the Property Box set the …

Member Avatar for 良红
0
9K
Member Avatar for dualresh

Take a look to Freedom Engine, a cloud coding solution: http://www.freedom-engine.com/

Member Avatar for Simon180
0
350
Member Avatar for MasterHacker110
Member Avatar for Nandomo

private: System::Void button2_Click(System::Object^ sender, System::EventArgs^ e) { Application::Exit(); }

Member Avatar for anuj.juthani
0
3K
Member Avatar for akshayinbox

Try Visual C++. Download free express edition from: [url]http://www.microsoft.com/express/Downloads/#2010-Visual-CPP[/url]

Member Avatar for John A
0
232
Member Avatar for shortie05
Member Avatar for Fernidad13

See this link: [url]http://www.gamasutra.com/view/feature/3197/mathematics_in_videogames.php[/url] Download DarkGDK SDK from [url]http://gdk.thegamecreators.com/[/url] and see examples with trigonometric functions and matrixes.

Member Avatar for digital29
0
583
Member Avatar for prodstar

[CODE] #include "stdafx.h" #include <fstream> #include <iostream> using namespace std; int _tmain(int argc, _TCHAR* argv[]) { char continue = 'N'; fstream fileExcel; fileExcel.open("myfile.xls", ios::in); do{ char strLine[100]; fileExcel.getline(strLine,99); cout << strLine; cout <<"\nType N if you want to stop\n"; cin >> continue; }while (continue != 'N'); system("PAUSE"); return 0; } …

Member Avatar for gabryprof
0
184
Member Avatar for manish.ranjan

You have to use Application Program Interfaces to access Oracle db and perform SQL query. See this link: [url]http://www.poitschke.de/libsqlora8/doc/sqlora_8h.html[/url] [QUOTE=manish.ranjan;1210351]How to connect c++ and oracle ? i am working on a project Multiplex management system using c++.... but it really tedious task to store and handle all data in file... …

Member Avatar for manish.ranjan
0
84
Member Avatar for kashimushi

[CODE] #include <iostream> using namespace std; int _tmain(int argc, _TCHAR* argv[]) { int number[10]; int times[10]={1,1,1,1,1,1,1,1,1,1}; int i,j; bool bRep = 0; for (i=0; i<10; i++) { cout << "\ninput number "; cin >> number[i]; } for (i=0; i<10; i++) { if (times[i] == 1) { for (j =i+1; j<10; …

Member Avatar for needhelp//
-2
2K
Member Avatar for gabryprof

[B]Moderator note:[/B] Originally posted in [url]http://www.daniweb.com/forums/thread269720.html[/url] How can I retrieve the handle of a Windows Form texBox? The property textBox->Handle is not the same thing. [QUOTE=strmstn;1167223]Winapi, if there is a window (hwnd) that has a child Edit control with ID 1: [CODE]HWND hwnd_edit = GetDlgItem(hwnd, 1); size_t len = GetWindowTextLength(hwnd_edit); …

0
62
Member Avatar for restrictment

In the property window of web browser set URL to [url]http://www.google.com[/url]

Member Avatar for jonsca
0
213
Member Avatar for juuuh333

All you need is a system string, not a string. This procedure copies text from textBox to string and viceversa. private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) { String ^ strTextBoxContent; strTextBoxContent = textBox1->Text; textBox2->Text=strTextBoxContent; }

Member Avatar for juuuh333
0
610

The End.