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 > february 2004 > threads for tuesday february 10

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

IIS ports
Posted by Dave Brown at 2/10/2004 11:58:13 PM
Hi all, Does anybody have any experience of running .Net windows forms controls from a html page on any other IIS port than 80 ? If so can anyone tell me why i cant get even the simplest control to display correctly. When IIS is on port 80 then everything is fine. rgds Dave. ...more >>


Method from interface is virtual or not?
Posted by Vladimir Bezugliy at 2/10/2004 10:29:23 PM
I have next interface: interface I { void F(); } And next class implements this interface: class MyClass : I { void F(){}; } What does the modifier have the method MyClass::F() by default?...more >>

Getting Version attribute for displaying in the Application About Box
Posted by Vipul Patel at 2/10/2004 9:36:08 PM
Hi I have entered the assembly version in the attribute AssemblyVersionAttribute of the AssemblyInfo.cs file At runtime, I want to use the attribute AssemblyVersionAttribute to display the version of the assembly that I am executing How is this possible Can anybody please send a small code s...more >>

ASP.NET and thin clients
Posted by ak at 2/10/2004 8:36:52 PM
Hi all I figured I would ask here if somebody done something similar to this since I am new to .NET : I need to implement a thin client; it is involves communicating with a database and above all displaying the information graphically allowing the user to view the data in different ways...more >>

Smart Client Deployment
Posted by Vishwanathan Raman at 2/10/2004 7:21:07 PM
I am trying to deploy my Smart Client (it accesses a Web Service) on to a server.It works fine in my machine and also works when others access it from my machine But when deployed to another server 1)Locally on the server just double clicking the exe it runs fin 2)But ...more >>

ASP.NET equilivant of VB6 control array
Posted by James McGivney at 2/10/2004 6:36:05 PM
I have a project in ASP.NET using C#. I have a large number of Button Controls and a large number of ImageButton Controls. It would be convienent if I could refer to a specific control by it's index number, in the same way in which I used a Command Array in VB6. What is the method of assigning an...more >>

Variable contents appear as Nothing in Intermediate Window
Posted by Dave at 2/10/2004 5:31:13 PM
Problem: When I try to print a variable in the Immediate Window (ie "? mststSwitch"), the immediate window indicates that it is nothing. But, if I put a "MsgBox(mststSwitch)" at the same breakpoint, it indicates that the value (correctly) contains a "T". Why does the Immediate window indicate tha...more >>

Is C# more capable than VB.NET?
Posted by kplasun NO[at]SPAM hotmail.com at 2/10/2004 5:12:18 PM
I have to implement a project in .NET which might entail some lower level technical programming, and have to decide whether to use C# or VB.NET, is C# more capable than .NET or they just synctatically different? Thanks, kristoff plasun...more >>



MSMQ trigger app causes exception
Posted by SunshineGirl at 2/10/2004 4:51:53 PM
I'm trying to trigger an app with the following code from a message = queue. It works with only the message box voil=E0! enabled. But it = causes the exception below when it is triggered with the rest of the = code. This application works fine when executed by double-clicking on = the filename i...more >>

Volatile & ECMA Specification
Posted by Andrew at 2/10/2004 4:01:07 PM
Section 17.4.3 of the ECMA-334 C# Language Specification says 1 When a field-declaration includes a volatile modifier, the fields introduced by that declaration are volatile fields. 2 For non-volatile fields, optimization techniques that reorder instructions can lead to unexpected and unpredictabl...more >>

OutOfMemoryException and UnhandledExceptionEventHandler
Posted by Ryan Seghers at 2/10/2004 2:36:35 PM
I've got a program that has no user interface (like a service but not actually a Windows Service yet) in which I'd like to handle OutOfMemoryExceptions. I'd at least like to log the failure before exiting, if possible. I understand that it probably takes some memory to continue operating, even...more >>

COM, Unmanaged/Managed C++, and CoInitialize()
Posted by Michael Kennedy [UB] at 2/10/2004 11:54:11 AM
Hi, I'm working on a project which makes use of COM in unmanaged C++. That unmanaged C++ is then wrapped in a managed C++ class. Finally, this managed C++ class is then consumed in a C# application. It looks like this: C# App | | (one-to-many relationship) | |- Managed C++ ...more >>

Setup Project
Posted by jdd at 2/10/2004 11:25:34 AM
I would like my setup project to launch the application it just installed after the installation is completed. I tried using custom actions but the seem to make my setup wait for a return from the application. I wish the call to be asynchronous. Is there a way to do that? Thanks ...more >>

WebRequest/WebResponse and Cookie
Posted by Peter at 2/10/2004 11:11:08 AM
Hi I am trying to do very simple http client that requires a login, copy cookie snet by a server and does a request with the cookies. WebRequest->CookieContainer/WebResponse->Cookies does not seems to handle cookie correctly. User case: If a server send back cookies in headers that looks like fo...more >>

Lock and Synchronized
Posted by Rich Sienkiewicz at 2/10/2004 11:11:05 AM
Some classes, like Queue and SortedList, have a Synchronized method which gives a thread safe wrapper object for these classes. But the lock() statement does the same thing. Is there any rules as to when to use one and not the other? For instance, if I wanted to remove an item in a SortedList, would...more >>

distribute .net framework
Posted by paruchuri at 2/10/2004 10:16:10 AM
All our clients have visual studio but not visual studio.net I developed visual basic.net application and need to distribute it to all our clients Is it possible to install .net framework along with my .net application using a setup package How do I include .net framework installation in setupp...more >>

smtp mail send weird question
Posted by eric at 2/10/2004 8:31:05 AM
Hello, I write a simple code to send email via my webpage. But there is no errors in the program when I trace it, and NO EMAIL get received in my hotmail box. Any idea? Seems all emails not been sent, thanks I am sure there is no send email authentication for password, but I am not sure whether th...more >>

Subject: Forcing a .NET obj exposed as COM to use StdCall instead of CdCall
Posted by Doug at 2/10/2004 8:26:06 AM
Does anyone know how to force interop to use a stdcall interface on the COM objects it creates instead of the cdcall interface that is standard? This is very importiant for my project. I need to reference a VB.NET based interop COM object from an outside program. The program will only interact ...more >>

vb.net crsytal report text box
Posted by chris at 2/10/2004 8:10:49 AM
hello, i have a crystal report and would like to set it to not visible from a form. it is in groupfootersection3 on my report. thanks/...more >>

Urgent help on USe of AppendPrivatePath ??
Posted by Serge calderara at 2/10/2004 6:46:10 AM
Dear all I am using the following code in my applciation AppDomain.CurrentDomain.AppendPrivatePath("\Plugins" objDomain = AppDomain.CurrentDomain.CreateInstanceFromAndUnwrap(Name + ".dll", "NomosNetSuite.PluginApp.PlugIn" & Name Return (CType(objDomain, IPlugIn).Icon If I place the libr...more >>

Disconnected Recordset??
Posted by Mark at 2/10/2004 6:20:03 AM
Hi - I have a recordset generated from a search between two dates - if the user wishes to 'update' some of the records to show their interest in some of the dates, is there a way I can just update the recordset, and write it back to the database (used to use rs.Edit, rs.Update etc in old ASP...more >>

Enable/Disable Network Card
Posted by Fil at 2/10/2004 4:41:07 AM
Can anyone tell me how can I enable or disable a network interface card Thanks for any help....more >>

Breakpoints
Posted by Rafi at 2/10/2004 4:01:10 AM
Hi, I'm trynig to debug a C# project that is activated by an external program (my program is not a DLL, it is an EXE and it is called by third party program). My project does not stops at breakpoints. Why?...more >>

Will .Net 2.0 with VS support "refactoring"?
Posted by sunil NO[at]SPAM volcanomail.com at 2/10/2004 12:09:19 AM
Dear All, I have found some sites on "refactoring" but I would like to know if MS will be integrating some kind of "refactoring" functionality in VS for .Net 2.0? Or do I still have to depend on third party utilites like http://www.xtreme-simplicity.net/ http://www.velocitis.com/ Please ...more >>


DevelopmentNow Blog