[C#] xConverter v0.2 - Convert X to X + Source!

Status
Not open for further replies.

l0calh0st

Active Member
4,052
2010
713
0
OK guys, Hyperz inspired me to start learning C#, this is my first step into C# so be nice :P

This tool uses ImageMagick to convert most common used images, even documents.

0.20145268105106.png


Supported Conversions:
- X to PNG
- X to JPG
- X to GIF
- X to BMP
- X to TIFF
- X to TGA
- X to DIB
- X to X
( This tool supports unkown files. Try to find them ;) )

Unique Conversions Found:
- AVI to GIF
- TXT to GIF

Note: If you find new conversions please reply below, I will keep the thread updated.


Download (Source included): http://downloads.xcoderz.net/xconverter_v02.zip
 
8 comments
Good start. One thing you should make a habit in C# is properly naming controls. TextBox1, TexBox2, Button1, etc gets confusing real quick for bigger apps or other people who view your source.

The way controls are usually named in C# is like this;
Texboxes:
- txtSource
- txtTarget

Buttons:
- btnOpen
- btnConvert

Listboxes etc:
- lstWhatever

Naming controls like this makes it instantly obvious what type of control it is and what its purpose is. And it causes the VS IntelliSense to group them nicely together by type.
 
Good start. One thing you should make a habit in C# is properly naming controls. TextBox1, TexBox2, Button1, etc gets confusing real quick for bigger apps or other people who view your source.

The way controls are usually named in C# is like this;
Texboxes:
- txtSource
- txtTarget

Buttons:
- btnOpen
- btnConvert

Listboxes etc:
- lstWhatever

Naming controls like this makes it instantly obvious what type of control it is and what its purpose is. And it causes the VS IntelliSense to group them nicely together by type.

Wise words, i fall on the lazy error of not name anything, but doing it like Hyperz says save you a lot of time. :)
 
Status
Not open for further replies.
Back
Top