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 > july 2005 > threads for tuesday july 5

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

Project Properties not displayed in VS.NET 2003
Posted by Tobias Lensing at 7/5/2005 11:45:14 PM
Hi all! I have recently installed my Visual Studio .NET 2003 on a Windows XP machine, where a lot of stuff was installed previously. After the installation had finished without any errors I started VS.NET and discovered that the Project Properties window seemed to be damaged. In fact, the...more >>

AS2 Help
Posted by Chris at 7/5/2005 11:06:01 PM
Hi, Where can I find info on using AS2 connection in .net? I need to upload/download EDI files form a trading partner. We already have a program that creates the EDI files. All I have to do now is upload the files and dounload files form their server but it has to done using the AS2 protocol....more >>

Creating System::Type* using GetType() and String*
Posted by JohnnySparkles at 7/5/2005 10:33:01 PM
Hi everyone, I'm currently writing an application which uses the XmlSerializer class to serialize/deserialize objects to/from xml. Now when deserializing an XmlDocument back into the object, I'm using the System::Type::GetType(String* typeName) to create a Type* needed to construct the X...more >>

How to notifiy the creator of an object of an event
Posted by db_from_mn at 7/5/2005 8:43:02 PM
I have multiple instances of frmDevice forms that were created by a single frmMain. I'd like alert frmMain of certain frmDevice events. What is the best way of doing this? Should I create an event delegate? If so, then it seems that I would need to pass a reference to frmMain to each frmDevice...more >>

Crystal Report .NET - Passing a Parameter at run-time
Posted by kvrdev1 at 7/5/2005 4:59:01 PM
I have a simple Crystal Report developed within .NET. Currently, it displays all fields from a view. Could someone please tell me how I could pass a parameter to the report to only display the record(s) affected? i.e. only display information where the VisitID = 1 (for example). I can set ...more >>

question regarding this httpmodule
Posted by Samuel at 7/5/2005 4:40:03 PM
I wrote a very simple httpmodule and tried to compile it with no success. This is my code: ============== Imports System Imports System.Web Imports Microsoft.VisualBasic NameSpace myErrorHandler Public Class myExceptionHandler Implements IHttpModule Public Sub Init (objApp as Htt...more >>

listbox events
Posted by amber at 7/5/2005 3:25:03 PM
Hello, I'm having trouble findingwhich event I need to use with a listbox. When a user selects a new item in the listbox, I want to trigger an event BEFORE the new item is actually selected. I've tried _Validating, but that doesn't seem to do the trick... Any suggestions? Thanks! A...more >>

Stop a search in Visual Studio
Posted by Jeff Connelly at 7/5/2005 1:55:43 PM
Doing a "Find in Files" in Visual C# - results going to a results window. For long searches, is there a way to stop it from continuing the search? ...more >>



How to find entry level work?
Posted by Shaun Bedingfield at 7/5/2005 1:32:03 PM
Hi, My name is Shaun Bedingfield and I have been programming nonprofessionally for over 16 years (I am 26 now). I know a myriad of technologies and feel that I am very qualified to do almost any software development related task. However, I can't find work because of a lack of industry ex...more >>

Microsoft Engineers , others: Datagrid related q.
Posted by JimGreen at 7/5/2005 12:24:46 PM
I have an arraylist that contains following objects class Name { string _FirstName; public string FirstName { get{return _FirstName;} } string _LastName; public string LastName { get{return _LastName;} } } class CustomerInfo { Name _CustomerName; long _Id public Nam...more >>

First Line of Combobox
Posted by jabailo NO[at]SPAM texeme.com at 7/5/2005 11:26:31 AM
I have a form with two comboboxes. I populate the first one from a database. When it's selected index changes, the second one is populated. In the first combobox, the first item shows before anything is selected. In the second its just blank, and you have to click on the drop down ...more >>

Serialize Objects
Posted by Tom Rahav at 7/5/2005 9:54:05 AM
Hi! My question is whether it's possible to serialize an object into a binary file from one application, and then deserialize this object in a different application that has the same class. I tried to do so, but when I try to seserialize, I get an error message saying that the application d...more >>

Error remoting
Posted by Peppe at 7/5/2005 9:29:34 AM
This is my error : Only one usage of each socket address (protocol/network address/port) is normally permitted Server stack trace: at System.Runtime.Remoting.Channels.Http.HttpServerChannel.StartListening(Object data) at System.Runtime.Remoting.Channels.Http.HttpServerChannel.SetupCh...more >>

FileBrowserDialog is blank.
Posted by Ron Ford at 7/5/2005 9:06:20 AM
I'm running VS 2003 with NetFramework 1.1. I've added a FileBrowserDialog to a WinForm and set the properties for Description and hiding the NewFolder button. These properties are correctly displayed with I show the dialog. But, the directory tree is always blank, regardless of the Root pr...more >>

AD Computer Object Last Login Question
Posted by Bishop at 7/5/2005 9:06:18 AM
I see the LastLogin property exists: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/adschema/adschema/a_lastlogon.asp but when I query it, it always returns null. Anyone know how I can determine the last time a computer logged in via the AD computer object? I'm doing thi...more >>

Update ado.net DataSet
Posted by skyjoker1 NO[at]SPAM hotmail.com at 7/5/2005 8:31:02 AM
I think what I'm trying to do is something relatively simple. I have created a DataTable using the SQLDataAdapter.Fill method: Dim da As New SqlDataAdapter("SELECT * FROM Trans", cn) Dim ds As New DataSet da.Fill(ds, "AllTrans") I am currently editing the table records individually by sele...more >>

Application Links
Posted by jamie.fraser NO[at]SPAM gmail.com at 7/5/2005 2:52:33 AM
Is it possible in .NET to do the following; Have a link in our Windows Application which when clicked will start a program (for example skype) and call the person specified? Id ideally like to be able to replicate the behaviour of a hyperlink (like <a href='skype://....'>Click Me</a>) or simil...more >>

Remoting - Webservices - ADO
Posted by kosh at 7/5/2005 1:34:02 AM
I was wondering if anyone could put me on the right path. I am trying to create a Webservice the authenticates a username ands password from a MS-SQL Server using remoting. If there are any samples out there, I would be mot welcome....more >>

Need some help with serialization please
Posted by Tom Rahav at 7/5/2005 12:00:00 AM
Hello All! I want to store some information about application's evrironment, such as allowed modules, application's paths, etc. For this purrpose, I created a class called SystemEnvironment that contains all the variables I need to store, and methods for serialization and deserialization th...more >>

What happened to System.Directoryservices.ActiveDirectory
Posted by bob at 7/5/2005 12:00:00 AM
Hi, Is this the right place to dicuss Visual Studio 2005 and .Net 2? I am try to implement a class (already using Windows Authentication) where I am given a user name and I return a list of groups to which the user is a member. In .Net 1.1, I can use the System.DirectoryServices.ActiveDir...more >>


DevelopmentNow Blog