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 > december 2003 > threads for friday december 19

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

Using Datagrid only to browse rows
Posted by JC Bertrand at 12/19/2003 11:31:56 PM
Hi, I am trying to build a simple form with a grid to browse a products list / Price / Categories. These info are displayed and sorted. I am ok with this part! But then, I want to add other controls above the Grid to display the detailed information about the selected product (descr...more >>

Compilar options or ngen.exe?
Posted by Ramon Guerrero at 12/19/2003 7:30:08 PM
One thing that bugs me is whether to use the ngen tool or to compile the code to run under certain processors, using the compiler options G5, G6, ect...? Say i deployed an app to a user running a pentium 4 on his computer. I know that the ngen tool is used for start up, but which would c...more >>

Reading Blobs From Oracle
Posted by Ken at 12/19/2003 6:15:22 PM
Hello, I'm trying to read a Blob from Oracle and then write it to an audio file(.AU). I'm using Visual Studio.Net 2003 (VB). I can't seem to get my code to work. Will someone take a look at it and tell me what am I doing wrong. Any help would be appreciated. Thanks Dim Conn As OracleConne...more >>

Enable/Disable RequiredFieldValidator
Posted by Alphonse Giambrone at 12/19/2003 6:04:33 PM
I am trying to enable/disable a requiredfieldvalidator on the client side and am generating an error. I had found some documentation on validation which states that I should be able to enable/disable validators on the client side. http://msdn.microsoft.com/library/default.asp?url=/library/en-u...more >>

Windows Form
Posted by coolwhizkid2001 NO[at]SPAM yahoo.com at 12/19/2003 4:18:06 PM
Hi, I am migrating my code from java applets to .net world. Through researching on net and going through various groups. I see there are two solutions:- 1) J# browser control 2) window Forms. I am sticking to window forms to complete my task. Regarding that I have following questions:-...more >>

Loading assembly dynamically and using it
Posted by KK at 12/19/2003 3:10:19 PM
Hi all Can anybody help me what's going wrong here and how to correct it. Code is as follows.... System::Object * GetObjectFromAssembly() { Assembly * pMyAssembly = Assembly::Load("MyAssembly"); Type * pMyType = pMyAssembly->GetType("MyNameSpace.MyClass"); System::Object * pRet ...more >>

Send ing Email with CDonts and C#
Posted by johnmark1515 NO[at]SPAM yahoo.com at 12/19/2003 2:43:18 PM
ASP.Net, C#, Email message, CDonts not CDO I am writing an ASP.Net application where I cannot use CDO. I must use CDonts. I cannot find an example of this on the Internet. I only see examples on how to do this using CDO. Unfortunately, I don't have that option. I must use C# and CDonts. ...more >>

coding standards - sections in class files
Posted by Jon Paugh at 12/19/2003 2:12:20 PM
Is there a standard for where to put the different categories of code in a class file? For example, after the class declaration, normally I put class variables, then constuctor, then private methods, public methods, then properties etc. Is there a standard for this order? Anyone know of ...more >>



Window NT User authentication
Posted by faridt NO[at]SPAM coned.com at 12/19/2003 11:08:17 AM
I am developing a Windows Form application in VB.NET. In one of the scenario I am getting NT Login ID (other than currently logged-on user) and password from the user. Now I want to verify if provided Login Id/password exists in the network? I got a workaround using ADSI DirectoryEntry/Directory...more >>

License Generator
Posted by askvinod at 12/19/2003 10:42:18 AM
I want to write a License Generator for my company which has 10-15 products. Can I write Secure License generator thru .NET. What is the requirement. I also want some mechanism so that customers can online generate Licenses with the payment. Are thee other third party tools for writing such se...more >>

weird problems with float and double : Why 262.4 - 313.83 = -51.4299927 ???
Posted by Matthieu Tudury at 12/19/2003 10:40:31 AM
Hi, i got a weird problem with decimal numbers, Here is a test sample : float a, b, c; double da, db, dc; da = 313.83; db = 262.4; dc = db -da; a = (float)da; b = (float)db; c = b - a; Console.WriteLine(c.ToString()); Console.WriteLine(dc.ToString...more >>

Configuration
Posted by Brian Stanforth at 12/19/2003 9:00:04 AM
I am creating multiple applications (Web, Console, WinForms) that I want to have common configuration settings between them. I want to use the same configuration file for all applications but I don't want to use the machine.config file. I also am using custom configuration wrappers that ...more >>

Crystal Report w/ADO.NET dataset - logon failed
Posted by Bob Skutnick at 12/19/2003 8:46:07 AM
Help.... I've created an ADO.NET dataset in Visual Studio (a web project). I build the project and then try to create a Crystal Report using the dataset. When I try to use the ADO.NET dataset in Crystal Report (selected from Project Data) by double clicking the dataset name (yes, it do...more >>

Sort with datagrid
Posted by Garry Dawkins at 12/19/2003 8:21:07 AM
I have a page that list table info(Title field, etc...) that needs to be sorted on demand. The alphabet is across the top of the page and by clicking a letter the table needs to be sorted that way. GDawkins *** Sent via Developersdex http://www.developersdex.com *** Don't just participate ...more >>

Errors after VB .net install
Posted by STEVE at 12/19/2003 7:37:28 AM
I have installed VB .net full version on a computer that already had Visual Studio 6 installed. After install I get one error when I try to create a new project. "A dynamic link library (DLL) initialization routine failed". Also when I try to add a form to an existing project( a demo) I get "Unsp...more >>

clipboard operation GetDataObject fails
Posted by chefo NO[at]SPAM bulgaria.com at 12/19/2003 7:13:54 AM
An Exaternal exception "The requested clipboard operation failed " occurs sometimes when I try to get the content of the clipboard via Clipboard.GetDataObject() method.It doesnt occur every time but it comes once in a while. Any ideas how to cope with this? Thanks in advance!...more >>

Populate dataset using collection
Posted by Jaaz at 12/19/2003 3:26:24 AM
Can any one point to a code in which a dataset is populated with a collection....more >>

Error : HTTP download of assemblies has been disabled for this appdomain.
Posted by Silvia at 12/19/2003 2:31:08 AM
I have this code in web.config file <runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <dependentAssembly> <assemblyIdentity name="dllredirect"/> <codeBase href="http://localhost/dllrecirect/dllredirect.dll" /> </dependentAssembly> </assemblyBinding> </...more >>

Excel persists after .Quit()
Posted by Steven at 12/19/2003 1:24:02 AM
Does anyone know whats going on here? I'm filling Excel with data via a VB.NET app, then closing it as follows, but an Excel Object seems to remain alive. Private Function CloseExcel(ByVal strFile As String) As Integer If strFile.Length > 0 Then oBook.SaveAs(str...more >>


DevelopmentNow Blog