| Thread | Last Post | Replies |
|
| Keep Dialog window in bounds of an app | 02 Sep 2007 15:24 GMT | 1 |
I have a MDI application. I open a Form (Data Window) which has the apps window as the MDIParent. From this Data Window I open a Dialog Window. This Dialog window can float outside of the bounds of the App window.
|
| Student needs help | 02 Sep 2007 14:41 GMT | 6 |
My assignment is to have a user add scores to a listbox then write a method to find the highest and lowest score in the list. I am able to get and display the first index or the last index, or even count the number of indexes, via foreach, if, while and for loops. I
|
| Slightly OT: Run C# Express as an administrator in Vista | 02 Sep 2007 13:39 GMT | 2 |
When I launch Visual C# Express installed on Vista from the Start > Programs menu, it launches OK but a dialog adviser me to run it as an administrator. I can do this by selecting Start > Programs, then right-clicking C# Express in the programs list and selecting "Run as ...
|
| Fastest way to get data? | 02 Sep 2007 12:17 GMT | 3 |
DataTable loading a SqlDataReader (dt.Load())? Vanilla DataTable using SqlDataAdapter or SqlDataReader ? or is there a better way using Generics? If so, how? Essentially I
|
| TextBox event change when textlength is zero | 02 Sep 2007 12:11 GMT | 1 |
I have a form I want to clear two other fields if the length of the text box is zero. ie. TextBox1 has 11111
|
| C# exercises | 02 Sep 2007 11:04 GMT | 4 |
I am looking for exercises in C# for beginners. Any idea where can I find some ? Thanks
|
| smart client/web app approach recommendation? | 02 Sep 2007 10:18 GMT | 2 |
Hi all. I need to create an app that runs both at individual client PCs, on the client's on-site server, and on a main server depending on network connectivity, probably w/ database replication. What technologies should I use so that the software running on all three
|
| calculate font size in pixel | 02 Sep 2007 01:39 GMT | 3 |
Hi, I should print many row (nameitem, quantity, price). I would like print price item with justification to right. I need to know width font size in pixel. example:
|
| My Boss is a Butthead (but I don't want to hurt his feelings) | 02 Sep 2007 00:35 GMT | 21 |
I had an hour-long discussion with my boss today. Last night, right before I dozed off, I realized some of his code resulted in duplicate processing. I tried to explain it to him and he kept saying, "I'm afraid to say it's 'OK' to change it because everything I did was for
|
| Creating a dynamic array... | 02 Sep 2007 00:15 GMT | 24 |
I have figured out how to create an instance of an object only knowing the type by string. string sName = "MyClassName"; Type t = Type.GetType(sName);
|
| Correct usage of the volatile keyword | 01 Sep 2007 22:23 GMT | 15 |
Assuming I have a class like the following; public class Family { private *volatile* Person _child;
|
| How to pass a parameter to a predicate delegate? | 01 Sep 2007 20:35 GMT | 3 |
I have seen examples for List<T>.FindAll(findthis)where findthis is a predicate. How do I pass a parameter to this predicate so that I have different values to search for? I don't want to use global variables.
|
| Regular Expressions | 01 Sep 2007 20:01 GMT | 2 |
Looking for a little help. I cannot quite seem to get it right. Here is the string: addgroup ASOGRP supgroup(DUMMY0) owner(DUMMY0) data('AUTO SYSTEMS') Result:
|
| string | 01 Sep 2007 19:30 GMT | 2 |
|
| section three... correct? | 01 Sep 2007 18:43 GMT | 3 |
I have made my first class wih function, trying to calculate the interest paied on a principal. It works until reach the endo f section 2. Section 3 that supposed to print out the results, it does not work. I don;t get any error msg but i don't get either the results. Why?
|