Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+5
Strength to Decrease Rep
-1
100% Quality Score
Upvotes Received
5
Posts with Upvotes
5
Upvoting Members
5
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
~25.8K People Reached
Favorite Forums
Favorite Tags
Member Avatar for papuccino1

A THOUSAND apologies if this question has been asked time and time again. Google gave no results and Jeeves is retired so I come looking for help in the best programming forum around. [code=csharp]private void button1_Click(object sender, EventArgs e) { pictureBox1.ImageLocation=??????????? }[/code] My question is fairly simple, what do I …

Member Avatar for NetJunkie
0
2K
Member Avatar for vckicks

The .Net Framework uses by default radians in its trigonometry calculations. Find out how to convert degrees to radians to use with C#

Member Avatar for ddanbe
1
703
Member Avatar for vckicks

Use regular expressions, regex, to create an efficient textbox that only takes in digits as input.

Member Avatar for Chatthanz
1
821
Member Avatar for perryleros

Hello everyone, Im developing an application in C# for a school project that encrypts data in text form using a password and vice versa, and i' d need some help with something. The program encrypts fine taking as input 1)the data (reading it from textbox) and 2)the password, and stores …

Member Avatar for overcanyon
0
4K
Member Avatar for Egypt Pharaoh

I want to know how to make a program to convert from binary to decimal and from decimal to binary

Member Avatar for megabuild7
0
240
Member Avatar for dev.cplusplus

I'm writing an C# application, where the user can select an entire folder and click on a button to upload the folder he choose. It is possible to upload an entire Folder to a Server(with all its files and sub folders) ? I found in the web examples, to how …

Member Avatar for iciku
0
100
Member Avatar for noktasizvirgul

Today I found 2 distinct program which can takes .exe's and gives sorce code exactly, same method names, same class names, same variables also. I am trying to find a solution which can stop this decompilers. I found solutions but they just make the decompiling job harder. I need to …

Member Avatar for ghimangi
0
134
Member Avatar for rosebabu

Can anybody say, how to minimize the window form on close button is clicked in C#? thanks in advance.

Member Avatar for Geekitygeek
0
2K
Member Avatar for gp04lch

hey guys, recently i came across a code to parse the name of an enum and was wondering if there's anything similar to doing it for a textbox: the coding looks something like this: [CODE]int result = (int)Enum.Parse(typeof(Cars.Engines), inputfixed, true);[/CODE] i would actually like to use the above code structure …

Member Avatar for pokopolo
0
85
Member Avatar for vckicks

A simple way to check if the current C# program is the only instance of itself running.

Member Avatar for ashishkumar008
1
252
Member Avatar for vckicks

The xor operator allows you to switch the values of two integer variables without the need for a third, temporary variable.

Member Avatar for maryann2076
0
153
Member Avatar for vckicks

A slightly modified version of Bucket Sort that uses LinkedLists and initializes buckets only when required. Results in massive speed improvements.

0
260
Member Avatar for vckicks
Member Avatar for subtercosm
0
2K
Member Avatar for vckicks

Bucket sort is a very simple, fast sorting algorithm specialized in integers.

Member Avatar for MosaicFuneral
0
2K
Member Avatar for vckicks
Member Avatar for vckicks
0
309
Member Avatar for vckicks

Draw animated GIFs in C# in a frame-by-frame basis. Gives you a finer level of control.

0
232
Member Avatar for anupam_smart

HI, i'm working on c#.net 2008 edition and i want if we can control the opacity of a picture box on the form differently from the form itself i.e. if we can make the form transparent while still be able to see the picture box on it fully visible. i …

Member Avatar for Diamonddrake
0
191
Member Avatar for C#Newbie

Hi. I am working on my Final for my Intro to C# class so yes I am new and my code is pretty unprofessional probably. We are required to use a array or a class to read addresses from a text file and display them in the GUI. We should …

Member Avatar for C#Newbie
0
497
Member Avatar for BobLewiston

I tried to compile a Windows Forms Application in Visual C# 2008 Express with this source code from the CSharpSchool tutorial at Programmer's Heaven:[code]using System; using System.Windows.Forms; using System.Drawing; namespace CSharpSchool { class HelloWinForm { static void Main () { Application.Run (new MyWindow ()); } } class MyWindow : Form …

Member Avatar for JerryShaw
0
149
Member Avatar for danielc

Hi, I tried to use the following code to prevent duplicate execute of my program, i pub this in the form_load event procedure: Process[] processes = Process.GetProcessesByName("C"); foreach (Process p in processes) { MessageBox.Show("Can't duplicate run this program,it is already running in the background.", "can't run again", MessageBoxButtons.OK, MessageBoxIcon.Error); this.Close(); …

Member Avatar for hassan-golab
0
3K
Member Avatar for vckicks

Hello, I'm having some very confusing problems with the StringFormat class. I'm hoping someone will know what's going on. I want to draw text right-to-left. It's multiple lines so I figured using the StringFormat class was an easy way to handle that, I declare it as: [CODE]StringFormat f = new …

Member Avatar for vckicks
0
193
Member Avatar for karthi_selva

hi, i am doing a project in C#, i have not much knowledge in c#. the task is display the icon inside the form. i searched in google. still i am not getting information. if anybody know please send ur details. Thanks & Regards, Karthikeyan S

Member Avatar for karthi_selva
0
168
Member Avatar for Arctic Giraffe

Are there any methods in C# to adjust the hue, lightness and saturation of textures? I have a Texture2D object in which I want to gradually change the hue of every pixel in the texture by the same amount over time. Just as if I was in Paint.NET and manually …

Member Avatar for gbertoli3
0
171
Member Avatar for sivak

when we go for webservices in .net webapplications? example plz? 2.what is mean by delegate and asynchronous delegate in .net 3.static method with example?plz

Member Avatar for Jugortha
0
118
Member Avatar for papuccino1

How would I go about making a testris game in c#? This is NOT for a homework assignment, this is just me practicing. I don't have any code of my own because I don't know how to approach the problem. Any help, please?

Member Avatar for vckicks
0
207
Member Avatar for serkan sendur

i wondered if this is possible : you will create a windows service application and it will collect information from a certain type of application. let's say if the user is using ms word, i want to keep trace of the user on that like the typed words, clicked buttons …

Member Avatar for Jugortha
0
152
Member Avatar for Chris11246

Im new to C# and im trying to create a simple RPG game. Im trying to show stats like health and exp but I dont know how to draw a line to show them.

Member Avatar for toraj58
0
328
Member Avatar for rapture

Hello. I'm charged with taking a site I helped create in VB.Net 1.1 to C#.Net 2.0 - I'm just starting to research this and wondered if anyone has done it and if you can direct me to some good material . . . I need to add a new module …

Member Avatar for rapture
0
250
Member Avatar for legend_018

ok, Not sure if this is a silly question or not. I'm trying to relate it to technical support. I have been in the technical support field for many years and with thousands of technical articles written for problems we find - it's impossible to memorize all the technical articles. …

Member Avatar for jireh
0
391