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
May 2008
June 2008
all groups > dotnet framework > june 2007

Filter by week: 1 2 3 4 5

framework download for Turion 64 mobile processor question
Posted by SandpointGuy at 6/30/2007 11:16:06 AM
I just got a notebook with an "AMD Turion 64 x2 mobile techology "processor. Which version of the framework should I download? x86 or x64? Thanks, Mark...more >>


How can I make Console::ReadLine accepts int? In other words.
Posted by Allen Maki at 6/29/2007 9:30:07 PM
Hi everybody, I need your help. I am using Visual C++ .NET How can I make Console::ReadLine accepts int? In other words. I know I can do this: string* =3D Console::ReadLine(); Can anybody tell me how can I do this: int =3D Console::Readline();...more >>

CSS Files
Posted by Barry at 6/29/2007 3:35:35 PM
Hi I am updating a website downloaded from Microsoft, in the aspx files there are controls having referance to cssclass but there are no css files in the project, have i missed something or has MS done away with css files eg <asp:TextBox Width="500px" Text='<%# Bind("Title") %>' runat="se...more >>

Click Once Install doesn't work on one PC
Posted by Jones at 6/29/2007 2:24:16 PM
I saw a couple posts on this but nothing really clear. I've got a very simple c# windows form application that basically is just a form and a label. There is only on pc that I'm having problems with (my bosses of course). When we run the set up it seems to download ok, but when it starts it o...more >>

ApplicationException in TimerBase.AddTimerNative method.
Posted by Jan Obrestad at 6/29/2007 2:02:38 PM
Hello. I'm developing a module in .Net for a program that's made in c++. With a new version of this program I started getting strange exceptions in my module. I found out that the exceptions originated in the AddTimerNative method of the TimerBase class. Using Reflector I've found out that...more >>

Folder Compression
Posted by Bishoy at 6/29/2007 9:54:00 AM
Can GZipStream class compress an entire directory not only a file? If not, how to compress a directory? Thanks....more >>

AssemblyResource not found
Posted by Chuck P at 6/29/2007 9:42:00 AM
I have an embedded js resource in my Assembly asp.net 2.0 In the immediate Window I do: ((System.Web.UI.WebResourceAttribute)Attribute.GetCustomAttributes(Asm)[7]) {System.Web.UI.WebResourceAttribute} base {System.Attribute}: {System.Web.UI.WebResourceAttribute} ContentType: "applic...more >>

cutom stream
Posted by ajit at 6/29/2007 8:24:01 AM
I am planning to implement custom stream which will be memory stram until certain point and then become file stream if it exceed cetain size any ideas would be very helpful...more >>



NetworkStream.Close() - Last bit of data not being sent
Posted by Tom at 6/29/2007 7:39:04 AM
Hello, This is my first post on google groups btw :) I am having an issue with the NetworkStream object. byte[] buffer = new byte[1024]; int bytesRead = 0; Networkstream ns = new networkstream(socket); while ((bytesRead = fileStream.Read(buffer, 0, buffer.Length)) > 0) { ns.Wr...more >>

Help - use of PerformanceCounter for monitoring heartbeat?
Posted by at 6/29/2007 5:44:53 AM
I have a C# .NET 1.1 application where I need to monitor heartbeat requests from an external system - the external system (which I cannot otherwise access) is going to send a message to my application on a periodic basis to let me know it is still functional, and my application needs to monitor ...more >>

How to sign satellite assembly with .pfx file
Posted by Jaakko Salmenius at 6/29/2007 12:00:00 AM
I have an application using strong names. VS signs the application when compiling the assembly file. After that I create localized satellite assembly files manually from my makefile. Until now I used .snk file to sign the assemblies. Using it was easy to sign the satellite assembly files when ...more >>

List of exceptions
Posted by Chakravarthy at 6/28/2007 10:55:58 PM
Where can we get a comprehensive list of all .NET exceptions with examples of when to use each of them ? ...more >>

How to plot a running graph from Live XML Stream Data
Posted by JP at 6/28/2007 10:26:13 PM
Hi.. I am working on a medical device which will give the various current reading of various types of parameter from patient body like oxygen lavel, breathing, tampature etc, and it's a ventilator, so we are continousally getting live data from this device in the form of XML Stream. Now i n...more >>

Calling wsHttpBinding service under IIS
Posted by mpaine at 6/28/2007 9:36:02 PM
Hello, I am attempting to call a single WCF wsHttpBinding service under IIS from two seperate Web Sites on the same server. Unfortunately, it appears that only one can communicate to the WCF service at a time returning "WSHttpBinding_IMyService Error: The communication object, System.Se...more >>

Sending messages between two C# programs...
Posted by Sunburned Surveyor at 6/28/2007 7:22:07 PM
I'm very new to C# programming, but I have been writing programs in Java for several years. I'm trying to find a simple way to send short messages and data packages between two separate C# programs running on the same computer. I found a library on CodeGuru that allows this to be done using .N...more >>

license question
Posted by Wendy Elizabeth at 6/28/2007 5:38:01 PM
I am working at a company where I am the only .net programmer. I want to be able to test sql server 2000 t-sql commands using Visual Studio.net 2005 professional version. I have read articles from Microsoft saying that you should not test on a production server. I would like to be able to i...more >>

Merge Time String into a DateTime?
Posted by lucius at 6/28/2007 3:40:19 PM
I have a string[] of time values that look like this: "16:00:00" "18:00:00" "22:30:30" I need to convert/merge them to a List<DateTime> so they will be {1753-01-01 16:00:00} {1753-01-01 18:00:00} {1753-01-01 23:30:30} What is the best way to do that date/time math...more >>

Capture Remoting Event?
Posted by lucius at 6/28/2007 3:25:51 PM
I have a Remoting server (via Http channel) with many objects that are CAO. I would like to hook some kind of overall "Remoting primary" event so I can log every time anything is done with the server. I do not want to change the implementation of the objects, I just want something that acts a...more >>

Native Memory leak? (Private bytes increases resulting in worker process recycling)
Posted by chen at 6/28/2007 3:02:39 PM
While investigating a possible memory leak scenario in one our web services, we ran into a peculiar situation where the "private bytes" of the worker process continued to increase steadily while the .NET CLR Memory counter '# Bytes in all heaps' remained constant. Pretty much all the documentati...more >>

dot not app not quitting
Posted by John at 6/28/2007 2:42:58 PM
Hi I have noticed when I close my vb.net app, it is still visible under processes in task manager? Why is that and how can I ensure complete closure of app? Thanks Regards ...more >>

Best practices question ... monitoring an objects contents ...
Posted by Jamie Risk at 6/28/2007 12:56:39 PM
I'm using a class in my project and I'd like to determine if the any of the fields in the object have been modified since the original instantiation. For intent and purposes, the following class is typical: public class patient { private string name; private string surname; ...more >>

URGENT ASP.net VB.net Developers SSE/TL required
Posted by nms at 6/28/2007 7:09:56 AM
We, at BioEnable Technologies, Pune, have requirement of 2 to 5 years experienced Professionals (Sr. Software Eng / Team Leaders) with following skill sets ASP.Net(MUST), VB.Net (MUST), C#, .Net2.0, AJAX, XML, SOAP, WebServices (MUST), MSSQL Server 2005, MySQL (preferred), VB6.0 (optional) ...more >>

directory class
Posted by AVL at 6/28/2007 5:08:03 AM
hi, i've used Directory.GetFiles(path, "*.*", SearchOption.AllDirectories) method to return the files in a given path.... but i've a small concern here...whenever I give path like "d:\", i'm getting an unauthorizedaccess exception...this is because i'm not able to read certain directories ...more >>

Updating machine.config. on multiple pcs
Posted by John at 6/27/2007 9:00:08 PM
Hi We need to update machine.config for .net 2.0 on multiple pcs on a network. Most machines would potentially have other versions of .net installed too. Is there an easy/quick way to do this specially one that a non-technical person can do too such as running a bat file or some such like? ...more >>

Search DB With Special characters
Posted by Barry at 6/27/2007 7:33:38 PM
Hi What is the method to search database when the there are special character like São TIA Barry ...more >>

How do I update a WinForm control via Remoting?
Posted by paulgyro NO[at]SPAM gmail.com at 6/27/2007 3:48:04 PM
How do I update a WinForm control via Remoting? Note that this control is running within the WinForm application which is the Remoting host. The Remoting client will be a VBA based application and I'll be using COM-to-.Net interop (the interop part I have down). I've been able to a lot of di...more >>

Still Cannot Use ConfigurationManager Class in Code
Posted by EagleRed NO[at]SPAM HighFlyingBirds.com at 6/27/2007 1:48:03 PM
I have noticed a number of entries regarding the use of the ConfigurationManager class to read connection strings. I writing a class library that requires a DB connection. I have an app.config file in the application that contains the connection string. I have set a project reference to t...more >>

Fire Fox toolbar with Microsoft prog languages
Posted by tasleem at 6/27/2007 10:38:01 AM
hi all i want to make Toolbar for Fire Fox, i have search but found nothing related to the its development with microsoft technologies, is is not possible to do so with microsoft technologies VC++ or .net...more >>

Log off only option on shut down.
Posted by HMcGovern at 6/27/2007 6:52:00 AM
We have a Windows 2003 domain here with mainly XP & 2000 clients. I have a WSUS server distributing windows updates. I deployed some updates at the start of the week & since then, the shut down option is not available to users. To shut the PC down they must log off first & then shut down. Th...more >>

ICommand woes...
Posted by Lloyd Dupont at 6/27/2007 12:00:00 AM
I tried to create a SetColor command and a ColorPicker which uses it. There is one effect I cannot reproduce, it is tracking the CommandSource and wether it's valid. By that I mean if I create a MenuItem like that: <MenuItem Header="Blue" Command="{x:Static local:MyCommands.SetColor}" C...more >>

Remote a DataTable?
Posted by lucius at 6/26/2007 3:11:38 PM
I have a class that is a subclass of a subclass of a DataTable. I would like to Remote an instance of it (SingleCall), but if I recall correctly only classes that inherit from MarshalByRefObject can be Remoted. So how can I remote my DataTable-inheriting class? Is it possible to iplement all ...more >>

ASP.NET / WebDAV - 502 (Bad Gateway)
Posted by Lee Wilson at 6/26/2007 11:16:37 AM
The concept is to display the current user's inbox (located on a remote Exchange 2003 server) from the intranet home page. The following code has been written: string studentLoginId = "LOGINID"; string studentPassword = "PASSWORD"; string studentInbox = string.Format("{0}{1}/{2}/", Proper...more >>

ByVal Replacement for String?
Posted by lucius at 6/26/2007 10:35:54 AM
I have a class with a String property. I wonder if there is something that can hold the same alphanumeric data that is a "byval" class like an int... Is there? Thanks. ...more >>

Problema with clickonce
Posted by tiempotecnologia NO[at]SPAM newsgroup.nospam at 6/26/2007 10:04:34 AM
Hi I'm trying to make an installer with clickonce for vb.net app with VS 2005. I can publish, but when I try to install, I got an error: Can't start the application Here is the log (I'm using spanish version) INFORMACIÓN DE VERSIÓN DE LA PLATAFORMA Windows : 5.1.2600.1310...more >>

Change color for radio button
Posted by Roy at 6/26/2007 8:32:01 AM
The radio button has a circle with a white color inside it. How do I change the color inside the circle? I do not want to change the color for the text or background....more >>

VS.NET 2005 SP1 breaks applications
Posted by ewpatton NO[at]SPAM gmail.com at 6/26/2007 6:33:29 AM
I recently updated Visual Studio to Service Pack 1. Before the update, any program built with Visual Studio required the .Net 2.0 Framework to be installed on the target machine in order to run or it gave an "Application Configuration is not correct" error. Now that I've updated, I continue to g...more >>

Capturing returned value from external application
Posted by pradeep_TP at 6/26/2007 1:25:02 AM
Hi All, I have simple windows service (C# code), from which I am calling an external console application created in C#. This console application will return different integer values that are some error codes. How do I call this console application from windows service so that I can read...more >>

Problem with clickonce
Posted by Rodrigo Juarez at 6/25/2007 12:08:22 PM
Hi I'm trying to make an installer with clickonce for vb.net app with VS 2005. I can publish, but when I try to install, I got an error: Can't start the application Here is the log (I'm using spanish version) INFORMACIÓN DE VERSIÓN DE LA PLATAFORMA Windows : 5.1.2600.131072 (Win32NT)...more >>

Drag & Drop between Listview in detail mode and Windows Explorer
Posted by Stephan Steiner at 6/25/2007 8:50:44 AM
Hi Basically I'm trying to do something as in this CodeProject article: http://www.codeproject.com/csharp/Explorer_Drag_Drop.asp With the exeption that my Listview has to act like Windows Explorer (within some boundaries.. in the end the goal is to have something akin to your average FTP clie...more >>

help on treeview
Posted by AVL at 6/25/2007 5:58:00 AM
hi, i've used a treeview control in my windows form.... i want to display the text of my treeview nodes as hyperlink..instead of showing it as plain text...... how can i acheive it? ...more >>

Windows service in VS 2005
Posted by pradeep_TP at 6/25/2007 12:13:02 AM
Hi all, I have created a simple windows service in VS 2005. I have installed it also using installutil.exe. The utility doesnt show me any error but i cannot see my windows service under services in control panel. Can anyone please tell me what am i doing wrong. I have created windows s...more >>

Acropolis
Posted by David Ching at 6/24/2007 9:05:09 PM
Anyone try the Acropolis CTP? It seems to be something like MFC document/view architecture. http://www.microsoft.com/downloads/details.aspx?familyid=72386ce5-f206-4d5c-ab09-413b5f31f935&displaylang=en -- David ...more >>

DataGrid and TextBoxes bound to DataView
Posted by Shehab Kamal at 6/24/2007 7:30:01 AM
Hi all, A .Net 1.1 question I have a DataGrid bound to a DataView and 2 TextBoxes bound to 2 columns in the same DataView. When I change the selected row in the DataGrid the text in the TextBoxes change (The currency manager fires the PositionChanged event and the TextBoxes adjust their dat...more >>

Parsing Text using RegExp
Posted by Barry at 6/23/2007 7:42:50 PM
Hi Sometime ago i had posted a request for code to parse a line of text containing Quotes and Commas, the code posted by the gentleman did work for sometime but does not work for the following 104528558,"New iPod FM Transmitter & Car Charger $1Res(E107)","/Electronics-photography/Portabl...more >>

.Net Runtime Errors
Posted by C J. at 6/23/2007 2:22:00 PM
Hi all, I'm not sure if this is the correct forum to post my issue - but here recently I've been noticing .Net Runtime Errors in my Event Viewer. I've posted the most recent occurance below and am trying to figure out what is behind this. (all I've found say the same thing) Event Type...more >>

Save images to memorystream?
Posted by Stupid48 at 6/22/2007 5:58:26 PM
I'm writing a simple screen capture program that is using the Bitmap class to save the capture. I would like to do multiple captures and save them as we go along. I know that I could save them to a temporary folder on the filesystem but is there a way to save them to memory (i.e. memorystream)...more >>

Save images to memorystream?
Posted by Stupid48 at 6/22/2007 5:57:58 PM
I'm writing a simple screen capture program that is using the Bitmap class to save the capture. I would like to do multiple captures and save them as we go along. I know that I could save them to a temporary folder on the filesystem but is there a way to save them to memory (i.e. memorystream)...more >>

Reflection across all assemblies
Posted by Tim Hardy at 6/22/2007 4:21:31 PM
I've been trying to reflect across all assemblies in the running application at Application_Start, but I've been having trouble developing a consistent mechanism. I basically just need to look for all classes that derive from a certain class, as well as classes that contain a custom attribute...more >>

[OT] Bitter about [Lack of] .Net Framework Deployment
Posted by Chris Mullins [MVP] at 6/22/2007 2:20:22 PM
This is a bit off topic, but it's mostly on-topic for this forum and I'm cranky.... I suspect I'll get a bunch of "Me Too!" posts, and no good answers.... Anway. We build products based on the .Net 2.0 Framework. Currently we have a rich IM client that's built on top of the .Net 2.0 plat...more >>

DataTable.PrimaryKey Can I change the values of a primary key?
Posted by NordeDakota at 6/22/2007 10:45:55 AM
Scenario: using .NET DataTable and reading an existing record from MS SQL Database using Ado.Net, and having .Net and SQL define the primary key using FillSchema. When I alter or change the values and I update or AcceptChanges my record is modified as expected in the database. What I'm wonderi...more >>


DevelopmentNow Blog