HoTemplate.Com free wordpress template,seo tools,tutorials and more

Archive for November, 2008

Download Adobe Flash CS4 v10.0 Professional

11.28.2008 · Posted in Uncategorized

Adobe® Flash® CS4 Professional software is the industry-leading authoring environment for creating engaging interactive experiences. Deliver to audiences across platforms and devices.| Size| 888 Mb|price| $699Features…:Animating in Flash just got easier:Quickly create animations, easily modify motion paths, and enjoy complete control over individual animation attributes with object-based ...

C# Textbox Auto Scroll To End ScrollToCaret Scrolling Textbox

11.28.2008 · Posted in Uncategorized

Many of my sample C# codes,I use textbox to write the results.When textbox is multiline property set to true, and when I insert text into it,I want it to auto scroll to the last line.Here is a simple way to auto scrolling textbox. textbox1.SelectionStart = textbox1.Text.Length; textbox1.ScrollToCaret(); textbox1.Refresh(); Textbox SelectionStart will force the textbox control ...

C# The process cannot access the file because it is being used by another process

11.28.2008 · Posted in Uncategorized

The process cannot access the file because it is being used by another process.This error message is mostly comes up,when you try to access a file which is opened by another process.You may open an image file in one of your form in a picturebox with using ImageFromFile or something.I mostly use memorystream to open ...

C# Convert Hexadecimal to Binary String Conversion

11.27.2008 · Posted in Uncategorized

There is no need to code tons of codes, loops, to convert hex to binary string. Convert.ToInt32 function is very useful for this purpose.Let's convert the "A" character to binary format. private string hex2binary(string hexvalue){ string binaryval = ""; binaryval = Convert.ToString(Convert.ToInt32(hexvalue, 16), 2); return binaryval;} When we call hex2binary("A"); it will return "1010" similar ...