Skip to content

C#

C# discussions

This category can be followed from the open social web via the handle c-065f1d12@forum.codeproject.com

93.7k Topics 383.1k Posts
  • C# Development in VS.NET

    csharp sharepoint visual-studio sysadmin beta-testing
    2
    0 Votes
    2 Posts
    15 Views
    E
    Try closing the dynamic help window. There are some "issues" with it in Beta1.
  • Show my dataset in a datagrid...

    help css database debugging
    1
    0 Votes
    1 Posts
    6 Views
    No one has replied
  • C# Project quote request

    csharp
    1
    0 Votes
    1 Posts
    6 Views
    No one has replied
  • hi - how do i iterate thru a table

    question help
    1
    0 Votes
    1 Posts
    5 Views
    No one has replied
  • Calendar Web Control

    question csharp hardware help
    1
    0 Votes
    1 Posts
    4 Views
    No one has replied
  • calling COM objects within .NET C#

    help csharp question dotnet visual-studio
    1
    0 Votes
    1 Posts
    6 Views
    No one has replied
  • Singleton objects in C#

    csharp tutorial question
    2
    0 Votes
    2 Posts
    15 Views
    L
    Nevermind. For anyone that is interested, you can go to the following site and see how it is done. http://www.clipcode.com/components/singleton\_designpattern.cs.txt Lee Nowotny
  • C# and ScriptHosting

    csharp c++ javascript performance question
    3
    0 Votes
    3 Posts
    15 Views
    D
    Thanx for the information. I allready found some information about calling C# from C++. I guess this is the new way to do scripting. - - - - - - - - - - - - - - - - - - Memory leaks is the price we pay \0 01234567890123456789012345678901234
  • 0 Votes
    2 Posts
    15 Views
    K
    Hi, Spice up your hardware with more RAM ... and not to mention that 1Gig Processor Cheers Kannan
  • Dockable/Undockable Menu and Toolbars

    tutorial question
    1
    0 Votes
    1 Posts
    7 Views
    No one has replied
  • New C# and ADO.NET article

    csharp com
    1
    0 Votes
    1 Posts
    8 Views
    No one has replied
  • User Interface

    c++ csharp design
    3
    0 Votes
    3 Posts
    23 Views
    V
    Hi Mike, If you are talking about writing a Windows Program than you just need to look up examples on System.WinForms. Since Microsoft is only documenting DotNet in C# you should be able to find lots of information on this. -V-
  • C# and ASP+

    java csharp learning
    3
    0 Votes
    3 Posts
    16 Views
    V
    And to note another part to his question... As required by the CLR Specification, all DotNet languages are strongly typed, so ASP.Net will act like your JSP. -V-
  • Why is "this.SomeVar" used in C# wont "SomeVar" work?

    question csharp c++
    3
    0 Votes
    3 Posts
    17 Views
    V
    Hi! The [this] keyword is used so that you can refer to a member variable instance without accidently calling another variable by the same name. Take this example: class MyExample { private string value = ""; public string Text { get { return this.value; } set { this.value = value; } } } Now personally I would not have written code like this, but there could be a time when something similar occurs. In this example, value is the variable name sent in though the Text Property and can't be renamed. Since I have an internat member called value, the only way that I can communicate with it is with the [this] call, which tells the compiler you were talking about the global instance and not the system local instance. Using the [this] statement is not required by any means, but can help tell other developers that you are: A. Using a member property and B. There can not be a conflict in local naming. I hope this helps. ;P -V-
  • C# dll

    csharp com windows-admin question
    2
    0 Votes
    2 Posts
    8 Views
    V
    All CLR Asseblies are self-contained, meaning that all information is stored within the Assembly itself. COM objects store information in the registry as well as in the objects type library. C# and all other .Net languages store information in the Metabase which is stored in the dll itself. This is why we can't do late binding with .Net languages. If you do need your DLL registered as a COM object so that you can use it in other languages such as VB6 or Delphi; there is a utility that ships with Visual Studio.Net that will create a type library for your objects and register them in the registry. You can find more information on this process in the Visual Studio help files. Hope this helps you. ;P -V-
  • PLEASE HELP Me with a simple DOS C problem

    help com data-structures learning
    1
    0 Votes
    1 Posts
    5 Views
    No one has replied
  • Cool or Uncool

    question
    10
    0 Votes
    10 Posts
    47 Views
    T
    Been dabbling with C# a bit now; I like the structure of the language.... ... but where in the heck am I going to find all the dox for provided namespaces? (Can't find 'em anywhere) ... stuff like you used: using System; using System.Drawing; using System.Drawing.Drawing2D; using System.Collections; using System.ComponentModel; using System.WinForms; using System.Data;
  • VS7, .NET and MSDN Universal Subscription

    csharp beta-testing question announcement
    2
    0 Votes
    2 Posts
    15 Views
    L
    The material is already available for download, I'm sure that it will be included in the next round of MSDN Universal distributions too. For more information on this, check out this thread on CodeProject.com
  • Sharp or Sony,Philips, NEC whatever

    1
    0 Votes
    1 Posts
    5 Views
    No one has replied