Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Forums
Favorite Tags
Member Avatar for PsychoCoder

This is a snippet demonstrating how to create a new local Windows account, and have it show up in the Users section of the Control Panel. You will need to reference the System.DirectoryServices.AccountManagement Namespace

Member Avatar for nelsonddon
3
1K
Member Avatar for MaiHunDown
Re: C#

Hi I have done C# but that is not enough Please tell me what should I do for more.... Thanks

Member Avatar for euroazn
0
82
Member Avatar for euroazn

I have a datagridview in my windows application. The user can click to sort columns and can move them around. How do I obtain a datable (or similar container) with data in the same order? Thanks.

0
44
Member Avatar for euroazn

-Can someone help me create a setup project for an Excel add-in- I created the add-in via VS 2010 (Visual C# -> Office -> 2010 -> Excel 2010 Add-In) and now need to create a set-up file such that when the user installs it, the add-in is automatically loaded into …

0
47
Member Avatar for euroazn

I have a .NET project (written in C#) that is a plug-in for Outlook. For this to work, I need VSTO installed on the machine. This is why I would like VSTO to be a prerequisite to my Setup, but it's not listed. Help, anyone? Thanks in advance.

Member Avatar for nssltd
0
59
Member Avatar for euroazn
Member Avatar for euroazn

Suppose I open up Outlook 2007. On the bottom left, there are four folder buttons: Mail, Calendar, Contacts, and Tasks. I will have a C# plug-in running and wondering if there is anyway to detect when the "Tasks" button is clicked. Thank you very much in advance!

0
111
Member Avatar for euroazn

Alright. In Outlook, if I want to arrange my tasks by categories, I can go View->Arrange By->Categories. My question is, is there anyway to do this programatically? Thanks a bundle :D

Member Avatar for euroazn
0
127
Member Avatar for euroazn

Suppose I have an Outlook account that is logged in at the computer. How can I send an email from this account to a given contact (if this can be a group, that would be really nice) via a C# program? Thank you very much!

Member Avatar for euroazn
0
180
Member Avatar for mahmud2008

[code] using System; using System.Collections.Generic; using System.Text; namespace Factorial { class Program { static void Main(string[] args) { int i, n, fac = 1; string s; Console.Write("Please enter any number to find it's factorial(0 to 19):\n"); s = Console.ReadLine(); n = Int32.Parse(s); for (i = 1; i <= n; i++) …

Member Avatar for ddanbe
0
219