- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 6
- Posts with Downvotes
- 4
- Downvoting Members
- 3
15 Posted Topics
Re: 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. | |
Re: [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 … | |
Re: 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 … | |
Re: Take a look to Freedom Engine, a cloud coding solution: http://www.freedom-engine.com/ | |
Re: Try DarkGDK: http://www.thegamecreators.com/ | |
Re: private: System::Void button2_Click(System::Object^ sender, System::EventArgs^ e) { Application::Exit(); } | |
Re: Try Visual C++. Download free express edition from: [url]http://www.microsoft.com/express/Downloads/#2010-Visual-CPP[/url] | |
Re: //no blank is allowed in variable name char totalamount = ' '; | |
Re: 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. | |
Re: [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; } … | |
Re: 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... … | |
Re: [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; … | |
[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); … | |
Re: In the property window of web browser set URL to [url]http://www.google.com[/url] | |
Re: 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; } |
The End.