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
May 2008
June 2008
all groups > dotnet framework > april 2004 > threads for thursday april 29

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

get class from name
Posted by Joshua Ellul at 4/29/2004 8:52:39 PM
Hi There, Could someone tell me how I can get a class from its name? Regards, Josh ...more >>


adding a resource to an exe and using it
Posted by Joshua Ellul at 4/29/2004 8:47:42 PM
Hi There, Could someone tell me how I could add an image to my exe as a resource and use it? Thanks, Joshua ...more >>

Net Framework Configuration window
Posted by Howard Kaikow at 4/29/2004 6:36:53 PM
I use a desktop shortcut to open a Net Framework Configuration window. 1. Even tho I changed the shortcut's properties to open maximized, the window opened is still rather small. 2. How does one adjust the window so it automatically opens with a larger left pane showing the tree? -- http://...more >>

posting daqta to an asp.net page from a console application
Posted by Ollie at 4/29/2004 5:41:55 PM
I have an aspx page that contains a web control that contains 2 text boxes and button to submit the text. I am trying to submit text and collect the response from a console application, but it is not working correctly it is just returning the original page I am expecting it to return the a subse...more >>

sharing the MSDN library (documentation)
Posted by AA at 4/29/2004 3:42:27 PM
Hello.. In my work we are 6 developers We have 6 Visual studio license (one for each developer) Because of the size of the documentation (1.4 GB) we want to install the msdn library (visual studio documentation, framework etc) only in the main Server. So each developer can access using his ...more >>

Could not find installable ISAM.
Posted by Brent at 4/29/2004 3:30:38 PM
Hi, my asp.net c# app is trying to connect to an Access database with a password and am I getting the error.. Could not find installable ISAM. . If I connect to one without a password it works fine. I've looked at Q209805 but I don't think that helped. Oledb connection. Here is the one that works...more >>

ASP.Net Session State Problem with IIS6
Posted by JK at 4/29/2004 1:26:02 PM
We recently installed our web application on Windows 2003 and found that our ASPX pages are not coming up correctly. We are using sessionstate=StateServer and cookieless=true for Web.config. Applications run perfectly in Windows2000 or XP but in Windows2003 under IIS6 we do not see any of our ima...more >>

Creating a assembly with a COM interface
Posted by msnews.microsoft.com at 4/29/2004 11:19:00 AM
Hi all, I am writing a COM aware C# lib. In this lib I want to create an assembly that defines a COM interface and only a COM Interface. When I do this and try to registist the assembly I get the error "COM Interop registration failed. There are no registrable types in the built assembly." ...more >>



Ctype Namespace
Posted by Vinod Jajoo at 4/29/2004 11:09:36 AM
When using CType(e.Item.FindControl("imgProduct"), System.Web.UI.WebControls.Image).ImageUrl I am getting following error : c:\inetpub\wwwroot\BoTree\products.aspx.cs(132): The name 'CType' does not exist in the class or namespace 'BoTree.products' Thanks Vinod Jajoo ...more >>

Format strings and numbers
Posted by PMcG at 4/29/2004 10:41:04 AM
Is it possible to format a numeric value where it does not round the value, ie if i try to format 2.59 to 1 decimal place using Console.WriteLine(2.59M.ToString("0.0")); i get 2.6, i have looked in the SDK docs and have read the following paragraph which explains the above behaviour, if anyone knows...more >>

.NET control event with java script handler
Posted by Mircea Pleteriu at 4/29/2004 9:54:34 AM
Hi all, I have created a .NET Windows control with c#. I have placed the control on a HTML page within the OBJECT element. Everything works fine up to now. Now, I wanna implement the following stuff that the control must support. The control must provide a method called InvokeJavaScriptFu...more >>

.Net Framework Download Problem
Posted by Steve at 4/29/2004 9:47:58 AM
When I download the SDK Framework 1.1 and install, it seems to be missing most of the framework tools. I have, for example, CasPol.exe but not sn.exe. I'm also missing the SDK directory. Why? I'v tried download and installation of redistributable package and framework twice General...more >>

Creating a Folder ASP.Net
Posted by sdavenport NO[at]SPAM sigcom.net at 4/29/2004 9:09:27 AM
I am using the following code to create a folder: FSO = Server.CreateObject("Scripting.FileSystemObject") Folder = FSO.CreateFolder("c:\" & Me.textbox1.Text & "_" & Me.textbox2.Text & "_" & newString) I have no problem creating the folder on a local drive. However, when I attempt to create...more >>

DataView does not exist error
Posted by Steve Bishop at 4/29/2004 8:03:32 AM
I'm getting an error that my view does not exist. I get this error when trying to bind to a text box on my form: Help apprecaited. Thanks. Compiler Error Message: CS0103: The name 'dv1' does not exist in the class or namespace 'ASP.Relation_with_txtBoxes_aspx' Source Error: Line 87: ...more >>

Outgoing e-mail scan causing exception
Posted by Earl at 4/29/2004 3:18:49 AM
I've got a little utility to send documents from within my program, but one issue I have not been able to overcome is that it throws an exception when the anti-virus scans it before sending. Anyone have an idea how to overcome this (without disabling the outbound e-mail scan)? ...more >>

Array Serialization
Posted by S at 4/29/2004 2:00:17 AM
Hi there, Here's a question for ya: I'm serializing something that looks like this: [XmlRoot(ElementName="Widget")] Class Widget --> My base class [XmlArray(ElementName="TextGroups")] [XmlArrayItem(ElementName="TextGroup",Type=typeof(ClassTextGroup))] ...more >>

Net Framework Versions
Posted by Radu at 4/29/2004 12:39:33 AM
Hi. I have the following problem.... or is it a problem ? I have bough a new computer with XP and Net Framework 1.1 already installed. Then I installed VSNet, which asked me to insert the VS Component Update cd. Well, after the installation ended, I found that I have two versions of Net Fram...more >>


DevelopmentNow Blog