| Thread | Last Post | Replies |
|
| Translation of 1 line of code into C# : Alpha Byte | 22 Nov 2006 10:14 GMT | 3 |
I am trying to convert in C# a VB.NET routine (which probably came from C# ! ) I need to translate using pointers (this should get the Alpha byte in a 32bppPArgb bitmap):
|
| Test for decimal length/size | 22 Nov 2006 10:04 GMT | 3 |
Does anyone know of a way to test a decimal for the number of places it has before and after the decimal? I need to do something like this. decimal value1 = 172.45;
|
| Deep copy ArrayList problem. | 22 Nov 2006 09:29 GMT | 22 |
I need to perform a Deep Copy on an ArrayList. I wrote a small sample app to prove this could be done: ArrayList a = new ArrayList(); ArrayList b = new ArrayList();
|
| listview can't work in console mode | 22 Nov 2006 09:20 GMT | 2 |
Hi, I am writing the unit test for our application. It use "listview component" in some functions. The following code work fine and get c = 1 in Windows Application mode, but fail in unit test which get c = 0 : listView2.Items.Add("xxx");
|
| Need help desperately on MDI WinForms for VS2005 | 22 Nov 2006 09:00 GMT | 9 |
I am new to this arena of development although I am hoping that some or most of my C# web development might carry through here as well. I have started to create a MDI application. I have the MDIParent form and a test Childform as well.
|
| design question | 22 Nov 2006 07:51 GMT | 1 |
What is the recommended way to solve design when creating system today. Assume you use windows forms. You can use thin client PC(terminal server) which is a special kind of PC where you put all the execution on the server and only show the presentation
|
| GUI Buttons like VISTA | 22 Nov 2006 06:01 GMT | 2 |
i´am searching a good tutorial "how to create buttons" (the images/Icons) like the look and feel from vista. I want to polish up a C# dialog application. How do you make the icons ?
|
| A question about visual studio team suite | 22 Nov 2006 05:18 GMT | 3 |
Sorry about asking this question here, but I cannot fins the right newsgroup for visual studio team suite related questions. I have a performance test result with all perf. Counter values and graphs. Is there any way that I extract a detail report in excels and work based on
|
| Implementing near string matches | 22 Nov 2006 03:07 GMT | 3 |
This is for an educational program in which the user is asked to type things and have the answer validated. I can manage alternative spellings, but if the user types "ikipedia" when the answer is "Wikipedia", I'd like to do something special. I tried to search for
|
| (FileUpload)FormView1.FindControl(FileUpload1).FileName | 22 Nov 2006 02:01 GMT | 4 |
If you had a FileUpload control inside of a FormView...how would you use FindControl to access the FileUpload properties? Let me just say that (FileUpload)FormView1.FindControl(FileUpload1).FileName doesn't work.
|
| Prep | 22 Nov 2006 01:08 GMT | 2 |
|
| Terminating of Process which was started mit cmd /c | 21 Nov 2006 23:11 GMT | 2 |
Hi. how can I terminate process which was started with cmd /c ? The Kill() method terminates only that CMD.exe string cdHome = @"C:\Temp\"; string localhost = "chsaXY";
|
| Display 2 lines in ListView column | 21 Nov 2006 21:04 GMT | 3 |
I want to display 2 lines in a column of a listview. eg. in the second column to display John Mary
|
| How to hide ASP:Panel | 21 Nov 2006 20:29 GMT | 1 |
I have: Default.aspx and Default.aspx.cs
|
| How to make a c# regex match only the *last* occurrence of a pattern? | 21 Nov 2006 20:08 GMT | 8 |
I've been searching as best I can for this - coming up with little. I have a file that is full of lines fitting this pattern: (?<year>\d{4}),(?<amount>\d{6,7}) I'm likely to get a bunch of hits with this - I'm only interested in
|