| Thread | Last Post | Replies |
|
| Use of "fillby" | 14 Feb 2007 13:31 GMT | 2 |
Can someone help me understand how to use this example from MS in my code: string cityValue = "Seattle"; customersTableAdapter.FillByCity(northwindDataSet.Customers, cityValue); I am not sure where "FilByCity" comes from or is referenced? I only se
|
| resolve launch application to file extension from registry using C#? | 14 Feb 2007 12:55 GMT | 2 |
When a user double clicks on file item in Windows Explorer, Windows tries to open the document with whatever application is related to it's file extension. In my WinForms application I would like to be able to shell out and
|
| How to mock Stream.Read method | 14 Feb 2007 11:53 GMT | 5 |
I need to mock Stream.Read method with RhinoMocks but it looks like it's impossible. Any ideas?
|
| System.Transactions and database locking. | 14 Feb 2007 11:06 GMT | 8 |
I've implemented transactions in my dotNet 2.0 project using System.Transactions and TransactionScope. --- TransactionOptions options = new TransactionOptions();
|
| ContextSwitchDeadlock Problem | 14 Feb 2007 10:53 GMT | 7 |
As iam working on convertion of C#1.1 to 2.0. Iam facing a problem (screen is flickered) while opening and closing any artifacts. When i tried to debug it is througing ContextSwitchDeadlock MDA exception i.e. The CLR has been unable to transition from COM context 0x1a0768 to COM
|
| About Generics: switch behaviour if type T is nullable | 14 Feb 2007 08:59 GMT | 2 |
Please, could you take a look to the code below? My questions are inline: public class SmartArray<T> { protected T[] array;
|
| ÈçºÎÐòÁл¯·¶ÐÍÁÐ±í£¿ | 14 Feb 2007 03:36 GMT | 1 |
ÎÒÔÚÓÃSoapFomatterÐòÁл¯List<T>ÀàÐ͵ÄÊý¾ÝµÄʱºò³ö´í£¬ÇëÎÊÊDz»ÊÇ·¶ÐÍÀàÐÍĿǰ»¹²»Ö§³ÖÐòÁл¯£¿»òÕßÐèҪͨ¹ýÆäËûµÄ·½·¨²ÅÄÜÐòÁл¯£¿
|
| Aspose.Grid for .NET - 1.9.0.0 Released | 14 Feb 2007 02:52 GMT | 2 |
Aspose.Grid is a .NET component that provides you a total grid solution. It is packaged with two different .NET components to support Desktop and Web applications. Main features include: Importing/exporting to CSV & SpreadSheetML format, Find/Replace feature, Easy to apply skins, ...
|
| String to byte[] reloaded | 14 Feb 2007 01:32 GMT | 30 |
I need an efficient method to convert a string object to it's byte[] equivalent. I know there are LOTS of methods, but they lack in efficiency. All methods allocate new memory to create the byte[] array. Of course,
|
| form1.commandsTableAdapter.Fill(form1.fixed1DataSet.Commands); | 14 Feb 2007 00:48 GMT | 1 |
I am trying to "fill" the dataset form another form. So, after I update some records from form2, I want to refill (if you will) the dataset on form 1 datagridview. The code below won't work. Any ideas> form1.commandsTableAdapter.Fill(form1.fixed1DataSet.Commands);
|
| Scrren Scrapping Error: 501 Not Implemented | 14 Feb 2007 00:48 GMT | 2 |
I am getting a System.Net.WebException -- >The remote server returned an error: (501) Not Implemented when I try to read the contents from url:http:// www.ourcommunity.com.au/member/directory_details.do?orgId=319
|
| How do I resize Tooltip text or ToolStrip Text ? | 14 Feb 2007 00:46 GMT | 1 |
I want to increase font size of a tooltip or a toolstrip menu on mouse hover or mouse click. It is changeable or not ? What alternative can be used in its place?
|
| detecting running under UNIT TEST | 14 Feb 2007 00:19 GMT | 3 |
I use Visual Studio 2005, c# projects... I like the new unit test framework very much, it helps a lot mantaining and growing up a project with the test driven paradigm, that's so good! I'm looking for a way to detect if the program is running under the TEST
|
| Web Browser XSL Problem | 13 Feb 2007 22:20 GMT | 1 |
I'm using AxWebBrowser in my program to view files from users. Though most files work great, there are a few files that are creating a headache. The errors I am getting are "The XML page cannon be displayed. Cannot view XML input using XSL style sheet.... A string literal was ...
|
| Random and MessageBox | 13 Feb 2007 21:28 GMT | 5 |
I hope somebody can show me why I need to have a messagebox to get "random" numbers in my example. If I comment out the message box call that is in RollAbility() the numbers generated are not random , otherwise it works fine. I really would like to get rid of the messagebox call.
|