Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
67% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
2 Commented Posts
~6K People Reached
Favorite Forums

15 Posted Topics

Member Avatar for kerek2

The codeproject link he provided is a very good example, just look at the StreamWriter class, and you should catch on pretty quick. It is very easy to implement.

Member Avatar for Tayyab Nawaz
0
500
Member Avatar for mypicturefaded

I haven't really used Lists very much in the past so I wanted to mess around with them today and see if I could do anything that was neat. In this snippet I create a list from a text file. In my case I used names of people I know. …

0
181
Member Avatar for mypicturefaded

I wanted to make something for beginners, to show and easy way of creating and using a class and it's methods. So here is a customer class, and a Console application that takes advantage of the class. It is mainly set, and get methods, with one or two extra methods …

Member Avatar for ddanbe
1
145
Member Avatar for spoinkgeek

Hey, I might be able to help you out! I sent you a private message, so check it and get back to me!

Member Avatar for mypicturefaded
0
381
Member Avatar for fafi_ali

[url]http://www.codeproject.com/KB/miscctrl/Pagable_DatagridView.aspx[/url] Would that work for you?

Member Avatar for fafi_ali
0
73
Member Avatar for arunaalapati

This is how you run a vbs FROM a c# program... [CODE] Process scriptProc = new Process(); scriptProc.StartInfo.FileName = @"C:\text.vbs"; scriptProc.Start(); scriptProc.WaitForExit(); scriptProc.Close(); [/CODE] You must use: using System.Diagnostics;

Member Avatar for arunaalapati
0
1K
Member Avatar for mypicturefaded

I have a project that I made with VS 2008, and I need it to use the 2.0 Framework and not the 3.5 Framework because they company hasn't moved to a newer Framework yet. I already have a setup project with it, I just need to know how to roll …

Member Avatar for mypicturefaded
0
315
Member Avatar for yash777

[url]http://support.microsoft.com/default.aspx?scid=kb;en-us;Q302901[/url] There, it tells you exactly how it needs to be done. I have used it myself before. Maybe next time you shouldn't wait around to get something done though!

Member Avatar for mypicturefaded
0
152
Member Avatar for serkan sendur

If you click on the liste view, in the properties menu, you can set "Allow Column Reorder" to true. Thats a good place to start.

Member Avatar for serkan sendur
0
746
Member Avatar for serkan sendur
Member Avatar for mypicturefaded

Right now I am using the 3.5 Framework to get the users first and last name, and email address. [CODE] username = System.DirectoryServices.AccountManagement.UserPrincipal.Current.GivenName + " " + System.DirectoryServices.AccountManagement.UserPrincipal.Current.Surname; [/CODE] I had to dumb the project down so it just uses the 2.0 Framework, and AccountManagement is not included. Is there …

Member Avatar for mypicturefaded
0
370
Member Avatar for mypicturefaded

I swear this code worked a few minutea ago...but now it is coming up with the Parameter is not valid error. What am I missing here? sigpic is a public local variable. [CODE] private void SaveFile(string fileName, byte[] bytes) { //MessageBox.Show("Saving file '" + fileName + "' of length " …

Member Avatar for mypicturefaded
0
384
Member Avatar for mypicturefaded

I need to pull out the information in the Document\Property(label = Individual Information)\value. The code I am using does not work, or I am not using it correctly. What would be the correct syntax? [ICODE] <?xml version="1.0"?> <fnApiResponse status="ok" xml:space="preserve"> <document idmId="12214" name="214214" label="me" class="Signature" version="1" mime="image/x-win-metafile" library="mylib" user="me" group="blah" …

Member Avatar for mypicturefaded
0
122
Member Avatar for mypicturefaded

Maybe deleting the add-in instance isn't really the way to go. So if anyone knows how you can just kill the c# code, let me know. Link to previous post for new members. [url]http://www.daniweb.com/forums/thread199975.html[/url]

Member Avatar for mypicturefaded
0
274
Member Avatar for mypicturefaded

I have an add-in program that has several forms. When the program is done with one form, it automatically goes to the next method it needs. (Word add-in). My problem is this...When I hit cancel, I want it to stop all actions with-in my add-in. Right now, if I hit …

Member Avatar for mypicturefaded
0
1K

The End.