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 > may 2004 > threads for tuesday may 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 31

.Net Framework doesn't work after demoting my server
Posted by Clare Jonsson at 5/18/2004 11:47:32 PM
Hia, I have a windows 2000 advanced server, and I initially set it up as a domain controller. ASP.Net was working fine, But I decided to demote it to a stand alone server, not the .Net Framework doesn't work, and when I try to view an .aspx file via IIS I get the following error: Serve...more >>


Application Domains...
Posted by Alan Seunarayan at 5/18/2004 10:52:55 PM
Hello all, I am developing a .NET application that controls an existing .NET exe. The problem is that for my application to run the secondary application it has to reside in the same folder. If it doesn't then an exception is raised from the secondary application saying that it cannot find ...more >>

Modem programming!!
Posted by Tor Lund at 5/18/2004 10:45:00 PM
hi there. does anybody know if there is an API for any modem that i can use in my win appl. i want to show the incoming callers number on my computers creen and make some logging of it. thanks, Tor Lund ...more >>

SSL Performance HIT in REVERSE? the clients are PEGGED as opposed to the server?
Posted by anon at 5/18/2004 10:33:59 PM
I am trying to stress test the effects of SSL on a web server using Web Application Stress Tool (WAST). However, when using SSL and according to the WAST Help files, the peformance HIT is in the opposite direction. It's on the clients at 5 times the load!!! as opposed the server I want to test...more >>

e.keychar
Posted by rockfrdcpl NO[at]SPAM aol.com at 5/18/2004 9:51:03 PM
I am trying to use statements like "Select Case Asc(e.KeyChar)" in a sub routine that is in a module that I call from different forms so I don't have to type the series of statements several times in my program but I haven't figured out the exact code to make it work. The program says I need an ...more >>

Printing out the entire .NET Framework?
Posted by burt4684 at 5/18/2004 9:19:20 PM
Is there any way to programatically traverse/walk the entire .NET Framework for display purposes? I'd like to create smaller versions of the .NET Framework posters like the ones at http://msdn.microsoft.com/vstudio/productinfo/posters/download.aspx since I don't have access to a plotter or over...more >>

code execution flow
Posted by Jo at 5/18/2004 7:36:02 PM
Hi, I have a small (hopefully!) problem. I have two buttons on my web page and when button A is clicked, the code behind takes about 3 seconds to execute. While it's executing though, I don't want the user to be able to click button B. What I have found happens is that if user clicks button B whi...more >>

Is this possible with .NET?
Posted by Aaron at 5/18/2004 7:29:54 PM
Normally if you want to retreive some data say a html page you would have to send a request to the server. For example a stock ticker sends a request and the server sends back some data every minute. My question is, is it possible for the server to send back data without having the client send ...more >>



How can I setup SSL on my LOCAL COMPUTER?
Posted by anon at 5/18/2004 7:14:07 PM
Hello, I already have setup SSL on my production server via purchasing a certificate and that seems to work fine as I can type in https:// and it works fine. However, I want AND need to be able to test my .ASPX webpages via SSL on my local server. What is the best way to this? Thanks....more >>

Javascript customization
Posted by Dave Vanwonterghem at 5/18/2004 6:50:29 PM
Hi, My ASP .NET pages contain some client-side javascript variables and functions : <html> <head> <script language="Javascript"> pageId = '[pageId]'; function init() { ... do some work using the value of pageId ... } ...more >>

When Will GNU/Linux Be Ready for Joe User?
Posted by some_spare_id NO[at]SPAM yahoo.com at 5/18/2004 6:43:49 PM
I'm doing a survey. When do you think GNU/Linux will be ready for the average Joe? What obstacles must it overcome first?...more >>

What is the fix for Visio integration
Posted by Joe at 5/18/2004 5:00:39 PM
I have Enterprise Architect VS 2002 AND Enterprise Architect VS 2003 installed. The problem is visio has married itelf to the 2002 version. How do you switch it to the VS 2003 install? I've uninstalled and reinstalled visio and it only shows up on the VS 2002 menu? ...more >>

Console Window
Posted by Jason Callas at 5/18/2004 4:38:48 PM
I am trying to figure out how to create a console window but cannot figure out how to do this. I know it can be done since the C# and VB console template projects do this but I see no code on how this is done. The only thing I can think of is that there is hidden code to spawn cmd.exe? Then t...more >>

deploy question
Posted by \ at 5/18/2004 3:57:48 PM
I have created a VB.net 2002 program on win xp and put it on SQL 2000 server. Then I try to run the exe in SQL 2000 server or shared folder. Both gave me error. Is this not feasible? ...more >>

Problems with .NET and MQ 5.3
Posted by Jason at 5/18/2004 2:56:05 PM
I was hoping that someone could help me out with a problem that I am having. To give you some more info I have installed MQ 5.3 on a Win 2K machine with .NET ver 1.1 using amqmdnet.dll. When I try to create the queue manager I get following error message.. The type initializer for \"IBM.WMQ.MQTr...more >>

Garbage Collection Bug In .NET Framework!!!
Posted by banderbe NO[at]SPAM yahoo.com at 5/18/2004 2:00:08 PM
To see the bug for yourself, create a new C# Windows Forms application. Put a call to this function in your Form constructor: private void OverflowLargeObjectHeap() { int[] largeArray; largeArray = new int[1000000]; for (int i=0;i<=100;i++) { GC.Collect(); // previous ref...more >>

const keyword on member functions
Posted by Lidström at 5/18/2004 1:48:59 PM
Hello, why am I not allowed to put const keyword on memberfunctions as such: public __gc class C { public: int get() const; }; ? Also, if I return a pointer to as String, do I have to add const to make it non-changeable? For example: public __gc class C { public: System::Strin...more >>

Programming Is Dead
Posted by XML Man at 5/18/2004 12:37:22 PM
Programing is dead. XML documents, which are human readable, fully explain both data and data structure. There is no need for the *reinterpretation* of the programmer. And let's face it, other than the 200 or 300 *real* programmers who can do stuff like write operating systems, 99% of a...more >>

Typed Dataset mismatch in C# client touching webservice
Posted by Joseph Abreu at 5/18/2004 12:26:04 PM
I've got a webservice returning a typed dataset -- I've got a client app with one library that downloads and writes the dataset to the harddisk and another library that later opens the dataset. Openning the dataset works fine and all data is there and intact but when trying to cast from Object to T...more >>

Website Monitoring Script
Posted by Aaron at 5/18/2004 11:13:26 AM
Is there a script that monitor (ping) my website every hour and run iisreset if it receives an error or no response. Thanks Aaron ...more >>

System.InvalidCastException
Posted by Brian Conway at 5/18/2004 10:28:20 AM
Hope someone can help. I am trying to get a submit button working and getting this error now System.InvalidCastException: Object must implement IConvertible. This is showing up on the ExecuteNonQuery line. Below is the code that I have in my Page_load. I also have no idea of what code I would...more >>

Installer cannot find required DLL
Posted by Bill Murray at 5/18/2004 7:51:04 AM
I am using VS.NET 2003 and trying to deploy a service program(c++) to a Windows 2000 Server system. I have also written a small DLL (USSsetup.dll) that is used to start/stop the service using a custom action. This dll is apparently dependent on the MSVCP71.DLL and MSVCR71.DLL's as per the Detected D...more >>

International Date Format?
Posted by Ryan at 5/18/2004 7:21:06 AM
Hello We have an application we wrote here in the US. A customer of ours in Hong Kong has the Chineese version of Windows XP Pro. The way the system date is formatted over there is different then it is here, and causes the .NET Framework to have a lot of problems when working with the system.d...more >>

BC dates
Posted by guy at 5/18/2004 7:16:12 AM
anyone have good suggestions on how to manipulate BC dates, including date arithmetic?...more >>

Why is this so hard: Will I Ever be Free of Crystal Hell?
Posted by JDP NO[at]SPAM Work at 5/18/2004 7:11:58 AM
Rant I feel better now. JeffP..... ...more >>

Type mismatch in .net query
Posted by Mark at 5/18/2004 6:27:48 AM
Hi - I tried this in VS.Net, and also in the Web Matrix code below: - but I am getting a type mismatch error. The sql statement runs perfectly from within the Access Query Designer. Can anyone verify the syntax, and that my .net code is ok - the type mismatch is happening at: DataGrid1.Dat...more >>

checking if app is running already?
Posted by Deasun at 5/18/2004 4:51:09 AM
Good morning In vb.net how would one go about checking if the app is already running Need some pointers on this Thank Deasun...more >>

Datagrid row select
Posted by Varun at 5/18/2004 4:11:05 AM
Hi I wanted to create functionality to display a message box to the user if a row has not been selected from a datagrid i.e i want to provide the user with a delete row function If the user selects a row and presses a delete button, a message box is displayed to the user stating that the selec...more >>

Windows Service startup failure
Posted by Jon at 5/18/2004 12:41:02 AM
Hi there I've written a windows service that works OK, apart fom the fact that if it were to fail during startup, I'm not sure of the best way to handle it. If I let the exception fall thru' from my OnStart() method, the exception is reported in the event log and the service is not marked as star...more >>


DevelopmentNow Blog