| Thread | Last Post | Replies |
|
| DatasetCounter - DataGridView Problem - VS2005, C# | 10 Jul 2008 21:11 GMT | 6 |
I have one problem. Include my project is a dataset with tables. During my process I create a new temporary table. The dataset use my DataGrid Control.
|
| A non-persistent file? | 10 Jul 2008 20:50 GMT | 7 |
I have a pdf document saved (as a base64 encoded string) in a remote database. I now want to allow the client application to display that document. Because of legal issues I am not allowed to temporarily save the pdf document on the local hard disk.
|
| Confused by the CompareTo method of IComparable | 10 Jul 2008 20:14 GMT | 3 |
I understand that if we wanna compare two objects of the same class, we need to implement the IComparable interface, as shown here: http://msdn.microsoft.com/en-us/library/system.icomparable.compareto(printer).aspx I am confused by the implementation of the CompareTo method in the ...
|
| Preloading assemblies into an AppDomain I create | 10 Jul 2008 19:39 GMT | 4 |
Hi all, I'm getting unexpected results when trying to preload assemblies into an AppDomain I'm creating. Upon creation of the AppDomain - I attach an AssemblyResolve to both my current AppDomain and the new AppDomain I create.
|
| ASP.NET Configuration Security | 10 Jul 2008 19:11 GMT | 1 |
I want to know what is the recommendation for logging in to a Internet/Interanet website? is ASP.NET configuration security model a recommended model vs the custom database tables? thanks in advance
|
| C#, Dynamic Functions, Threads | 10 Jul 2008 18:56 GMT | 3 |
Is it possible to do something like the the following: IBaseClass objClass = new LoadClassFromDLL( "Module.DLL"); ThreadStart objThreadStart= new (objClass.GetFunctionFromName("GetString"))
|
| About PrintDocument | 10 Jul 2008 17:56 GMT | 1 |
In the main form I have a multiline textbox where I can enter text. This is named textBoxEdit. Below I have an eventHandler for event BeginPrint called OnBeginPrint for object PrintDocument and
|
| Selecting XML nodes w/ namespace and XElement | 10 Jul 2008 17:45 GMT | 11 |
I'm playing around with XElement stuff, and I've come across a difficulty. The XML document that I'm reading contains an xmlns declaration on the main node... <root xmlns="http://www.me.com">
|
| Integer Resources | 10 Jul 2008 17:00 GMT | 6 |
I want to have a resource file with integers, rather than strings, and have VS 2008 generate a global object with integer properties, rather than string properties. Is this possible? (I know I can convert the values to strings, but I'd like to know if
|
| Using OCX in .NET | 10 Jul 2008 16:29 GMT | 1 |
Hi misters, I try use an OCX in my Winforms application with VS 2005. The OCX is a PDF Viewer (XPdfViewer) I have several issues about it:
|
| Hairy object tree problem | 10 Jul 2008 16:28 GMT | 3 |
I'm working on an object model that will represent trees of products, where one product may contain others (components of a product). Each product needs to keep track of its parent and child products. That far it seems I'll only need one class: public class Product { private ...
|
| ManagementClass name not recognized | 10 Jul 2008 16:24 GMT | 3 |
Do I have to add a DLL reference or something in order to be able to use System.Management.ManagementClass? Simply "using System.Management;" isn't good enough -- ManagementClass doesn't seem to be there.
|
| regex question | 10 Jul 2008 15:48 GMT | 5 |
I have the following code and the first expression get replaced properly but the second one does not replace at all. Only difference in the two, the later one has escape sequences inside the string. static void Main(string[] args)
|
| C#, Dynamic Functions, Threads | 10 Jul 2008 15:24 GMT | 4 |
Is it possible to do something like the the following: IBaseClass objClass = new LoadClassFromDLL( "Module.DLL"); ThreadStart objThreadStart= new (objClass.GetFunctionFromName("GetString"))
|
| How can I disable sorting in a DatagridView? | 10 Jul 2008 15:20 GMT | 3 |
Hello, Programmers. How can I disable sorting in a DatagridView? Thanks in advance.
|