| Resource (2 replies) |
| microsoft.public.dotnet.academic |
| Hello all does anyone knows how can i edit values on my Resource files progrematcly ??? Thanx Alot!!! |
|
| Any widely used .NET applications out there? (3 replies, VIP) |
| microsoft.public.dotnet.academic |
| As part of my graduate research work in Software Testing I need to indentify and analyze a number of widely used .NET application. Does Microsoft ship any of their products written in .NET? How about other software vendors or even open source tools? Thanks. |
|
| ASP.NET C# Web Application not compiling (2 replies, VIP) |
| microsoft.public.dotnet.academic |
| Hello All, I'm having some trouble with a new .NET application. It's written in C#, every page I add and try to compile doesn't seem to want to compile into the DLL. I get no error messages or warnings when I compile, but when I try and view the page I get the following error message. Parser Error Description: An error occurred during the parsing of a resource required to service this request. Ple... |
|
| Question: column-name header formatting on datagrid (2 replies) |
| microsoft.public.dotnet.academic |
| Hi, In my Windows application executes SQL string(Select TOP 500 * from ...). Selected data populated in datagrid. All of the column names in my tables have leading 3 chars prefixes describing column's datatypes, like intAge, dteDOB, blnEnrolled, so on. How can I trim the leading 3 chars from my column names in my VB.Net application(not on SQL Server side), so it would display DOB, Age, Enrolled i... |
|
| Hey MSFT, what happened to Scheme.net? (10 replies) |
| microsoft.public.dotnet.academic |
| I read this page http://msdn.microsoft.com/vstudio/partners/language/ a few months ago and was happy to find out that Northwestern University was working on a Scheme compiler for .NET. However, the compiler's homepage (http://rover.cs.nwu.edu/~scheme/) it's been the same for months and the author doesnt seem very interested in the project anymore. I was going to download the software but I closed ... |
|
| Wanted: Printable C# coding standards document (8 replies, VIP) |
| microsoft.public.dotnet.academic |
| Hi, does anybody know if there is a printable C# coding standards document? I found C# coding standards in the online MSDN, but it is not convenient to print out the different pages. Any links would be welcome. Regards, Hermo |
|
| GetResponse error occurrence! Help me pls! (2 replies) |
| microsoft.public.dotnet.academic |
| Hello! I want to copy file(s) from network resource and do following: objWebRequest WebRequest.Create(s url) bjWebRequest.Credentials CredentialCache.DefaultCredentials objWebResponse objWebRequest.GetResponse In the last line error (The process cannot access the file '\\ShareDir\database.mdb' because it is being used by another process) occurrence, in the case if the file is already being used (f... |
|
| Timing a functions. (2 replies) |
| microsoft.public.dotnet.academic |
| I want to be able to find out how long it takes a function to complete. I am comparing two different ways of doing things to find out which is faster and how much sub doit Oldway() timer.start .....Do old code timer.end labelOld.text timeelapsed end sub sub doit newway() timer.start .....Do newcode timer.end labelnew.text timeelapsed end sub Thanks for anyhelp. If there is another way of doing the... |
|
| DataSet back to SQL (2 replies) |
| microsoft.public.dotnet.academic |
| Hi all.. I have an object that holds an XMLDocument or DataTable as a collection of items ('ProductsCollection') Once I modify the XMLDocument or DataTable object in the 'ProductsCollection' object, How do I post it back to the database without running over my PrimaryKeys... Ex. the ProductsCollection class holds a number of items returned from a query (let's say 200 items) .. and now after I've m... |
|
| SQL Server2000 login error with ASP.NET (6 replies) |
| microsoft.public.dotnet.academic |
| Could someone please help me out, i have been hitting my head against he wall with this MS SQL 2000 server problem. When i run an .NET Asp project from Visual Studio .Net using VB.net. i get this weird error. ( By the way, i'm using NT Integrated Security, on Windows XP Pro) The funny thing about it is that i can run the exact code for Oracle 9 and MS Access, but when i run it for SQL Server it bo... |
|
| please hepl me in c# programming (2 replies) |
| microsoft.public.dotnet.academic |
| would you please tell me how i can write a progarm which can read all my input data file and sort them in c# programming? i wrote a program which it could read and sorte but it doesn't work for all format please inform me how i can convert that ropram to general program thanks Anahita stracture of my program is: try { string strAdd textBox1.Text; FileStream strm; strm new FileStream (strAdd,FileMo... |
|
| DataGrid Problem (2 replies) |
| microsoft.public.dotnet.academic |
| Hello there, hope I'm in the right place... Wonder if anyone could help me on this as I'm a student new to ASP.NET /VB.NET.... I have a DataGrid that is being populated with data from a 'category' table in an Access database. Using a linkbutton, when the user clicks on a row, I want another aspx page to open displaying a DataGrid populated with products from a 'products' table relating to the cate... |
|
| How to store image in the Databse using VB.Net (2 replies) |
| microsoft.public.dotnet.academic |
| Frenz, Im able to store 'n' retrieve image(I mean Image content) in the Database using SQLDB Adapter... But using OLEDB ADAPTER, Im able to only retrieve the image where as not able to Save the Image (means Image content) in the Database..... Actually, here is the problem : cmd2.Parameters.Add(New SqlParameter("@Picture", SqlDbType.Image)).Value() arrImage where cmd2 is command object 'n' "arrImag... |
|
| Implementing Type safe collections that implement IList (2 replies) |
| microsoft.public.dotnet.academic |
| Hi, I'm trying to implement a type safe Collection class similar to System.Web.UI.WebControls.TableCellCollection that Implements IList, ICollection and IEnumerable. I don't want to inherit from CollectionBase as I need to inherit from something else. eg. Class MySafeClass .... End Class Class MySafeClassCollection Implements IList ICollection IEnumerable .... Default Public Property Item(ByVal in... |
|
| DataGrids and ComboBoxes (2 replies) |
| microsoft.public.dotnet.academic |
| Hi, I'm trying to find out if a Combobox is possible with the DataGrid component. I would like to have comboboxes with a lookup table bound to it in a datagrid. If it is possible, can anyone lead me to the right direction to do my research or provide an example? If not, what is another option in showing comboboxes in a datagrid? Thanks in advance for anyone's help. |
|
| C# Task Manager (3 replies) |
| microsoft.public.dotnet.academic |
| hi all, how can i get all "Applications" && "Processes" at the Task manager? please add some code sample... thankz, Oren |
|
| Using .NET Framework classes as COM objects (2 replies) |
| microsoft.public.dotnet.academic |
| Hello, I want to use .NET Framework classes in COM. Therefore I used the Assembly Registration Tool (Regasm.exe) to register the classes which are contained in Mscorlib.dll (command Regasm.exe mscorlib.dll) as COM object. After that there are a lot of namespaces in the registry. Now it is possible to reference e.g. system.random as COM object. But there are many namespace which are registered but ... |
|
| How works the canConvert... method? (2 replies) |
| microsoft.public.dotnet.academic |
| bool bVal true; string strA "str"; TypeConverter bc TypeDescriptor.GetConverter(bVal); TypeConverter sc TypeDescriptor.GetConverter(strA); // Console.WriteLine(bc.CanConvertTo (typeof(string))); //True Console.WriteLine(bc.CanConvertFrom (typeof (string))); //True Console.WriteLine(bc.CanConvertTo (typeof(bool))); //False Console.WriteLine(bc.CanConvertFrom (typeof (bool))); //False Console.WriteL... |
|
| Caching not possible in WinForms!?!?! (4 replies) |
| microsoft.public.dotnet.academic |
| Hi, You're the last resort here; I have a big Windows application that processes a large amount of data. Biggest of the tables contains over 2,5 mil recs. For some reason, users want to have an option to see all the data at once also(like "select * from tbl"). All of the reasoning to them led to nothing. They want to be able to see over 2 mil rows in the DataGrid. Now, here comes the intresting pa... |
|