| Thread | Last Post | Replies |
|
| The type or namespace 'Installer' does not exist in the class or namespace 'System.Configuration' | 18 Nov 2005 23:25 GMT | 2 |
I get the above error message as well as a complaint about the RunInstallerAttribute not being found when compiling the following code. This couldn't be any simpler and I see examples on the web that use this namespace and this attribute. I am using VS.Net 2003. Any ideas?
|
| Code Review! Parent-child relationships | 18 Nov 2005 23:13 GMT | 4 |
I've been trying to write some classes, so when I have a parent-child relationship, such as with Folders in my application, I don't have to remember to add a parent reference, as well as adding to the child collection, eg:
|
| VS C # Express - Report | 18 Nov 2005 23:13 GMT | 4 |
Does Microsfot provide any report control for C # excpress or we need to use thrid party reporting tool? Sam.
|
| XML Text Reader on a socket (newbie) | 18 Nov 2005 22:47 GMT | 1 |
I am trying to use XmlTextReader on a socket. I have code like: NetworkStream stream = new NetworkStream(m_clientSocket,FileAccess.ReadWrite,true); XmlTextReader rdr = new XmlTextReader(stream);
|
| Forcefully Releasing memory | 18 Nov 2005 22:46 GMT | 7 |
I am having application in c# where i am loading one table of database into dataset. My table is of large size. so whenever i am loading that into dataset my memory size is getting increased.
|
| C# function with 'params' not working in managed C++? | 18 Nov 2005 22:42 GMT | 2 |
Maybe it's a known issue but i couldn't find any answer so far... Consider this c# function: // ---------------------------------- public int SumUp(params int[] iArgs)
|
| Generate .SQL file | 18 Nov 2005 21:57 GMT | 4 |
I'm a junior in c# development, and would like to know how to generate the .SQL files from my development system (database), so that I can execute them on another system (from MSSQL to Oracle database) I'm looking for a way to extract and create the 'CREATE TABLE... and
|
| Out of Memory Exception | 18 Nov 2005 21:43 GMT | 11 |
I have an app that's dealing with a few hundred bitmap thumbnails. I only instantiate the bitmaps that are visible at a given time and dispose of them if they get scrolled out of view. I've used the .NET memory profiler and I've verified there's no leak in my bitmaps, nor are ...
|
| ActiveX | 18 Nov 2005 21:13 GMT | 5 |
Can you create ActiveX controls in C# for reuse on IE, MFC 6.0, ASP classic, as well as .NET? Thanks, Yama
|
| C# 2005 not packaged without Visual Studio? | 18 Nov 2005 20:42 GMT | 12 |
Hello, This is a stupid question. I cannot find any information if we can buy Visual C# 2005 without purchasing the whole Visual Studio 2005... can you do this like you can purchas C# 2003 by itself?
|
| Merits of using a DAL | 18 Nov 2005 20:31 GMT | 2 |
In an environment such as VS which allows great integration of the Database design components visually in the IDE, and given that a target app is will be deployed on a single machine (ie. not n-tier or client server), I'm debating the concept of using a DAL.
|
| Organize Forms | 18 Nov 2005 20:09 GMT | 3 |
Is it possible to organize forms so that their Code is seperated in several classes? What I would like to do is to have the code of the content for each tab page in seperate classes.
|
| XmlUtility? | 18 Nov 2005 20:09 GMT | 3 |
Hello Group I need to XML encode a string. Is there something like System.Web.HttpUtility.UrlEncode(string) but just for XML?
|
| How to convert an Access.mdb format??? | 18 Nov 2005 20:05 GMT | 3 |
Is there a way to convert an Access.mdb from one format (say Access '97 or Access 2000) to Access 2002 format using ADO.NET and C#??? I know how to do it manually using the Access DBMS but I would like to know how to do it programatically.
|
| Email html page with images | 18 Nov 2005 19:50 GMT | 5 |
I'm trying to email html page & that page also contains the images. I can do that when we send html page from ms outlook. But I want to attach page c# code & send the mail through smtp mail. Thanx in advance..
|