| Thread | Last Post | Replies |
|
| cannot convert from type to type. | 20 Sep 2005 18:42 GMT | 3 |
I have the following procedure below: I am getting 2 errors on compile: Argument '2': cannot convert from 'System.Data.SqlClient.SqlDataReader' to 'ref System.Data.SqlClient.SqlDataReader'
|
| C# Language Specification - Extension Methods | 20 Sep 2005 18:16 GMT | 4 |
I think one of the major advancements on C# will be the growing support for Extension Methods and related concepts... The current syntax involves a static class with static members using a warping of the "this" concept applied to function parameters. Surely we'll
|
| C# Toolkit libraries | 20 Sep 2005 18:03 GMT | 4 |
I'm quite new with dotNet and C#. sCould anyone tell me if there is any Open Source based libraries (with C# source) like Java's Jakarta Commons. E.g. libraries handling different kind of
|
| Fixed character length problem calling Fortran DLL | 20 Sep 2005 17:07 GMT | 2 |
I am calling a Fortran DLL that has a declaration like: character * 260 variablename. I do not have the Fortran code. A path to a file is passed to the DLL. C# does not have a fixed character length. I can use vba or vb6 with
|
| LDAPMod structure | 20 Sep 2005 17:01 GMT | 1 |
I'm trying to use ldap_modify_s and it requires use of the LDAPMod structure. Anyone have any idea how toadapt this for .NET. I keep getting an error 53 (Unwilling to perform) when using the structure. Here is what I have:
|
| Instead of Redirect.Response...help | 20 Sep 2005 16:55 GMT | 2 |
Ok, I have a Windows app that I want to, at a click of a button, bring up various urls. Can I use Redirect.Response, or is their a better option?
|
| What exactly does a = b = c = d mean?? | 20 Sep 2005 16:50 GMT | 11 |
Can someone explain how the following code evaluates: string a = "a"; string b = "b"; string c = "c";
|
| Lock the system | 20 Sep 2005 16:46 GMT | 1 |
Moin! Maybe I'm blind, but I couldn't find it in the documentation. How do I lock the system / machine? I want to lock it, as if the user would've pressed Ctrl+Alt+Del, and then selected "Lock computer".
|
| How to Upgrade Microsoft Updater Block | 20 Sep 2005 16:12 GMT | 1 |
I am using Microsoft Updater Block in my project for Auto Client Upgrades. How I will Upgrade my Updater block within itself.
|
| VS 2002 can't see my Namespace | 20 Sep 2005 16:09 GMT | 2 |
I have a DLL in the bin folder of my Web Application. When I try to build it, it says it can't find it. Here is the beginning of my Class: *******************************************************
|
| Controlling Desktop Apps | 20 Sep 2005 16:05 GMT | 1 |
I have a form which I want to dock to the side of a monitor (left or right), but I do not want the form to be covered by any other apps, I need to know how to control the desktop so that when my app runs it loads this form, and basically takes that space away from the desktop so ...
|
| HScrollBar messages | 20 Sep 2005 15:49 GMT | 1 |
I'm subclassing a HScrollBar and overriding the WndProc method: protected override void WndProc(ref Message m) { base.WndProc (ref m);
|
| Coding Problem, Help Needed | 20 Sep 2005 15:47 GMT | 6 |
Hello to ALL, I'll explain my problem by pseudo code class A {
|
| Is CurrencyManager and DataBinding worth it? | 20 Sep 2005 15:39 GMT | 2 |
I've been playing around trying to bind textbox controls and datagrids to typed datasets. Up until recently, I never used DataBindings. I always manually wrote the value into a textbox and stored its value after the textbox lost focus or whenever someone manually saved the
|
| Create Object from database stored class name | 20 Sep 2005 14:51 GMT | 2 |
Is it possible to create an object from a stored (database,xml or variable) name? For instance I have 2 class names stored in my database. Depending on the application settings I want to create an object based on the class name that
|