| Thread | Last Post | Replies |
|
| Partial Class Getting Extra Designer Form | 12 Jul 2007 05:18 GMT | 2 |
I have moved some of the implementation of a form into a second file and enclosed it with "partial class ..." VS wants to give the second file its own designer form. How do I prevent that and how do I get rid of the second one?
|
| Can't pass data to another form. | 12 Jul 2007 04:08 GMT | 7 |
I can't pass data to another form: in form2: private void button1_Click(object sender, EventArgs e) {
|
| What's effect to start a timer many times without any stop. | 12 Jul 2007 03:36 GMT | 4 |
I have a timer, if my data queue Q has data, the timer should start work, if there is no data in Q, the timer should stop. However, there is an event can fire timer to start. Should I add a variable to know how many records inside Q ?
|
| What is Zithromax? | 12 Jul 2007 02:33 GMT | 1 |
What is azithromycin? Azithromycin is in a group of drugs called macrolide antibiotics. Azithromycin fights bacteria in the body. Azithromycin is used to treat many different types of infections
|
| Removed 2 lines of a string. | 12 Jul 2007 02:14 GMT | 5 |
In order to remove 2 lines of a string, I write this: /* BEGIN */ first_line_location = temp_string.IndexOf(Environment.NewLine); temp_string = temp_string.Substring(first_line_location +
|
| Catch Block Error Handling | 12 Jul 2007 02:10 GMT | 3 |
Can I please get your valuable feedback on the below. It is also available here with clearer formatting http://coding-help.blogspot.com/ Shows a good way to handle errors that may occur inside the catch block, for example while logging the original error.
|
| Application errors out on Vista | 12 Jul 2007 01:33 GMT | 6 |
An application I wrote installs ok on W98 and XP. When installed it asks for Framework 1.1. When the application is installed on Vista and Framework 1.1 is made available, the application installs ok but errors out as soon as the icon is clicked to start up the application. The ...
|
| WPF Questions | 12 Jul 2007 01:25 GMT | 3 |
I'm not sure which is the right forum to post this question - so this is as general as can be. There question is about treeview in WPF: I'm trying to implement drag and drop in TreeViews, poking all sorts of options for their display.
|
| XNA Sprite Sheet Size - There a limit? | 12 Jul 2007 01:03 GMT | 1 |
Simple question for you pros: Is there a limit to a size of an image you can use with XNA? Do they still follow the power of 2 rule or can I have like a 3,500 x 1,700 sprite sheet? Thanks.
|
| Passing a Linked List from C++ DLL to C# PInvoke | 11 Jul 2007 22:36 GMT | 3 |
I want to use a C++ API in a static lib that returns a linked List in C# I am planning to P/Invoke to perform the Interop, I would like to know which way will be better to interop a Linked list to C# in terms of
|
| Question about string efficiency | 11 Jul 2007 22:32 GMT | 6 |
Bearing in mind the overhead of handling strings in .NET, which is more efficient... // trim once but use temporary string s1 = textBox1.Text.Trim();
|
| Multithreading, timer and form updating | 11 Jul 2007 22:28 GMT | 12 |
I have a problem that I can't get rid off, and after many searches on the Net I finally need your help! It seems like a basic multithreading thing, but it's not as simple. Let me explain the thing : I use a method with long time calculation. This
|
| Visual Studio 6 | 11 Jul 2007 22:14 GMT | 5 |
Looking for a Visual Studio 6 group. I want to create an icon. Microsoft had an Icon efitor in a previouse version. Any help here Please. Desmond.
|
| Microsoft Visual C# | 11 Jul 2007 22:02 GMT | 4 |
I am looking at writing new software to replace an existing old DOS based package our company uses for project cost estimating. I have downloaded and started to learn the in's and out's of microsoft's visual c# but, as I get more into it, I'm not sure whether it will be able to ...
|
| what does the condition property in the file system do? | 11 Jul 2007 21:50 GMT | 1 |
I have been trying to establish how I can prompt a user for some responses that will tailor actions in deployment. I am using vs2005 and using the setup and deployment project. I worked out that I need to use the user interface editor and to add a check
|