Saturday, January 30, 2010

Google Services

Google's service is what we see come together...



Services and investments belonging to google
Orkut http://www.orkut.com/
Picasa http://picasa.google.com/
SketchUp http://www.sketchup.com/
Writely http://www.writely.com/
Google AdWords https://adwords.google.com/select/
Google AdSense https://www.google.com/adsense/
Google Analytics http://google.com/analytics/
Google Answers http://answers.google.com/
Google Base http://base.google.com/
Google Blog Search http://blogsearch.google.com/
Google Bookmarks http://www.google.com/bookmarks/
Google Books Search http://books.google.com/
Google Calendar http://google.com/calendar/
Google Catalogs http://catalogs.google.com/
Google Code http://code.google.com/
Google Deskbar http://deskbar.google.com/
Google Desktop http://desktop.google.com/
Google Directory http://www.google.com/dirhp
Google Earth http://earth.google.com/
Google Finance http://finance.google.com/
Google Groups http://groups.google.com/
Google Images http://images.google.com/
Google Labs http://labs.google.com/
Google Local http://local.google.com/
Google Maps http://maps.google.com/
Google Mars http://www.google.com/mars/
Google Mobile http://mobile.google.com/
Google Moon http://moon.google.com/
Google Movies http://www.google.com/movies
Google Music http://www.google.com/musicsearch
Google News http://news.google.com/
Google Pack http://pack.google.com/
Google Page Creator http://pages.google.com/
Google Personalized Home http://www.google.com/ig
Google Personalized Search http://labs.google.com/personalized
Google Reader http://www.google.com/reader
Google Scholar http://scholar.google.com/
Google Search History http://www.google.com/searchhistory
Google SMS http://www.google.com/sms/
Google Suggest http://www.google.com/webhp?complete=1
Google Talk http://talk.google.com/
Google Toolbar http://toolbar.google.com/
Google Transit Trip Planner http://www.google.com/transit
Google Translate http://www.google.com/translate_t
Google Video http://video.google.com/
Google Web Accelerator http://webaccelerator.google.com/
Google Web API http://www.google.com/apis/
Google Web Search http://www.google.com/

Fun google services
Pigeon Rank http://www.google.com/technology/pigeonrank.html
Mentalplex http://www.google.com/mentalplex/
Moonbase Google http://www.google.com/jobs/lunar_job.html
Google Gulp http://www.google.com/googlegulp/
Google Romance http://www.google.com/romance/

Other
Google Sitemaps https://www.google.com/webmasters/sitemaps/
Google Holiday Logos http://www.google.com/intl/en/holidaylogos.html
Google Zeitgeist http://www.google.com/press/intl-zeitgeist.html
Google Jobs http://www.google.com/intl/en/jobs/
Google University http://www.google.com/options/universities.html

Blog for services
Google Code http://code.google.com/
Official Google Blog http://googleblog.blogspot.com/
Adwords API http://adwordsapi.blogspot.com/
Blogger Buzz http://buzz.blogger.com/
Google Base http://googlebase.blogspot.com/
Google Enterprise http://googleenterprise.blogspot.com/
Google Maps API http://googlemapsapi.blogspot.com/
Google Reader http://googlereader.blogspot.com/
Google Research http://googleresearch.blogspot.com/
Google Talk http://googletalk.blogspot.com/
Google Video http://googlevideo.blogspot.com/
Inside AdSense http://adsense.blogspot.com/
Inside AdWords http://adwords.blogspot.com/
Inside Desktop http://googledesktop.blogspot.com/
Inside Sitemap http://sitemaps.blogspot.com/
(Thai)

Measurement in software engineering.

Software Engineering Master's is related to how the implementation of the engineering applications software development from project management ,planning software, the estimated manpower and costs ,Set of software requirements ,will John and the beard design, development, testing and maintenance software.
code1234
Measurement is critical to all stages of software development as it can help developers know that software development is in accordance with the goals and requirements set or not. Metrics help in measuring cost estimates manpower and time costs of software development.
Measure not only limited to software measurement and metrics, but the software development process, measurement project and resource use. Therefore, to conclude that the measurement software is designed to understand software ,monitor the status of the software , control software and software updates.
Reference: Software Metrics, a teaching document 2110720.
(Thai Version)

Sunday, January 3, 2010

Coding C / C + + in Visual Studio 2008 code is written grammar Why Error?


(Thai Version)
Students who are studying science in programming languages C / C + + may have a problem writing the code in Visual Studio 2008 and error and the code has been written grammar.
We see from the examples.



Edit and add the following code.


Run the test will not detect the problem.



Thank you,
Worawut  Bunwang

Friday, January 1, 2010

Sample code written using the ProgressBar in Visual C + +


(Thai Version)
Sample code written using the ProgressBar in Visual C + +
1. The object to such a place.
 

 
2. Write code to command button "Process" below.
private: System::Void btnProcess_Click(System::Object^ sender, System::EventArgs^ e) {

int i;
progressBar1->Minimum=1;
progressBar1->Maximum=1000;
progressBar1->Visible=true;
for(i=1;i<=1000;i++)
{
    progressBar1->Value=i;
    progressBar1->Refresh();
}
progressBar1->Visible=false;
}

3. Running test results by clicking on the button "Process" is a result.




Thank you,
Worawut  Bunwang