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 > august 2003 > threads for friday august 22

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

Modal Dialog Popup from WebControl - What is wrong with this...
Posted by Jim Mitchell at 8/22/2003 11:31:49 PM
I saw several posts asking for popups from web controls. The standard answer is that once rendered, the server no longer has control. I had some success with the following and I was curious if I have broken any rules. Add this line to the load_page event.... Response.Write("<script languag...more >>

Code changes don't affect compile and debugger not working
Posted by Chris at 8/22/2003 10:22:32 PM
The strangest thing started happening to me today in Visual Studio .NET 2003. I make changes to my code and compile it, but none of my changes are in the compiled program. The compiled program is stuck on a single instance of my code (an instance that is not saved anywhere). I add print...more >>

Server Application Unavailable
Posted by Daniel S. Horwitz at 8/22/2003 7:17:05 PM
I downloaded a security fix from Microsoft, using Windows update, on Wednesday night, 20-Aug-2003. The next time I tried to use IE to bring up a local web site, I got a "Server Application Unavailable" error when it tried to access an .aspx page. When I looked in the C:\WINDOWS\system32\Lo...more >>

intellisence
Posted by Andy Read at 8/22/2003 6:11:20 PM
Dear all, Can anyone tell me why the VS IDE does not display the methods / functions etc for the base class object. This may be a stupid question but I expected to see the ToString function or the Equals function in the intellisense? Example: Dim obj as New Object obj. ??? Am ...more >>

Error from Dns.GetHostName
Posted by MSNews at 8/22/2003 2:30:52 PM
I get the following exception when calling Dns.GetHostName (from C#): An unhandled exception of type 'System.Net.Sockets.SocketException' occurred in system.dll Additional information: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a ...more >>

Group Policy Object
Posted by Angela at 8/22/2003 12:46:21 PM
This question is in reference to another question I posted titled, "This advertised application will not be installed because it might be unsafe". The error I am getting says I need to change the installation user interface option of the package to basic. From what I've been reading, I n...more >>

Make Enter Key act like Tab
Posted by Jeff at 8/22/2003 12:22:31 PM
My .aspx page - written with vb.net, has several text boxes and a command button at the bottom. Is there any way to make it so when users press Enter on a text box it acts as if they pressed the Tab - and sets focus to the next text box? Now it runs the command button's click event....more >>

What is wrong with Designer? Task List errors...
Posted by Ali Eghtebas at 8/22/2003 11:51:58 AM
Hi, I wanted to insert linebreaks in the tooltip property of some of my controls. I simply altered the designer generated code in InitializeComponent: Me.MyTooltip.SetToolTip(Me.TextBox1, "Text line 1" & vbCr & "Text line 2.") But whenever I change back to desinger I get this error in the...more >>



Multithreading
Posted by Leo at 8/22/2003 11:15:16 AM
Hi, Is it possible to target a specific (set of) processors on a multiprocesor machine with a .NET multithreaded application and how do I accomplish this? You can tell for instance SQLserver to use a specific processor. Doe the .NET framework support this as well? Leo....more >>

How get "log on locally" users and groups programatically?
Posted by Jonathan Trevor at 8/22/2003 10:28:18 AM
Hi, Spent nearly 8 hours googling and trying code on this yesterday without much success. I'd like to write a .NET application (using .NET primitives, older Win32 calls, or WMI etc) to work out which users can log onto a machine the application is running on. The platforms I'd like to support ...more >>

Remaining time in a thread....
Posted by hyper_x_43 NO[at]SPAM yahoo.com at 8/22/2003 9:59:34 AM
Hi, I'm using Thread.Sleep(50000); and I want to display to the user when the current thread will become active, how do I do that in c#? Regards, HyperX....more >>

sockets programming with C# for smart devices
Posted by jubi at 8/22/2003 9:14:07 AM
I am trying to program for a PocketPC using C#. I know it is possible for sockets programming for a desktop using C#. I'd like to know if it's possible to: 1. Sockets programming for the PocketPC and 2. Using C# Links to more reading/resources are greatly appreciated! Thank you, j...more >>

Visual Studio .NET 2003 debugger slow/hangs/freezes
Posted by rachael.hubbard NO[at]SPAM isinet.com at 8/22/2003 9:12:48 AM
I'm running this on a 2.8 GHz machine with 1.5 GB RAM. (XP machine) The full suite of VS.NET is installed. I'm running 7.1.3088 Professional Edition. Initial launch from within IDE took only seconds, but my system froze almost immediately, and required reboot. Now, launching from within ...more >>

MasterPages
Posted by Roger Walter at 8/22/2003 8:25:03 AM
When using the MasterPages form Templating from ASP.NET web Controls, and also using another templating process that uses User Controls, I get a border around the entire page when it is rendered to the browser. Do you know how I can get rid of this. My template has a header, sides, main ...more >>

This advertised application will not be installed because it might be unsafe.
Posted by Angela at 8/22/2003 7:35:34 AM
Still having problems with my Web Setup App. I deleted the registry keys for my installer because it refused to uninstall when I ran the uninstaller, and having the previus version on my machine prevented me from installing a newer version. Now I'm getting a new error: "This advertised...more >>

TextChanged event firing before the KeyXXX events
Posted by Fabrício de Novaes Kucinskis at 8/22/2003 2:47:52 AM
Hi all, I have a combobox control, in wich I put an autocomplete code. This code is in the TextChanged event, but when this event fires, the Text property isn't updated yet. For example, if the Text property is "Foo" and I press the letter "d", the Text property when the TextChanged event r...more >>

Ready class for accessing configuration file
Posted by Serge calderara at 8/22/2003 1:53:55 AM
Dear all, Does any one have a ready class that is able to access a configuration file and make different type of querry, read, write operation? Why re invanting the real if something already exist and as we share things in usegroup in general... thanks for your help...more >>

Changing NTFS Directory Security in .NET
Posted by Duncan Allen at 8/22/2003 1:39:26 AM
Hi, Using VB.NET I need to access a shared drive on a server using a specific account, check for a subdirectory, add it if it doesn't exist and then change the access security for the subdirectory to only allow specific accounts to access it - these will be different to the account used b...more >>


DevelopmentNow Blog