| Thread | Last Post | Replies |
|
| WPF - Get ProgressBar Template to Stretch to fit Parent Grid | 07 Jan 2008 07:05 GMT | 3 |
I have defined a control template for a progress bar. This progress bar sits in a grid column with the width set to *. How do I get the progress bar to fill in the entire space of that grid column (like it does if a non-templated progress bar is used)?
|
| processes and mutexes | 07 Jan 2008 03:19 GMT | 3 |
I have a C# program that fires an external VB6 program which writes to a file and terminates. It is ugly, but this is how I have to do it. I cannot change this part of the program.
|
| Newbie question on dotnet - OOP | 07 Jan 2008 00:58 GMT | 6 |
I would like some examples on using OOP with dotnet developing tools (For VB & VC), please. Also what are the main difference of version 3.0 and priors (2 & 1.1). Need some samples, and tutorials please.
|
| newbie question about axd | 07 Jan 2008 00:55 GMT | 1 |
What are the porposes of files with .axd extensions? Some say they are http handlers, then why not just create .ashx files? TIA
|
| Lock Threads | 07 Jan 2008 00:53 GMT | 2 |
I have a Static Class with a few Methods/functions im trying to make them thread safe... public static myclass {
|
| is temporary variable necessary? | 07 Jan 2008 00:00 GMT | 11 |
hi, could anyone tell me which is better of the 2 code below? ① string[] columnInfo = columnDescription.Split(new char[] { '-' }); ② char[] splitter = new char[]{'-'}; string[] columnInfo = columnDescription.Split(splitter);
|
| It is important to measure a performance | 06 Jan 2008 19:21 GMT | 1 |
It is important to measure a performance http://gg08.net.cn/business3.htm Is it really important to measure a business performance? I think if you will even need to purchase someone's business, then you will never
|
| Delegate of/Pointer to object instance | 06 Jan 2008 18:25 GMT | 4 |
Hey there, What i know is that a delegate is a (address)reference to a method or a object-instance's method. But how can i have a reference JUST to a object instance? Is this also
|
| XsltCompiledTransform | 06 Jan 2008 18:20 GMT | 2 |
c#2.0 I am Calling the below Xslt.Transform(InputFile,OutPutFile); I get the Below Error when transforming a large file
|
| Help Required | 06 Jan 2008 17:51 GMT | 1 |
I have a requirement as follows I need to navigate to a folder X which contains numerous folders a,b,c etc. Each of the folders a,b,c have files withing them. i need to count the files in
|
| reg SSL | 06 Jan 2008 17:47 GMT | 1 |
We are using SSL to provide security to our web application we have created. But this shows a Security Alert Box every time any user logins. Can any one pls tell me how this can be avoided? The same security alert box does not come up when we login to gmail or some other secure ...
|
| Delegate to call a function | 06 Jan 2008 16:14 GMT | 5 |
I have a function to fill combo box items. I pass SQL query and combo box name as arguments. This function is located in another class. In my Form, I have declared a delegate to this function before the namespace as;
|
| Adding data columns to a disconnected database | 06 Jan 2008 14:36 GMT | 2 |
I am having trouble adding data columns to a disconnected database. I first load a datatable using: private DataTable dtMacros = new DataTable(); private ArrayList macro = new ArrayList();
|
| DataTable.Select - Thread.CurrentThread.CurrentCulture - String.Format | 06 Jan 2008 13:13 GMT | 5 |
Hi NG, in my application a <myDataTable>.Select fails with "Syntax error in the expression." It took me a while, isolate the cause to this:
|
| Get properties in native order for DbLinq | 06 Jan 2008 12:45 GMT | 7 |
I need to get type t properies in the native order as they appear in class definition .cs file. Type t has full-property constructor whose parameters are all properties in native order.
|