| Thread | Last Post | Replies |
|
| DataGridView OnPaint | 11 Oct 2006 15:18 GMT | 1 |
greetings I would like to be able to design some extra graphics above the header cells of a datagridview that I have.... I've been trying to use e.cliprectangle.Offset(0,80); but it is useless the drawing I make always became over the grid....
|
| Automatic Memory Management Question | 11 Oct 2006 15:03 GMT | 3 |
Hello I am studying the ECMA specs and was doing wonderfully until just now. They have just broached the topic of AMM and given some example code which seems to be demanding a greater understanding from the reader than the previous examples.
|
| Transaction | 11 Oct 2006 14:52 GMT | 1 |
SqlCommand oCmd; SqlTransaction tran; oCmd = new SqlCommand("myStoredProcedure",myFunctions.createConnection()); oCmd.CommandType = CommandType.StoredProcedure;
|
| Bridge pattern? What is the use? | 11 Oct 2006 14:51 GMT | 12 |
The code below was taken from an example. All the "noise" in the example was thrown out. This is supposedly according to the bridge pattern. What in the code (which lines)
|
| Serialize XPathNavigator | 11 Oct 2006 14:08 GMT | 4 |
Does anyone know how to serialize an XPathNavigator object? I have tried the following but it moans that the xpn does not have a parameterless constructor. XPathNavigator xpn = e.Source.SelectSingleNode("/ns1:Invoice/ns1:InvoiceDetail/ns1:Lines/ns1:Line/ns1:Matches/ns1 ...
|
| Create an event | 11 Oct 2006 13:53 GMT | 4 |
I create a WEB application and I use a textbox, server control. It does not have an OnClick event. Is it possible to create one? Thanks
|
| ADO SQLConnection works only in Windows, but not in WEB | 11 Oct 2006 13:52 GMT | 2 |
I use the same connection string in a Windows and then in a WEB application to connect to SQL Server. When I try it in the WEB it doesn't work, private SqlConnection conTest = new SqlConnection(@"data
|
| WORKS IN TEST, NOT IN LIVE???? | 11 Oct 2006 13:40 GMT | 2 |
Hey guys, I just wrote a web page form using C#/.NET. It works perfectly in the "test" environment that Visual Studio 2005 sets up for you when you attempt to run your web based application.
|
| PropertyGrid Serialize Property of type SystemColor | 11 Oct 2006 12:50 GMT | 3 |
I have a propertygrid that I allow the user to pick a system.color and I want to save to a file to load later onto the propertygrid. String and bool values work but I am unable to save colors
|
| Transparency key is not working in Child Forms | 11 Oct 2006 11:38 GMT | 3 |
When i use Transparency key with the parent form then its ok the form become Transparent but when i add another form to parent and sets the child form' transparency key it does not work at all.. child form never becomes transparent neither by transparency key nor by ...
|
| CPU usage amd memory usage | 11 Oct 2006 11:27 GMT | 3 |
I am using the following code to get the CPU usage PerformanceCounter myCounter; myCounter = new PerformanceCounter(); myCounter.CategoryName = "Processor";
|
| OOT: USB Port Dongle | 11 Oct 2006 11:25 GMT | 3 |
I am sorry moderator that I post an OOT question. Did you all ever use Hardware lock or Dongle to protect your software? How efektif it is? Thank you In Advance
|
| Treeview with in an checkbox in few of the nodes | 11 Oct 2006 08:18 GMT | 2 |
Anyone have a code example on how I make a treeview so it only displays a checkbox on the nodes I decides that needs one? And not just all of the nodes like the Microsoft standard version of treeview dos it.
|
| generics collection question | 11 Oct 2006 07:52 GMT | 14 |
I'm hoping to do something using Generics, but I'm not sure it's possible. Let's say I want to have a bunch of business objects and a data access class cooresponding to each business object. For each business object, I would have something like below:
|
| Application in focus | 11 Oct 2006 06:55 GMT | 4 |
How do I make my application back to focus during it is processing I switch to other application and back ? During my application processing, I open another application, eg. notepad. Then I select my application, my application screen is in white.
|