forums

Copy the link of the video page and paste it here:

Example: http://www.youtube.com/watch?v=a7FQPMiph9M

HD Music The Video best dance film funny guitar hop hot live love movie music musica new rap rock sexy song songs trailer tutorial tv video world 2009 2010 2011

NEW!. You can download videos from Vimeo!. :-)

Utils:

[View | Download]

How to make a pie chart in Visual Basic 2008

Visual Basic 2008 - Pie Chart! Just a simple tutorial on how to draw a pie chart using graphics :) codes: Public Sub DrawPieChart(ByVal percents() As Integer, ByVal colors() As Color, _ ByVal surface As Graphics, ByVal location As Point, ByVal pieSize As Size) Dim sum As Integer = 0 For Each percent As Integer In percents sum += percent Next Dim percentTotal As Integer = 0 For percent As Integer = 0 To percents.Length() - 1 surface.FillPie( _ New SolidBrush(colors(percent)), _ New Rectangle(location, pieSize), CType(percentTotal * 360 / 100, Single), _ CType(percents(percent) * 360 / 100, Single)) percentTotal += percents(percent) Next Return End Sub Button1_Click: Dim percents() As Integer = {TextBox1.Text, TextBox2.Text, TextBox3.Text} Dim colors() As Color = {Color.Blue, Color.Green, Color.Red} Dim graphics As Graphics = Me.CreateGraphics Dim location As Point = New Point(0, 0) Dim size As Size = New Size(200, 200) DrawPieChart(percents, colors, graphics, location, size)


Tags: 2003, 2005, 2008, 2010, C#, C++, Chart, Diagram, Drawing, Edition, Express, Graph, Help, In, Microsoft, Pie, Studio, VB, Visual, Windows, coding, programming
1 Downloads - Last from: (Your Blog here!)

[View | Download]

Actionscript 3.0 Tutorial PHP MySQL Bar Graph Dynamic Basics in Flash CS3 CS4 CS5

Download Lesson Source: http://www.developphp.com/Flash_tutorials/show_tutorial.php?tid=769 Learn the very basics of creating dynamic bar graphs using Flash Actionscript 3.0 for CS3 CS4 and CS5. We use PHP and MySQL for dynamics.


Tags: 3.0, AS3, Actionscript, Adobe, Bar, Basics, Build, CS3, CS4, CS5, Create, Dynamic, Flash, Graph, How, Learn, Make, MySQL, PHP, Tutorial, in
1 Downloads - Last from: http://downthisvideo.com/ (Your Blog here!)
Problems, comments, suggestions?. Contact us |