Home All Groups Group Topic Archive Search About

.NET Framework

microsoft.public.dotnet.framework
Score .net 2.0 beta 2
Pawel Janowski - 12 Feb 2005 6:22 PM - 5 messages
where is download for this version ? w/regards Pawel ...
Score native .NET equivalent of Microsoft Script Control ?
Mad Scientist Jr - 12 Feb 2005 5:21 PM - 6 messages
Is there a native .NET equivalent of the Microsoft Script Control, particularly the Eval method? See here: [link] It works great - it even compares string expressions. I just would prefer a native .NET version over COM if at all possible. ...
Score Mysteries of a font in the PropertyGrid...
Herve Bocuse - 12 Feb 2005 4:33 PM - 3 messages
I would like to know by what mechanism a font displayed in a PropertyGrid, shows children (like Bold) that correspond to Properties that only have a get, no set. Is there a special class in the framework that gives the PropertyGrid the list of rows to display for the font, ...
Score How to auto-convert types?
Kingherc - 12 Feb 2005 10:07 AM - 2 messages
Well, I'm programming in vb.net and I'm developing a custom class (named XmlEl) that inherits from the XmlElement class. It has a New routine that receives an xmlelement and constructs the XmlEl instance. But in certain occasions I need the machine to auto-convert an xmlelement to an xmlel, ...
Score Assembly resolver, side by side, versioning...
inetmug - 11 Feb 2005 9:27 PM - 2 messages
I have read that you can specify only the major/minor numbers (plus token and culture) to reference a DLL installed in the GAC, and that the resolver will "upselect" to the dll with the latest build and revision number.  Is this ...
Score TcpClient close() method socket leak
Daniel - 11 Feb 2005 9:03 PM - 6 messages
TcpClient close() method socket leak when i use TcpClient to open a connection, send data and close the TcpClient with myTcpClientInstance.Close(); it takes 60 seconds for the actual socket on the client machine to close per my network app the computer fills up w/ ...
Score some questions from a beginner
Wael - 11 Feb 2005 8:45 PM - 3 messages
Hi there, I have some varient questions, and sorry in advance for my novicity.. A- I once had a situation where I had to use an integer type as key in a hashtable. I knew that would involve boxing. The software engineer at my ...
Score selectedindex changed event & oracledatareader problem
drdave - 11 Feb 2005 6:23 PM - 3 messages
Hi, I have a dropdown list (ddljurisdiction) that when the selectedindex changed event is fired fills a oracledatareader that fills other dropdowns.. this works fine on the first event.. however on the form if the user selects another value from ...
Score Remove an element while enumerating through a collection
Edward Diener - 11 Feb 2005 4:28 PM - 6 messages
If I am enumerating through a collection, will removing the entry which is my current one destroy my ability to keep enumerating the remaining elements successfully. In my case the collection is a hybrid dictionary and while I am enumerating the elements I want to remove the current one depending on ...
Score How to get the fully qualified machine name?
kzavalo - 11 Feb 2005 2:49 PM - 2 messages
Is there any way to get the fully qualified machine name? The System.Net.Dns.GetHostByAddress method used to find the machine name sometimes returns NetBIOS names and sometimes returns fully qualified names.  This depends on the machine. In an attempt to always try to get a fully qualified machine name, I ...
Score Custom Attributes on Controls
WFB - 11 Feb 2005 1:20 PM - 6 messages
Hi, Is it possible to use custom attributes on controls?  For example, If I have the following attribute defined <AttributeUsage(AttributeTargets.All)> Public Class MyAttribute : Inherits Attribute     Public Message As String     Sub New(ByVal msg As String) ...
Score Puzzled about the versions and service packs
Pavils Jurjans - 11 Feb 2005 1:03 PM - 3 messages
Hello, I am somewhat puzzled now about the .NET framework installation stuff: There apparently are two minor versions of the framework: ver 1.0, and ver 1.1. There is a version 2.0 in beta stage. Ig I am setting up the .NET framework on a new computer, should I install ...
Score Wrong uri encoding
T. Liebethal - 11 Feb 2005 10:33 AM - 2 messages
Hello, I have a simple but strange problem. I'm creating an Uri with the following code: Uri myUri = new Uri(url); the url string is: [link]" and the Uri object encodes this to: ...
Score .Selected property for listbox does not work
Vipin Kedia - 11 Feb 2005 6:21 AM - 6 messages
Hi    I have written a code for showing the list boxes as selected using a Listitem and the selected property of the items.    Now I have 2 list boxes in my page. But it shows only the selected values ...
Score after opening socket, sending data then closing socket 3000 times i get "Only one usage of each sock
Daniel - 10 Feb 2005 11:48 PM - 4 messages
after opening socket, sending data then closing socket 3000 times i get "Only one usage of each socket address" what am i doing wrong? is there some thing else i need to do to free up the socket after i send data into it? ...
Score Trickey problem with editing enum based properties
thechaosengine - 10 Feb 2005 10:35 PM - 9 messages
Hi all, I have a problem that I havent really come accross before. I need to be able to allow the user to set a dropdown control to a particular colour value. The permissable values come from the Color enumeration and ...
Score typed DataSet not firing RowDeleted
Reader - 10 Feb 2005 10:01 PM - 6 messages
Hello, I have a typed dataset and I have the following loop. foreach (DataTable myTable in DataStore.Tables) { myTable.RowChanged += new DataRowChangeEventHandler( Row_Changed ); myTable.RowDeleted += new DataRowChangeEventHandler( Row_Changed ); } The Odd thing about this is that the program will fire the RowChanged event ...
Score Enterprise Library
Brent Stevenson - 10 Feb 2005 9:31 PM - 2 messages
We are a company whose IT development will be standardized on VS .Net C#. We are reviewing tools that could help with development/standardization and have seen Enterprise Library. Can anyone offer some insight and experiences in using this tool? ...
Score Any Threading Gurus out there?
walterd - 10 Feb 2005 9:03 PM - 11 messages
How can I handle threading in a scenario like the following? The tasks have to execute simultaneously. I need a way of identifying which thread is busy running and its status and also be able to abort or cause one thread to ...
Score MemoryStream??
Charles A. Lackman - 10 Feb 2005 7:52 PM - 5 messages
Hello, I am working on an updater that Retrieves a file from a web page. GetRequest.Method = "POST" SW = New StreamWriter(TheRequest.GetRequestStream) SW.WriteLine(TransferName) SW.Close() TheResponse = TheRequest.GetResponse() ms = New MemoryStream() CopyData(TheResponse.GetResponseStream(), ms) ms.Seek(0, SeekOrigin.Begin) ...
Score Nested GroupBoxes
jagrat - 10 Feb 2005 7:22 PM - 6 messages
I am having a Tab Page where I need to place nested GroupBoxes. Based on an XML file, I get the information about the size, loocation and Name for the GroupBoxes. I create a GroupBoxes and make one as Child of another. ...
Score Embedded curly brackets in a call to String.Format
Chuck Heatherly - 10 Feb 2005 6:24 PM - 6 messages
Hi, I am encountering a serious problem with using String.Format(string format, params object[] args).  If I try to format a string that happens to include curly brackets that are not intended to be format specifiers, then I get this exception ...
Score Visual Studio DataAdapter Wizard
Dennis Johnson - 10 Feb 2005 5:33 PM - 3 messages
I am exploring the possibility of creating a data transforation program that uses an Access Database with some fairly large table schemas. Although Access has no problem with tables containing a large number of fields the Data Adapter in Visual Studio 2003 does. ...
Score Why can't I get a meaningful exception with Activator.CreateInstan
Harry Keck - 10 Feb 2005 4:59 PM - 2 messages
I have a class where I throw an exception in the constructor like this class Foo {   Foo constructor   {     throw new Exception("custom exception")   } } I create an instance of this class with Activator.CreateInstance in a try ...
Score Asociate dinamically an event in VB.NET
Juan - 10 Feb 2005 4:43 PM - 2 messages
Hello: I'm creating some radiobuttons and i want to asociate their events dinamically with a function. How can I do it? In c# there is no trouble, because it can handle with it: radiobutton1.click += new System.eventhandler(this.myfunction); ...
Score Can I remove Framework v.1.0?
WayneM - 10 Feb 2005 4:05 PM - 2 messages
I have v. 1.1 and (English) 1.0.3705 on my system.  Since the latest version of the Framework did not overwrite the old one, is it safe to remove the older version? Thanks in advance, WayneM ...
Score Handling exceptions in a Windows .Net Service
John Marsh - 10 Feb 2005 3:49 PM - 5 messages
Has anybody successfully added a “Catch All” Exception Handler to a Windows Service? I’ve tried adding a handler to the AppDomain’s UnhandledException event. This works Ok in Windows.Net Forms applications, but although this compiles ...
Score .Net 1.1 Sp 1 install failure
David Farrell-Garcia - 10 Feb 2005 3:39 PM - 11 messages
I get the following error when trying to install service pack 1 for ..Net 1.1 framework.  I have un-installed .Net 1.1 and reinstalled it with no problem but continue to get the same error message when trying ...
Score How to extract selective bits from BitArray
skicow - 10 Feb 2005 3:01 PM - 3 messages
Hi, I have a BitArray that contains a value --> 1011001 (89) I want to extract four bits (bits 0-3) of the BitArray --> 1011 (11) Is there an easy way to do this that I'm missing? Or would I have to create ...
Score IList implementation problems (typed collections)
Anon - 10 Feb 2005 2:47 PM - 2 messages
This is the first time I am implementing strongly typed collections. And in order to do this I overloaded the IList functions to implement them ( an explicit interface implementation of IList). All is fine till the point where i want to strongly type the Item property. This is the error it gives me: ...
Score Rounding Issue
MDB - 10 Feb 2005 2:27 PM - 3 messages
I ran into a problem with rounding and was wondering if anyone knows of a work around with out manually rounding numbers.  Math.Round doesn't seem to use the standard in rounding (at least what I have always been taught).  For ...
Score how to run windows applcation in Low CPU Usage mode
aa - 10 Feb 2005 1:06 PM - 3 messages
How to write or config windows application, which it is writen with VB.NET, that when it start it will be in LOW or BELOW NORMAL CPU sage mode. Thanks ...
Score multi threading programming
Guoqi Zheng - 10 Feb 2005 12:39 PM - 10 messages
Dear sir, I am writing an application to process log file. Log files of many of our site are often huge every day. I need the application to process them very quick. That is why I am thinking to use multi thread. ...
Score Message Queueing + Database = Memory Leak??
Marcin Belczewski - 10 Feb 2005 12:04 PM - 3 messages
Hi I have the following code that when being executed results in MemoryStream and XmlTextWriter objects not being Disposed proberly. When text send to queue is quite long it might take 100MB of memory within seconds!!! Looks like memory leak. ...
Score Some questions
philou - 10 Feb 2005 7:43 AM - 2 messages
Hi, I'm a beginner in C# and I have some questions regarding to it. 1. Is it possible to make an ActiveX in C# ? (I think yes but ...) 2. If yes, where can I found example ? Thanks in advance Philippe ...
Score How to migrate Microsoft (Visual basic) apps to a unix O.S.
vivek - 10 Feb 2005 5:11 AM - 4 messages
How to migrate Microsoft Application (Visual basic) apps to Mac Machine thats using Unix Operating System.. Is it possible in Visual Basic 6.0 ?? Is it practically possible in .Net framework 1.1?? Please suggest any solutions. Thanks and Regards ...
Score StrongNameIdentityPermissionAttribute at Assembly level
SA - 10 Feb 2005 12:22 AM - 4 messages
Hi all, (I know this has been asked before, but I could not find a reply.) I want to restrict the callers of my business logic DLL. The assembly should be called only by my service interfaces. However, when I try this (in assemblyinfo.vb): ...
Score Implementing data sharing between processes in .NET
Girish - 9 Feb 2005 10:27 PM - 5 messages
I know how to share data between different processes in WIN32 world. But, I don't know on how to do the same in .NET world. Can you please tell me an efficient way to do it? I appreciate your help. ...
Score Problem with remoting
Verinex - 9 Feb 2005 9:53 PM - 6 messages
Hello all! I am out of ideas.  I have a client\server application that for the most part works just great.  An overview of the architecture is:    +--------------------------+                TCP ...
Score Variable
mgalesic - 9 Feb 2005 8:31 PM - 5 messages
In VB.net How could I access variable in Form2 declared in Form1. Thanks! ...
Score .net in XP, right???
Zorpiedoman - 9 Feb 2005 8:23 PM - 5 messages
Doesn't  the XP operating sytem come with .NET installed??? ...
Score XML string
YuriL - 9 Feb 2005 8:17 PM - 3 messages
Hi, I have an XML string from which I would like to create a DataSet.  This is probably a stupid question, but how do I do this? - The XMLReader objects always expect a stream or file as a parameter, but how do I parse XML from a ...
Score Reflection: Inherited Class Static Method
James Hancock - 9 Feb 2005 7:35 PM - 8 messages
I have a parent class that has a static method on it.  Of course it's inherited by the children which is what I want. However, in that static method, I need to know the child that the method was ...
Score The .NET frameWork and c#
Le_Tue.dk - 9 Feb 2005 4:59 PM - 2 messages
I've board some books, among others the Wiley Black Book, which seems not to work. Have I learned nothing I can use... I thourth U guys from microSoft talk'd, or atleast coordinatet, that stuff like source code not working, ...
Score Security Update for Microsoft .NET Framework, Version 1.1 Service Pack 1 (KB886903)
Drew - 9 Feb 2005 3:52 PM - 10 messages
I installed this update today on my Windows XP SP2, and immediately could not fire up and debug any web apps in VS.NET 2003.  As soon as I hit debug, it immediately pops up a message box that says something to ...
Score Editor Suggestions
Rob T - 9 Feb 2005 3:30 PM - 7 messages
I need to write a 'simple' editor that will allow me to drag/drop different objects.  Basically, I need it to function like a form editor similar how you would design a form in Visual Studio or Access, or work how Adobe ...
Score Looking for suggestions on populating dropdown from database table
pantichd - 9 Feb 2005 1:47 PM - 7 messages
Hello, I want to populate an employee name dropdown in a webform with values from a database table. I know I can use a data adapter to retrieve the whole table into a dataset and bind the table from the dataset to the dropdown. However, I thought I could do it a little more efficiently by using a datareader to retrieve the name and id columns from the table, put them in a collection and then bind the collection to the dropdown. ...
Score Casting double to int
Barry - 9 Feb 2005 12:36 PM - 5 messages
What is the best way to round a double and store it in an int (C#)? I'm currently using intVar = (int)Math.Round(doubleVar); I'm worried that the return value of e.g. Math.Round(2.1) might be ...
Score standalone exe?
Valli - 9 Feb 2005 12:36 PM - 9 messages
Is it possible to convert a small console app in c# to a standalone exe either by converting it to c++ or other ways? Could I compile c++ standalone exe using .Net framework 1.1? Thanks, Regards, Valliappan AN. ...
Score Calling 2.0 from 1.1
Abhishek - 9 Feb 2005 10:02 AM - 3 messages
I've both version 2.0 Beta and 1.1 of dotnet framework installed on my system. I've an assembly which is built on version 1.1 and loads an assembly dynamically reading the location of assembly from the config file. This ...
Score Problems Before/After Uninstalling .Net Framework 1.1 - Please Hel
seatroy - 9 Feb 2005 9:59 AM - 14 messages
OK, my problems all started when I was unable to install the Security Update for Microsoft .NET Framework, Version 1.1 Service Pack 1 (KB886903).  When I tried to install it from Windows Update, it kept failing (note there were ...
Score Raising event from class results in NullReferenceException
Neil Macdonald [Intergraph] - 9 Feb 2005 6:27 AM - 3 messages
OK.. I have a class that runs a process that basically does some connection checking; I have a delegate setup to handle the status update event which will allow the client to give some kind of indication to the GUI. ...
Score Data Access in the Enterprise Library
peterlip - 9 Feb 2005 2:53 AM - 4 messages
The Enterprise Library seems to have a lot of good stuff in it.  However, am I missiing something, or is the Data Access Application Block JUST for Oracle, SQL server & DB2. What about OLEDB for Access DBs???? ...
Score Embedding resource files in CLASS LIBRARY
Marcus - 9 Feb 2005 1:14 AM - 3 messages
I need to embed a couple of XSL files in a .NET class library for deployment reasons. I'd like to be able to just edit the source files and rebuild the library to update the resources (ie no cumbersome multi-step procedure). ...
Score Converting SQL Server "bit" field to a CLR boolean-- has to be a better way
Jim Bancroft - 9 Feb 2005 1:12 AM - 2 messages
I'm using the DataBinder.Eval() method to output the value of a SQL Server bit field.  In order to convert this value to a boolean I go through the machination below.  So far it's the only way I've been able to make this to ...
Score .NET Framework completly meshed-up
hanshantson - 8 Feb 2005 10:42 PM - 2 messages
Hi, I'm running Windows XP SP2 on a tabletpc. After trying installation of SQL 2005 Express, my system is complety meshed-up on framework level. I tried to roll-back without success. At this moment installation of .NET framework via Windows Update fails also. ...
Score FTP
mgalesic - 8 Feb 2005 9:48 PM - 2 messages
Is there an control or class in VB.net what can give me an easy way to program a simple FTP program? Something like inet in vb 6 thanks ...
Score inetinfo.exe
news - 8 Feb 2005 9:04 PM - 2 messages
I have 100% CPU use due to inetinfo.exe when I try to open a project. When I kill the task, the project opens as unavailable. A google.com search shows this as common, but solutions are for Win NT. ...
Score Alert another session, how?
Søren M. Olesen - 8 Feb 2005 8:59 PM - 4 messages
Hi Is it somehow possible to alert all other sessions than the current, that something has changed making all other sessions take appropriate action.... If yes, what should I be looking into ?? TIA Søren ...
Score Determining .NET Install Directories
John Puopolo - 8 Feb 2005 8:57 PM - 3 messages
All: This *should* be a simple question, but I cannot find a definitive answer on the net so.... I have both versions 1.1 and versions 2.0 of the CLR/.NET installed on my machine.  I want to get a list of the root directories under which these ...
Score Apache server
Nick - 8 Feb 2005 8:22 PM - 4 messages
Is it possible to run .Net generated web applications under Apache web server? ...
Score HTML Email
Andrew Robinson - 8 Feb 2005 7:26 PM - 3 messages
I used to use CDO to send HTML embedded emails (including images). I can't seem to get this working using COM Interop. System.Web.Main doesn't seem allow for embedded graphics. Any ideas? I would really like to role my own ...
Score Program error cordbg.exe 0x2
news.sunrise.ch - 8 Feb 2005 5:23 PM - 2 messages
Hello there, sometimes i get the following error message and the program crash, but i have no clue why. After restart the program is runing without any problem. program.exe - No debugger found. : Registered JIT debugger is not available. An attempt to launch a JIT debugger with the following command resulted in ...
Score Add Reference - Location and selection criteria
Glen Flexman - 8 Feb 2005 4:35 PM - 2 messages
Hi, I'm trying to replicate the functionality implemented by the 'add reference' dialog in .net. I've read various articles listing how to find which locations to check for references so that is sorted. However one article says that the following folder is included in the ...
Score Deadlock Problem
Lalit - 8 Feb 2005 4:17 PM - 10 messages
Hi, I have a MDI WinForm Client App. I keep a static Master DataSet and a static Master Hashtable. When I connect to the Server, it sends me a Master DataSet and I copy it to the static Master DataSetand also create a static Master ...
Score MSDN Exception Documentation
Ryan Michela - 8 Feb 2005 3:59 PM - 11 messages
Where can I look in the MSDN to find documentation on what exceptions a class might throw? Looking at the class and method descriptions, it does not seem odvious. Google is not much help either. Thank you, Ryan ...
Score PropertyGrid sees only public properties
Koen - 8 Feb 2005 3:22 PM - 9 messages
The things you can do with a propertygrid are fantastic. Howeveer all properties you want to appear in the grid need to be public and all properties that you want to be editable need to have a set accessor. How can I make my class expose the properties differently for a PropertyGrid ...
Score DataAdapter & SQLClient
Bonato Pierantonio - 8 Feb 2005 2:55 PM - 4 messages
Hi All, I have a problem.... I want to update a table in MS Sql Server using the class SQLClient DataAdapter. I can set the property  UpdateCommand of my DA but I cannot find the method UPDATE ( I use VB.NET) ...
Score Killing a thread started with delegate.BeginInvoke()
Jako Menkveld - 8 Feb 2005 2:50 PM - 10 messages
Is this at all possible? ...
Score Threading and locked objects
Jako Menkveld - 8 Feb 2005 1:17 PM - 3 messages
Is it possible to determine the thread id of the thread that currently holds a lock on an object? I need to do this while debugging because for some reason I get a deadlock and I'm trying to find out where it comes from. ...
Score http/1.1 500
Asher Efrati - 8 Feb 2005 1:13 PM - 3 messages
I have xp pro with VS 2003 (trail 60 day) and installed all component to IIS my tree is c:\inetpup\wwwroot. When I run HTML it's O.K. but... When I try to open a new project,  I got error: ...
Score Proxy exception - HttpRequest
Henrik - 8 Feb 2005 9:57 AM - 2 messages
Hi all,,, How can i tell, if it is the proxy that times out and not the page im trying to request.. I need to now if the proxyserver has been eg. removed/down?? Thanks ...
Score C# Pocket PC and .NET framework
Greg - 8 Feb 2005 7:47 AM - 5 messages
How can I use .net framework with C# in order to program a PocketPc program, while still getting the benfiets of visual creating the windows (like with embedded Visual basic.  o or something)? Is this possiable? Any good documentation on this? ...
Score Capturing unhandled exceptions
Alex Glass - 8 Feb 2005 5:55 AM - 4 messages
I am using a reference to a Library called MySql.Data in my application.  If I run my program on a computer that does not have the library installed, the application throws an exception and a window pops up that says: "Application ...
Score WinForm from VB6/COM?
a - 7 Feb 2005 10:18 PM - 2 messages
Is it possible to call a .NET assembly containing form(s) from COM (VB6).? Jacobus Terhorst ...
Score Error Spawning Process from ASP.NET
hoochiegooch - 7 Feb 2005 10:02 PM - 5 messages
All, I posted a message here recently regarding the difficulty I'm having with CreateProcessWithLogonW() in an ASP.NET application.  I get the following Win32 error: Error 183: Cannot create a file when that file already exists. I thought it was Win2K3 or IIS6 giving me grief, but it ...
Score Parallel HttpWebRequest to the same host
Veronica K - 7 Feb 2005 6:53 PM - 2 messages
Hi, I am sending a time-consuming HttpWebRequest asynchronously and would like to get the current progress. Obvious solution, it would seem, to set progress in a session variable and send the second (parallel) HttpWebRequest to obtain this progress. This does not seem to work for me: the second request returns ...
Score More than one user Service may run within the same process
Nik - 7 Feb 2005 6:11 PM - 6 messages
HI I need some help in writing More than one Service run within the same process I am writing NT service in C#.  And the issue is I am trying to write multiple services with in the same process. I am reading a config file vale ...
Score Custom Attribute to cause Compile Errors/Warnings
Incubot - 7 Feb 2005 5:35 PM - 2 messages
Hi I'd like to create an attribute similar to ObsoleteAttribute, that would cause a compile warning or error. Can anyone help me out on this? thanks ...
Score Can we use COM + services in windows service.......
ajit - 7 Feb 2005 4:03 PM - 3 messages
Can we use COM + services in windows service....... ...
Score Urgent: Creating an Environment Variable (System Variable)?
Saurabh - 7 Feb 2005 2:07 PM - 2 messages
Hi People, I am installing a couple of .NET and non-.NET applications, using a Setup and Deployment Project. I need to create an Environment variable, (System Variable, of System/Global scope is system and not the current process), at the installation time. One ...
Score Reference Counting
MP - 7 Feb 2005 1:40 PM - 8 messages
Hello everyone,     I am an old C++/COM programmer that converted about 8 months ago to C#/.Net, and I have no regrets.     I am now converting our caching subsystem from COM to .Net and I have a ...
Score .net 2.0 class documentation
Paul Cotter - 7 Feb 2005 11:53 AM - 2 messages
Is there a document / location which outlines the .net classes and their public methods. I do not need this to solve a problem, but for self-education. Or is there a preferred book? ...
Score .NET 1.1 with SP1 Integrated
Danny Russell - 7 Feb 2005 10:25 AM - 4 messages
Hello All, I would like a copy of .NET 1.1 and SP1 in one installable package. All I can find on the MS Downloads is .NET 1.1 and then a seperate package for Service Pack 1. Can anyone point me in the dirrection of one package that ...
Score HttpWebRequest POST not working on my VS2003
NativeSun - 7 Feb 2005 9:47 AM - 9 messages
Why is .NET leaving out the POST data on my HTTPWebRequest? I had some code working fine in VS2002 and when I moved to VS2003 it doesn't seem to be adding the POST data.  So I took the same chunk of code and ...
Score copy files between server and client / upload & download with source and target
Manuel Arroba - 7 Feb 2005 9:14 AM - 2 messages
Hi... I am working in an asp.net vb application. The custormer has some txt and zip files that have to distribute between some partners. Each of this partners are in the same company, so security is not an issue. Each of this partners login in the ...
Score Komputer memory
Robert - 7 Feb 2005 8:11 AM - 2 messages
I created control, witch is attached to the other program. When i use metod Dispose or Finalize to destroy some forms and i call the same form again my komputer memory do not have on same level. Komputer memory are growing and ...
Score Can't Login SQL from ASP.NET applications
Herr Lucifer - 7 Feb 2005 6:29 AM - 2 messages
I have SQL 2000 installed and it works fine with windows applications on my hard drive. The problem is that I can't access the same databases with the same login permission from a web application ( using NT integrated authority). The error says: ...
Score DOTNET Framework version
Srinivasa Rao - 7 Feb 2005 5:49 AM - 2 messages
In a side-by-side execution, how can we know that an application is running on a particular version of the .NET Framework ? Regards G.V.Srinivasa Rao ...
Score A Wish.....
Peter Kenyon - 7 Feb 2005 2:08 AM - 7 messages
Hi, I see that it's possible to apply attributes to function parameters. Wouldn't it be great if the compilers could use these to generate borderplate code, such as parameter checking. Eg instead of typing void MyFunction(string param1, int param2) ...
Score Visual Studio 2005 availability?
Kerem Gümrükcü - 6 Feb 2005 6:29 PM - 10 messages
Hi there, does someone know when Visual Studio 2005 will be available...? Regards Kerem Gümrükcü ...
Score getting exception information
z. f. - 6 Feb 2005 10:28 AM - 2 messages
Hi, i have a asp.net vb.net web appliation. it is compiled to release build with debug information. i have module to analyze errors in application_onError to trap all errors in my code and report to me. when i have error it is shows in internet explorer with the line numbers of the code that is available. ...
Score Need Dynamic Button Sample
LW - 6 Feb 2005 12:21 AM - 9 messages
Hi! I am new to .NET so would appreciate some help. I am looking for an example of dynamic button creation. There are a lot of references to it on the postings but I was not able to find examples on how ...
Next » 2 3 4 5 6 7 8 9 10