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
May 2008
June 2008


all groups > dotnet framework > january 2004 > threads for thursday january 15

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 31

Browser Compatibility Questions
Posted by noone at 1/15/2004 10:49:03 PM
Hello I very often use class files that I call from the code behind. I very often return web controls from these classes with a configuration something like: Class Code behind Dim mything as new myclass Placeholder1.controls.add(Mything.stuff) End class Class Myclass Fu...more >>

How to tell if an object implements an interface. ???
Posted by Mark at 1/15/2004 5:14:30 PM
I need to be able to do a check on an object to tell IF it inherits a given interface. There has to be a way to do this, but haven't found it anywhere. Please help, Mark ...more >>

Error creating Manifest
Posted by Jim Covington at 1/15/2004 4:34:04 PM
I have a module that is creating a namespace with a class under it. I get an error when I build as follows: Error creating manifest: Error reading key ...bin/IK.Data.snk - The system cannot find the path specified I am using vb.net 2003 Can anyone help? Jim ...more >>

How to set a Description Attribute using PropertyBuilder class?
Posted by Chuck Hartman at 1/15/2004 3:53:04 PM
I am trying to create a dynamic assembly that contains a dynamic type with the seveal dynamically created members like the static ones shown immediately below. A private field like: private string customerName; A public property with a Description Attribute like: [Description("This i...more >>

where to ask question about using System.Reflection.Emit?
Posted by Chuck Hartman at 1/15/2004 2:20:06 PM
Which newsgroup(s) would be the best place to ask a question about using the builders in the System.Reflection.Emit namespace? Thanks. -- Chuck Hartman ...more >>

Fax
Posted by Woland at 1/15/2004 1:51:25 PM
Hi, Supose there is a FaxServer in the intranet. How can I send a fax from my client app using .Net? I want to use that FaxServer in the network. If .Net Framework Class Library doesn't implement faxing, how can do that from .Net app? Woland ...more >>

Typed System.Uris, seems like this would be a good thing?
Posted by Eric Newton at 1/15/2004 12:36:20 PM
say for example, using Unreal's map download "protocol" unreal://192.168.0.1 in theory, this "Unreal" scheme could be extended and represented as a System.Uri unreal://192.168.0.1/maps/SomeCoolMapOnlyOnthisServer.umap and if the "Unreal" server could read this, in theory, a map would st...more >>

How to use DirectoryServices to determine if a user if a member of a group
Posted by Brad Mann at 1/15/2004 11:40:03 AM
I am looking for a low cost way of determining whether a user is a member of a specific group in ActiveDirectory. Does anyone know of a quick a dirty way to do this? I currently go and get the collection of groups to which a user belongs, then iterate through them to see if the name of the group ...more >>



Process class and main window handle property
Posted by discussion NO[at]SPAM discussion.microsoft.com at 1/15/2004 11:27:16 AM
Hi, In the Process class there is a CloseMainWindow, why is there not a BringMainWindowToForeground or similar method? What would be the best way to do this if we jsut have the process info and MainWindowHandle without PInvoke? Thanks ...more >>

Deserializing in a custom formatter
Posted by Markus at 1/15/2004 10:52:14 AM
Hello all, I am working on a custom serialization formatter class and when I try to deserialize a color, I get the exception: > An unhandled exception of type 'System.MissingMethodException' occurred in mscorlib.dll > > Additional information: Constructor on type System.Drawing.Color...more >>

InvalidCastException from explicit casting object to a class
Posted by Kevin at 1/15/2004 10:50:11 AM
Hi I try the following program and I get InvalidCastException at the line MyByte b = (MyByte)obj; If I change it to MyByte b = (MyByte)d; it works fine. I need to convert the obj to MyByte type. Do you know a way to do it? Thanks in advance. using System; na...more >>

.NET Dependency Walker?
Posted by Mark A. Richman at 1/15/2004 10:42:04 AM
Does anyone know of a tool, similar to Depends.exe (Dependency Walker) for ..NET assemblies? I'm looking for a way to report on inter-assembly dependencies. Maybe a Visio plugin that would help map out dependencies without littering the UI with properties, methods, etc? Thanks, Mark ...more >>

Internal Class Storage as DataRow
Posted by Eric Barr at 1/15/2004 10:39:28 AM
Hi all, I have a data intensive application and I'm in the process of design a middle tier object to abstract the data model. All the properties of these objects are going to need private internal storage. Each property maps directly to a database field.Since the object is so data intensive...more >>

FileStream object: UnauthorizedAccessException with network UNC path
Posted by dc NO[at]SPAM upsize.de at 1/15/2004 9:49:01 AM
Hi, when I open / create a filestream like this: FileStream(@"\\machinename\dir\file.dat", FileMode.OpenOrCreate, FileAccess.Write, FileShare.ReadWrite ) I receive UnauthorizedAccessException when "machinename" is not my local machine, even thought everybody is allowed to do everyth...more >>

Compiling objects for ver 1.0 of framework using .NET ver 1.1
Posted by (capricornianz NO[at]SPAM yahoo.com) at 1/15/2004 8:04:37 AM
Hi, Any idea if and how i can compile objects for ver 1.0 of .NET Framework using the 1.1 version ?? Thanx S. ********************************************************************** Sent via Fuzzy Software @ http://www.fuzzysoftware.com/ Comprehensive, categorised, searchable collection o...more >>

USER CONTROL shutdown...
Posted by Me at 1/15/2004 6:55:51 AM
Hello, The user control will be used in multiple parent forms and I would like a way to be notified of when a user controls is "going away" (independent of the parent) I would also like to access controls ( edit boxes etc ) on the user control at the notification moment, AND also be ab...more >>

Deploying Windows Applications
Posted by anonymous NO[at]SPAM discussions.microsoft.com at 1/15/2004 6:48:13 AM
Hi Folks Not sure if this is the right place; it says configuration and deployment, and this is about deploying a win app. I'm working on a Win App, and soon I will need to package it and ship it to the client. However since it's been written in managed code, the client will need t...more >>

From .NET 1.0 to 1.1
Posted by Nicola at 1/15/2004 2:41:25 AM
Hi to all. I installed on my develop pc .NET frameworks 1.0 and 1.1. The About menu in my VS IDE tell that is in use "Microsoft .NET Framework 1.0 Version 1.0.3705". How can I do to use the .NET 1.1? Thanks & bye. Nicola...more >>

send me documentation of visual studio
Posted by anonymous NO[at]SPAM discussions.microsoft.com at 1/15/2004 1:57:18 AM
send me completely .net frame work...more >>

Display Resolution
Posted by Dehaibe_François at 1/15/2004 1:42:24 AM
Hello, I would like to know how can I get the current display=20 resolution of the video card with C#.=20 Best Regards. Fran=E7ois Dehaibe....more >>

Tutorial: How to Use HTML Help in .NET
Posted by James Hancock at 1/15/2004 1:33:29 AM
In case any of you have been as frustrated with the Help implimentation in ..NET as me, here's a way around the stupidity of using the current window as the parent for the help window (yes, you can't go back and forth and look in the help file and then do what it says in the program! That woul...more >>


DevelopmentNow Blog