- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
15 Posted Topics
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.
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. …
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 …
Hey, I might be able to help you out! I sent you a private message, so check it and get back to me!
[url]http://www.codeproject.com/KB/miscctrl/Pagable_DatagridView.aspx[/url] Would that work for you?
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;
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 …
[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!
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.
Does textbox1.Focus(); not work in the form_load method?
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 …
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 " …
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" …
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]
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 …
The End.
mypicturefaded