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 monday april 18

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

Encountered user-defined breakpoint
Posted by Mike at 4/18/2005 11:59:02 PM
Can someone please tell me why this code (it is a function that has a parameter xmlstring: Dim objWebRequest As HttpWebRequest Dim oRequest As WebRequest objWebRequest = CType(WebRequest.Create("https://anon:6442"), HttpWebRequest) objWebRequest.Method = "POST" objWebRequest.ContentType = "...more >>


StreamReader not reading...
Posted by some guy at 4/18/2005 10:41:02 PM
Note: This is happening under the VS05 February CTP release. I haven't had a chance to run it under Beta 2 yet. I have a StreamReader that is reading a NetworkStream from a TcpClient, which is connected to a TcpListener. The client (the one that throws the exception later) can send informat...more >>

vb.net regex question
Posted by engwar1 NO[at]SPAM yahoo.com at 4/18/2005 10:24:07 PM
Not sure where to ask this. Please suggest another newsgroup if this isn't the best place for this question. I'm new to both vb.net and regex. I need a regular expression that will validate what people are entering as their new password. Must be between 6 and 10 characters Must be alphanume...more >>

httpwebreqeust are there known limitations?
Posted by Brad at 4/18/2005 3:40:04 PM
I have written a process in C# that uses the httpwebrequest to retrieve jpg images....more >>

httpwebreqeust capacity question?
Posted by Brad at 4/18/2005 3:39:06 PM
I have a process that uses httpwebrequest to retrieve jpg images. The process works fine with a few concurrent users (say 25) but as you increase the number of users (say 75) the response times begin to increase from 6 ( 25 users) seconds to over 15 ( 50 - 75 users) seconds. I'm looking for...more >>

Tips for speeding up VS.NET 2003?
Posted by Mitchell Vincent at 4/18/2005 12:44:24 PM
I've finally started working in VS.NET most of the day and have a small problem. It's *slow* on this 2.8 GHz P4 with a gig of RAM. I only develop in VB.NET, so is there anything I might be able to strip out or turn off to make things a bit quicker? Even saving a small 3 form project takes 5...more >>

Error When Interop'ing to COM+ Managed Object with Library Activation
Posted by Matt Dinovo at 4/18/2005 11:20:48 AM
I have a remoting server that is on the same local box as a COM+ managed object with Library Activation. When I try to activate the object from the remoted assembly, I get the following error: "The specified activation could not occur in the client context as specified." The security context o...more >>

Visual studio 2005 beta 2
Posted by Aaron at 4/18/2005 10:52:34 AM
http://msdn.microsoft.com/library/en-us/dnvsent/html/vsts-over-fig01big.gif Does this mean the team developer edition has the most complete visual studio 2005? what 's the difference with standard and pro edition? ...more >>



Request.Cookies("Email").Value
Posted by tascien at 4/18/2005 10:02:58 AM
I cannot believe that this code causes an error: Dim MyCookie as string = Request.Cookies("Email").Value Object reference not set to an instance of an object. If the cookie is found, it works, if the cookie is not found, the error above is triggered. and i can't just do this: Dim MyCook...more >>

Large memory footprint of dotnet application
Posted by assi at 4/18/2005 9:22:39 AM
Hello all We are developing a large dotnet application, which includes ~ 120 assemblies. (total size of all binaries is ~ 20MB). Our application also references the following dotnet assemblies: System,System.XML, System.Windows.Forms, System.Drawing, System.Data, System.Design. We use dotnet ...more >>

how to clear string builder object?
Posted by Rich at 4/18/2005 9:06:03 AM
I have to read data from an external source, massage the data, concatenate it to one long string, then write it to a textfile. So I am experimenting with the StringBuilder object. I append the data in a loop, then I write the data to text file, then I need to clear the StringBuilder object f...more >>

DotNetNuke ASP.NET Portals
Posted by Sean at 4/18/2005 8:42:05 AM
Hi, I want to know where I can find online tutorials about DotNetNuke? I am a rocket in this issue and I need a guide in order to start to develop my portal on this tool. Thanks in advance for any help Sean....more >>

Assemblys vs. Modules ?
Posted by Ben R. at 4/18/2005 8:20:01 AM
Hello, I’m in the process of reading "Inside Microsft .NET IL Assembler" by Serge Lidin to gain a better understanding of my .NET code at a lower (IL) level. There is one concept that I am having trouble grasping, however: Assemblies versus modules and how they relate to one another. From...more >>

Datagrid cell edition ????
Posted by serge calderara at 4/18/2005 4:47:03 AM
Dear all, I have a datagrid which is dynamically bind to a dataset. What is the way of entering in edition mode when a user click on a perticulra cells. Actually if I click on a cell, it is highlighted but I canottype in ??? Thnaks for your help Regards Serge...more >>

Output parameters with VB .Net
Posted by Dudi Nissan at 4/18/2005 2:56:01 AM
Hello, I enjoy visiting your web site. I am programming with VB .Net My code is: Public Sub Test(ByVal a As String, ByVal b As String, ByVal c As String) a = "aaaa" b = "tttt" c = "qqqq" End Sub I have a question: I created from this code class library (dll...more >>

help!! credentials stored in web.config vs in database
Posted by Gamze at 4/18/2005 2:49:05 AM
Hi, I have difficulties about authentication & authorization thing. My project has an admin folder (which can only be accessed by administrator) and a secret folder - (can be accessed by registered users). Is it possible to store credentials in two different places and using only one l...more >>

tcpclient socket webrequest
Posted by Aaron at 4/18/2005 12:25:21 AM
tcpclient socket webrequest what are each used for? I read some reference books and did some research on the internet, but I'm still confused. could someone clarify this for me? Thanks, Aaron ...more >>

How to define COlumn Width ????
Posted by serge calderara at 4/18/2005 12:08:03 AM
Dear all, I have a Datagrid control which bind to a dataset during runtime. How can I set the width of the Column of the grid dynamically . I could not find any width property for columns Thnaks for your help regards serge...more >>

ANN: Visual Studio 2005 and .NET 2.0 Beta 2
Posted by Thomas Scheidegger [MVP] at 4/18/2005 12:00:00 AM
Visual Studio 2005 Beta 2 http://lab.msdn.microsoft.com/vs2005/ Get http://lab.msdn.microsoft.com/vs2005/get/ Order http://msdn.microsoft.com/getthebetas/ Go-Live License http://lab.msdn.microsoft.com/vs2005/golive Express Editions Beta 2 http://lab.msdn.microsoft...more >>

Difference between 'out' and 'ref' parameters.
Posted by Chris Mayers at 4/18/2005 12:00:00 AM
'out' and 'ref' parameters in C#... Both these can be used to pass parameter values BACK from a Method, but obviously they are different techniques. As I understand it, 'ref' parameter passes the object into the Method by Reference, ie passes the memory location of the original object in ...more >>

Half-off: VSST 2005
Posted by Max A. Bündchen at 4/18/2005 12:00:00 AM
I'm looking informations about the MSDN Subscription Professional. Will this subscription have a Version Control, like Visual Source Safe 2005? I'm working in small groups and I think a simple Version Control will be fine. Thanks for all, Max ...more >>

serialize
Posted by Fernando Callejon at 4/18/2005 12:00:00 AM
Hello, i'm trying to serialize a class with a enum property...it seems to be serializing ok, but when i try to de-serialize it throw me an error like "[value] isn't valid for type [enum]". someone have done this before? i'm sorry by my english ...more >>

.net dll call from native c++
Posted by sunil s via DotNetMonster.com at 4/18/2005 12:00:00 AM
Hi, I've got a native C++ app which calls a 3rd parth .NET DLL using the LoadLibrary/GetProcAddress functions. This works fine when the DLL is located in the app directory, but if I move it out to it's own directory, then I get a FileNotFoundException. I've tried manipulating the app.exe.co...more >>

operator(+) overloading in c#
Posted by enahar at 4/18/2005 12:00:00 AM
Dear Sir/Madam, I have 2 lists as following: ApproverListBE appList1; ApproverListBE appList2 ; I want to add the above 2 lists.How do I override the + operator. Kind Regards, ...more >>

How to get a keypress event in an console application
Posted by Ulrich Kotzolt at 4/18/2005 12:00:00 AM
I use to get the function keys that were pressed in an console application cause this application should also be used over a telnet server. Does someone know how to get the keys. Tanks for your help in advance. Ulrich...more >>


DevelopmentNow Blog