Groups | Blog | Home


Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008
all groups > dotnet general > april 2005 > threads for wednesday april 27

Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

Namespace Naming Guidelines
Posted by clintonG at 4/27/2005 9:39:19 PM
Microsoft recommends CompanyName.TechnologyName[.Feature][.Design] and it all comes down to not breaking the inheritence model if I am not mistaken. VSN2003 however tells the compiler to use the name of the project as the name of the .dll the project compiles to. Developing on XP Pro in the...more >>


Examining Classes
Posted by Scott M. at 4/27/2005 5:55:25 PM
Is there a VS.NET way to know what exceptions a class is capable of throwing? ...more >>

Crystal Reports Missing
Posted by Taras at 4/27/2005 5:04:04 PM
I'm running VB .Net 2003 Standard (V 7.1.3088) There is no reference to Crystal Reports in the Templates box when I attempt to add a new item. I believe I performed a full install. When I try to fix the install, there is no mention made of Crystal Reports. Did my installation go bad or...more >>

window.opener attribute not set after postback
Posted by MrFez at 4/27/2005 4:36:01 PM
I have an webform from which I open a child window to display a calendar. When a date is selected in the calendar window it attempts to set the value of a textbox in the main (parent) window by using the window.opener property to reference the textbox. Everything works fine initially. Howev...more >>

Access Keys Need to show up as underlined by default
Posted by AlanF at 4/27/2005 3:01:45 PM
We have defined access keys for both our menu choices and buttons. However, when the menu displays, the access key "underline" on the menu does not display until we press the ALT key. We can toggle the access key underline display by hitting the ALT key again. How do we get the access keys to ...more >>

What could replace ActiveX in .NET?
Posted by Irene at 4/27/2005 2:12:02 PM
Currently I have in-house software package written around ActiveX(supporting VB and C++). Currently we are moving to .NET and I wonder what (component) in the .NET can replace(?) the ActiveX? I am a novice in .NET...more >>

Comma appended to textboxes when retrieving value!
Posted by Victor at 4/27/2005 2:07:00 PM
I'm retrieving values from the textboxes that I created dynamically. However I get commas appended to my text values and just a comma wherever the textbox is empty. Dont know what is causing this. Any suggestions please? ...more >>

How to store my .NET project on a server?
Posted by Mark at 4/27/2005 1:47:39 PM
I am developing a Web site and can't figure out how to store the project files on the Web server instead of my local hard drive. There must be a way, otherwise people wouldn't be able to collaborate on projects... but everything I can find talks about developing the site locally and then dep...more >>



Set Max Password Age
Posted by lysrian at 4/27/2005 12:33:45 PM
Is it possible to set the max password age of a domain using C# & DirectoryServices? Thanks....more >>

Displaying a text file
Posted by jlea at 4/27/2005 10:50:49 AM
Does anyone know of a nice little .NET class that throws the contents of a supplied file to a scrollable window/form/control? ...more >>

Does IIS Time-Out on Authenticated Users?
Posted by Shawn Brock at 4/27/2005 7:54:12 AM
Gah - sorry if this is a double post, the newsgroups are acting wierd. This is a very strange error I've been dealing with. I think these items might be related. I am able to debug code on IIS using VS.NET 2003. I can step through code, set breakpoints, and do everything I want. Howev...more >>

XmlDataDocument->DataSet->DataGrid: MDAC required??
Posted by Vico at 4/27/2005 7:47:38 AM
Hi! I have a windows forms application and , what I basically do is: 1.- Instanciate a DataSet. 2.- Instanciate a XMlDataDocument attaching the DataSet to it. 3.- Load XmlDataDocument with a local XML document (C:\mydoc.xml) 2.- Bind it to a Datagrid. That is all! My app doesn't n...more >>

Layers as Separate Assemblies, Circular Dependency, Architecture Question
Posted by cmo63126 NO[at]SPAM yahoo.com at 4/27/2005 7:15:08 AM
I'm currently refactoring a small to mid-size web application. One of my goals is to keep my layers as loosely coupled as possible. I've created 3 separate assemblies (Web GUI, Business Logic, Data Access). The problem I am initially encountering with my redesign is in passing objects to and f...more >>

How to retrieve data from Dynamic Textboxes?
Posted by Victor at 4/27/2005 6:56:12 AM
I have dynamically created n number of text boxes in a form like txtQL(1), txtQL(2) , ...txtQL(n) How can I retrieve the values in a loop? I'm confused as to how to approach this! Please help. I get the error "Referenced object has a value of 'Nothing'". as indicated in the code below: ...more >>

Variable Declaration - Does Location Matter?
Posted by YGeek at 4/27/2005 6:56:10 AM
Is there any difference between declaring a variable at the top of a method versus in the code of the method? Is there a performance impact for either choice? What about if the method will return before the variable is used? I'm trying to get an idea of whether the .NET compilers for VB.NET...more >>

Print to printer without opening print box
Posted by Piyush at 4/27/2005 4:02:06 AM
Hi, I need to print stuff on the default printer on the click of a button without opening the print box opening up. Any pointers?...more >>

How To Create "Out Of Process" Components
Posted by ulrich.henne NO[at]SPAM berata.com at 4/27/2005 1:31:56 AM
Hello, in VB6 we werr able to make ActiveX-DLL's (In Process Components) and ActiveX-Exe (Out Of Process Components). Out Application is build of one main application that starts other modules. These modules are ActiveX-Exe's. The main application controls the modules via ActiveX. We dec...more >>

Compiling in Debug Mode, but not in Release Mode
Posted by Chad Slagle via DotNetMonster.com at 4/27/2005 12:00:00 AM
in "c:\Root.Aspects.Exceptions\example.vb(20)" I receive an: error BC30456 'Insrumentation' is not a member of 'Aspects. In the Solution the following projects exist: Root.Aspects.Exceptions Root.Aspects.Instrumentation Root.AppName.Business Root.AppName.Data Root.AppName.UI.Web Root.AppNa...more >>

OT: SQL Server Memory Consumption
Posted by rawCoder at 4/27/2005 12:00:00 AM
Hi, How much SQL Server (sqlservr.exe) should be taking in memory ? I know its a very generic question, but any link or reference related to the memory conumption of SQL Server will be highly appreciated. Thank You rawCoder ...more >>

Week numbers totally incorrect !!
Posted by Steph. at 4/27/2005 12:00:00 AM
Hi, When I use the "Calendar.GetWeekOfYear" function (with "fr-BE" as = CultureInfo and Monday as the first day of week) I get : =20 Friday 31/12/2004 : week =3D 53 Saturday 01/01/2005 : week =3D 1 (see code sample here below) =20 That's very interesting but total...more >>

double qoutes in App.Config
Posted by DraguVaso at 4/27/2005 12:00:00 AM
hi, I'm having troubles putting a string with double qoutes (") in it in an application configuration file (App.Config). The string i need to put in it is: '/profile "MS Exchange Settings" ' I tried it like this: <add key="Argument" value="/profile "MS Exchange Settings""/> <add key="Arg...more >>

Team System 2005
Posted by maireado NO[at]SPAM online.microsoft.com at 4/27/2005 12:00:00 AM
From: =?Utf-8?B?c3dn?= <swg@discussions.microsoft.com> Subject: VS2005 Team System - Whidbey Date: Fri, 1 Apr 2005 01:15:03 -0800 Newsgroups: microsoft.public.dotnet.datatools I'm currently evaluating (trying to evaluate) Team Foundation Server and VS 2005 Team System. I'm running the Dec CT...more >>

Title in Web Form
Posted by edunetgen at 4/27/2005 12:00:00 AM
I need putting title in Web Form of my application (AspNet with C #) for example: <title>Titulo </title> in their place appears: Titulo - Microsoft Internet Explorer is it possible that single "Titulo" appears? Thank you. ...more >>


DevelopmentNow Blog