Home All Groups Group Topic Archive Search About

.NET Framework

microsoft.public.dotnet.framework
Score ObjectDisposedException if USBtoSerial Port is unplugged
rfw68 - 30 Sep 2006 10:17 PM - 5 messages
Hello, I'm writing an Application for a serial device, which is using a USB-to-Serial Converter. I'm polling that device for new data every 500 ms. So this is working fine. But if the customer unpluggs the USB-to-Serial Converter, I get an ...
Score Error opening database
Steve Barnett - 30 Sep 2006 1:12 PM - 2 messages
I've developed a test application on my PC that uses the JET Engine. The connection string is very basic and is constructed as follows:     connectionString = String.Format("Provider=Microsoft.Jet.OLEDB.4.0;Data Source='{0}'", modelName); ...
Score How to pass a Dataset as a parameter to a WebService
Poornima - 30 Sep 2006 8:10 AM - 3 messages
I need to pass a DataSet from my windows application in vb.net to a webservice . Thanks In Advance ...
Score HTMLTextWriter... and to read?
Andrea Raimondi - 30 Sep 2006 7:51 AM - 3 messages
Hello, I'm using dotNET 1.1 and I found this wonderful class, HTMLTextWriter, which is half of what I need :D I also need an HTMLTextReader but, judging from the help files, it's not there. Any suggestion on what the correct class name may be? ...
Score SQL Connection Query
Poornima - 30 Sep 2006 6:36 AM - 2 messages
Hi I have a windows application in VB.net which creates a dataset and updates the dataAdapter by connecting to the SQL Server 2005 and sends the dataset as a parameter to my webService.My code is Dim strCon As String ...
Score Installing .net framework 3.0
David Houliston - 29 Sep 2006 9:53 PM - 3 messages
The uninstall tool indicates that all previous installs have been uninstalled. The download of 30MB but then just as the installation starts I get the error log: [09/29/06,21:45:35] VS Scenario: [2] CPrevProductInstalledCheck failed : <font face=Verdana size=8pt> ...
Score SqlDependency OnChange event passed options in SqlNotificationInfo
AlanChen - 29 Sep 2006 8:43 PM - 1 message
Hi, I used "using sqldependency in a windows application" example from MSDN with little modification on the database and table (use my own table). But it didn't work! The OnChange event handler did get fired but the SqlNotificationEventArgs e has the SqlNotificationInfo as "options". I ...
Score Async Ado.Net Operations (Begin/End OpenConnection)
Chris Mullins - 29 Sep 2006 8:29 PM - 2 messages
We're building high performance database applications, and are trying to use all the new Async ADO.Net 2.0 features. The problem we're having is that we can't find a SqlConnection.BeginOpen/EndOpen method. We can execute everything using the ...
Score Floating Point Calculation Problem
DJ - 29 Sep 2006 8:16 PM - 4 messages
Hello, In an application that worked fine until recently I have started to have problems with calculations involving two doubles.  For example: -24.708 + 26.0 = 1.2920000000000016, however,  -24.708 + 8.0 = -16.708.  What would ...
Score listbox drop style
GS - 29 Sep 2006 6:09 PM - 5 messages
in visual studio 2005 express VB I found mention of drop style for listbox but so far my searches came up empty as to how and what they are. I was to set height and I figure I can probably do something with setting ...
Score File handles not being released
ggruber - 29 Sep 2006 5:48 PM - 1 message
I have a Windows Service written in C# that acts as file transport function. it moves files from a staging area to a production area for consumption by third party software (Cognos Reporting). since I must have exclusive access to these files (in the production area) ...
Score String -> StringBuilder Optimization
Michael D. Ober - 29 Sep 2006 3:52 PM - 10 messages
OK, I can't figure out a way to optimize the following VB 2005 code using StringBuilders: Public Const RecSize as Integer = 105 Private buffer As String Public Sub New()    init End Sub Public Sub New(ByVal value As String) ...
Score ASP.NET web farm with Oracle - design and deploy
yoram.ayalon - 29 Sep 2006 3:08 PM - 2 messages
We have a web application running on classic ASP, where the session is maintained in the Oracle DB, so every page redirect/form submit can switch servers without any problem we are looking now at writing a .NET application on the farm using same ...
Score regex expression
GS - 29 Sep 2006 2:09 PM - 10 messages
what is a good general regex expression for html <img ....> tag? I tried "<img [/:.a-z =0-9\""_;&]*\->", RegexOptions.IgnoreCase) but it is not quite working thank you for your time ...
Score BinaryFormatter.Deserialize and Smart Clients
Lambuz - 29 Sep 2006 1:37 PM - 3 messages
Hi all, I'm triying to create a prototype of a smart client that using .NET Remoting. I've got an assembly loaded into an HTML page by a tag object <OBJECT id="myID" height="150" width="300" classid="http:bin/CPRSWebClient.dll#IBM.Cipros.Refinery.CPRSWebClient" ...
Score Problem solved
Harald - 29 Sep 2006 12:26 PM - 1 message
Hi, seems to be caused by an expired SSL server certificate. - Harald ...
Score DataGridView vertical scrollbar freeze
Oyvind Eriksen - 29 Sep 2006 12:25 PM - 2 messages
Hello. I have an application that includes a DataGridView. This application load data into a DataTable based on mpeg audio files which the application validates. Since this can take some time (specially if you choose several large files) the void which load the data runs on a seperate thread. ...
Score ABC
hkhellhkhell - 29 Sep 2006 7:54 AM - 1 message
科大computer science垃圾 係香港一間IT公司,叫Advanced Telesoft, 有個ap叫Dan, 呢條友好唔掂, 新員工入到黎唔夠一個月, 就係高層面前話佢"好似乜都識, 實情乜都唔識". 人地入黎都無一個月, 你又點知呀, 同你好熟呀. 就算係, 你身為一個男人, 洗唔洗做呢野呀, 你唔信, 咪堂堂正正考下人羅. 呢條友係IT界人粉, 請forward ...
Score Very large arrays and .NET classes
Peter Duniho - 29 Sep 2006 5:49 AM - 11 messages
This is kind of a question about C# and kind of one about the framework. Hopefully, there's an answer in there somewhere.  :) I'm curious about the status of 32-bit vs 64-bit in C# and the framework ...
Score Is new & free in CLR heap fast?
Hyun-jik Bae - 29 Sep 2006 4:01 AM - 2 messages
I am a newbie in C# programming. I've been working in C++ language for some years. The new/delete statement in C++ is rather slow so it is recommended using static data structure in some cases which require very fast performance as ...
Score Algorithm of lock (obj) { ...} statement in C#
Hyun-jik Bae - 29 Sep 2006 3:56 AM - 2 messages
What is the algorithm of lock(obj) { ... }? The statement above roughly makes me guess that the lock/unlock algorithm in CLR is inefficient because it adds a critical section for each CLR object instance. Am I right? Please reply. Thanks in advance. ...
Score shared object in GAC across processes
Amil Hanish - 29 Sep 2006 3:19 AM - 2 messages
Is it possible, using static properties, to have a shared object in the GAC that can be accessed by differnet processes?  If so, how?  If not, how can I have a shared .NET object that can used by different processes? ...
Score 科大UST computer science垃圾 ---> Dan
hkhellhkhell - 29 Sep 2006 2:37 AM - 1 message
科大UST computer science垃圾  ---> Dan 係香港一間IT公司,叫Advanced Telesoft, 有個ap叫Dan, 呢條友好唔掂, 新員工入到黎唔夠一個月, 就係高層面前話佢"好似乜都識, 實情乜都唔識". 人地入黎都無一個月, 你又點知呀, 同你好熟呀. 就算係, 你身為一個男人, 洗唔洗做呢野呀, 你唔信, 咪堂堂正正考下人羅. 呢條友係IT界人粉, è«‹forward ...
Score .Net 2.0 Hashtable Insert Failed. Load factor too high
Ranga - 29 Sep 2006 1:49 AM - 2 messages
Hi, I am currently getting System.InvalidOperationException: Hashtable insert failed. Load factor too high error.  I noticed that this only seems to happen, when we are trying to do run a Stress Tool with a few users(5-10).    ...
Score dollar sign ($) changed to a strange character
bhughes10 - 28 Sep 2006 11:51 PM - 4 messages
I saw a question from Norman Yuan several months back with the same problem I'm having now. Never saw an answer. My currency that should be displayed as $200.00 is displayed as ¤200.00 randomly  when my production server is under load. It doesn't happen on the ...
Score Programmatically checking a DataGridViewCheckboxCell
CJM - 28 Sep 2006 10:36 PM - 3 messages
I can't for the life of me figure out how to check or uncheck a cell programmatically. I've looked in Lutz's reflector to see how the control is doing it and it calling an UpdateButtonState method that I ...
Score Web Browser Control question!
Mateusz Rajca - 28 Sep 2006 9:28 PM - 1 message
Hi! Is this possible: Cancel the file download event (when the file download dialog popups up) and handle the url of the file to be downloaded in a custom way? ~Matt ...
Score Is al.exe redistributable?
mbhansen - 28 Sep 2006 7:47 PM - 2 messages
We have a utility that creates a resources.dll on the users computer. Can anyone tell me if .Net Framework SDK tools, like al.exe, can be distributed with .Net applications?  Thanks, MattH ...
Score Custom Collection Editor - how to block the up and down buttons ?
Robert R. Richter - 28 Sep 2006 7:22 PM - 6 messages
I have a Custom Collection Editor and overridden some methods - everything works fine... BUT I now want to block the up and down buttons, so the User won't be able to move the Collection Items within the Index. Is there any possibilty by overriding a method so it won't move the ...
Score Customize html output of WebBrowser Control or Get Cursor Position
ASP Developer - 28 Sep 2006 4:26 PM - 2 messages
I followed the following example to create an html text editor.  [link] It works great but when you press enter in the text box the control inserts p tags instead of br tags.  So you end up with double spacing throughout the ...
Score Cursor Position of WebBrowser control
ASP Developer - 28 Sep 2006 2:14 PM - 4 messages
Is it posible to get/set the cursor position of the webbrowser control?  With a regular text box you can use the SelectionStart property.  Any help would be greatly appreciated. ...
Score Jscript Stack Overflow on 2003 Server
Confused in Georgia - 28 Sep 2006 1:12 PM - 2 messages
I have some Jscript compiled code the works on XP but gets stack overflows on my 2003 server. The Jscript code uses recursive calls. If the nember of levels is more than 4, I receive a stack overflow. On the XP (using same .dll compiled code, .net ...
Score XmlWriter do not use settings specified in XmlWriter.Create
av - 28 Sep 2006 8:55 AM - 2 messages
hi all, please review the following code snipped, my goal is just to transform a document. The problem is that XmlWriter.Create do not honor passed Trans.OutputSettings. The debuggin shows that Trans.OutputSettings.Encoding is set to {System.Text.UTF8Encoding}, but OutWriter.Settings.Encoding is ...
Score How to get the same assembly using ICodeCompiler or AssemblyBuilder
ginnone - 28 Sep 2006 8:08 AM - 1 message
Hi. I need to create an assembly dinamically, using AssemblyBuilder etc. The resulting assembly must be te same I would get if I compiled such a ..cs file. I don't want to use ICodeCompiler as I don't have the .cs file, but I ...
Score Loading the existing AppDomain
Debasish Pramanik - 28 Sep 2006 5:35 AM - 2 messages
Hi All, I have created an App Domain in a process on the first request. Now I would like  retrieve the same AppDomain everytime there is certain type of request. Is it possible? ...
Score How to consume a webservice in a device application
Poornima - 28 Sep 2006 5:25 AM - 1 message
Hai,      In my  Windows CE device application, i need to send some records from sql server mobile to desktop sql server.        For that, i created one webservice, when i am calling this ...
Score Hybrid Windows Service + Console App
Chris Mullins - 28 Sep 2006 4:52 AM - 4 messages
For some reason the question, "Can I make an EXE that is both a Windows Service and a Console Application?" has come up quite a bit for me over the last few weeks. I've been doing this for years, but for some reason I've never seen it ...
Score Remoting over SMTP channel
Hardy Wang - 27 Sep 2006 11:54 PM - 2 messages
Hi all,     I read I can use SMTP channel to send SOAP message. But what is the benefit of using SMTP instead of TCP, HTTP? Hardy ...
Score Deployment project doesn't build correctly
moverdear - 27 Sep 2006 6:50 PM - 1 message
VS 2003 Pro running on XP I have created a setup and deploy project for my project.  I have added 'Content files', 'Localization resources', and 'Primary output'. I get warnings when I build the project: WARNING: Two or more objects have the same target location ...
Score Deployment project doesn't build correctly
moverdear - 27 Sep 2006 6:50 PM - 1 message
VS 2003 Pro running on XP I have created a setup and deploy project for my project.  I have added 'Content files', 'Localization resources', and 'Primary output'. I get warnings when I build the project: WARNING: Two or more objects have the same target location ...
Score Deployment project doesn't build correctly
moverdear - 27 Sep 2006 6:49 PM - 1 message
VS 2003 Pro running on XP I have created a setup and deploy project for my project.  I have added 'Content files', 'Localization resources', and 'Primary output'. I get warnings when I build the project: WARNING: Two or more objects have the same target location ...
Score Problem with .NET object registered in COM+
eric.goforth - 27 Sep 2006 5:58 PM - 3 messages
Hello, I have a .NET object that's registered in COM+.  I'm calling it from a VB6 dll that's registered in COM+ like so: Set objEFV = CreateObject("MyDotNetDLL.MyClass") strResult = objEFV.DoMyMethod(Param1, Param2) I think it's registered correctly.  I generated a .tlb file for it on ...
Score interval when GC is run
Roger - 27 Sep 2006 5:53 PM - 8 messages
What is the interval when garbage collection is run and is there a way to monitor it through Perfmon? ...
Score FileSystemWatcher create event Is a File or Directory
Jerry C - 27 Sep 2006 5:50 PM - 3 messages
Does the file system watcher have a why to tell if a file or directory is created. ThaFileSystemWatchernk you ...
Score Deployment of ActiveX with ThirdParty Control(COM) on ASP.Net
vishal868 - 27 Sep 2006 4:37 PM - 4 messages
Hi, Can anybody please help me out to solve this problem. I try to find the solution of it all around but i m not able to get it from anywhere. I have created on ActiveX control in VS 2005. I have put one Third ...
Score software for sale
tompoconnell - 27 Sep 2006 3:57 PM - 1 message
I'm selling a bunch of software i never used.  I orered it through school and never ended up opening most of it.  Here is the link: [link] ...
Score System.ExecutionEngineException
anand.m.s - 27 Sep 2006 2:32 PM - 1 message
Hi, I have a direct reference to a VB6 COM component in my C# application. During runtime, the methods I call on the COM component get executed fully and but when returning to the calling .Net component, throw an ExecutionEngineException. ...
Score iterator in Dictionary<>?
Hyun-jik Bae - 27 Sep 2006 12:03 PM - 4 messages
Is there anything correspondant to the iterator for Dictionary<>? For example, something which is similar to std::map::iterator in C++? Reply please. Thanks in advance. Hyun-jik Bae ...
Score Remoting serialization fails with custom object
Greger - 27 Sep 2006 11:44 AM - 4 messages
Hi, I have a client application that is using remote objects from a IIS. Everything works fine when using this from my code. However. When a word add-in loads my code the request fails with a message that it can not find the a assembly. ...
Score HttpRequestCachePolicy & WinINet in .NET 2.0 Framework
Roger Down - 27 Sep 2006 11:07 AM - 1 message
I have been using the WinINet caching feature in some of my .NET 1.1 applications. This was achieved by wrapping some of the methods in the WinINet library. When .NET 2.0 was released I read that it would include http web client ...
Score WebServices Query
Poornima - 27 Sep 2006 4:32 AM - 2 messages
I have a device application with a database in it.I want to push the tables from this database to the one in Remote SQL Server.I have written the both the devce and the Windows application in VB.net. ...
Score StreamReader.Peek Timeout
Bishop - 27 Sep 2006 3:01 AM - 7 messages
I'm trying to use the StreamReader to read messages from a newsgroup but after downloading several messages it will get stuck on the streamReader.Peek line and never timeout (or at least not after 12 hours) Any suggestions on how to timeout? ...
Score Event problem with VS 2005
Roger Crawfis - 27 Sep 2006 12:56 AM - 1 message
We upgraded our volume renderer to 2005, but it crashes with our event system when using the OneWay attribute. We get a null exception as outlined below in a ListDictionary with a count of zero. This is not our data structure, but appears to be the ThreadPool classes instance. Of course ...
Score changing the value of parameters in constructor
nick1510 - 26 Sep 2006 8:40 PM - 3 messages
Hi, I want to create a new constructor in a class that inherits from another... in VB.Net I still want to call the base class after some code has 'manipulated' the parameters VB is telling me i carn't as MyBase.New needs to be the first call in the ...
Score DotNet ActiveX Equivalent ?
craigkenisston - 26 Sep 2006 7:08 PM - 2 messages
I have a website which currently uses an ActiveX component made in Delphi. The ActiveX provides a simple but nice functionality to the website. Recently, it was ported from the old Asp, to Asp.Net 2.0. I was wondering, if I want to replace the Delphi ActiveX component, what ...
Score Opposite of string.split?
Bruce Hendry - 26 Sep 2006 5:31 PM - 3 messages
Any built in framework function that takes a string array and converts it back to a concatenated string with a delimiter? Thanks. ...
Score HtmlDocument help
Le Minh - 26 Sep 2006 4:43 PM - 1 message
Hi, i want to write a program. Input of this is HTML source code of a web page and output is a treeview representation it structure. I want to write it with HtmlDocument in .net framework 2.0. how i write it? ...
Score SqlDateTime overflow if I use .NET remoting on Windows XP
Mike9900 - 26 Sep 2006 4:20 PM - 1 message
I am getting SqlDateTime overflow if I use .NET remoting on Windows XP and Windows XP is the server where the SQL server is located at.  If my computer is Windows 2003 where the sql server is running and I use client as the ...
Score Development Type
Jon Vaughan - 26 Sep 2006 4:02 PM - 5 messages
Hi, I design programs starting with the database and once I have a solid database I buikd the classes from these and work my way upto the interface ? is there a name for this development style ? does it fit into top - down , ...
Score Uploading big files
ThunderMusic - 26 Sep 2006 3:17 PM - 9 messages
Hi, I'm currently building a little web site for me and my friends where we would like to be able to post big files (10Mb to 250Mb approx.) Right now the ASP.Net UploadFile control can't do it as we are limited 1) by the ...
Score How do you uncheck "User cannot change password" and "Password never exipers" attributes in vb.net
TheVillageCodingIdiot - 26 Sep 2006 3:08 PM - 1 message
Does anyone have any code that can do this. From what I understand, these are flags in the "userAccountControl" properties but unsure how to get it unchecked. Can anyone help? Imports System Imports System.DirectoryServices Namespace ActiveDirectorySearch     Public Class ADSearch ...
Score GAC - Re-installing new DLL
TMesh - 26 Sep 2006 3:04 PM - 2 messages
Hello I am having an issue with re-installing a DLL with the GAC.  When I modify the DLL, I first unistall the assembly by right clicking on the assembly and select uninstall.  I then copy the modified DLL to the ...
Score savefiledialog for webforms
kollatjorva - 26 Sep 2006 2:34 PM - 2 messages
hi I have a web page with displays informations from an xml. On the same web page is a "save xml as" button and when the button gets fired, I want to display a save as dialog for the user to save the xml in a file ...
Score IIS crashes
Kuchen - 26 Sep 2006 2:01 PM - 2 messages
Hi there, I've got  an IIS webserver running on a WIN 2000 Pro machine w/ installed NET Framework 1.1 hosting an ASP.NET application for more than one year - working perfectly. No changes to the system or the app. ...
Score Trying to use an Ldap-Connection (VS2005, C#, .Net 2.0)
Harald - 26 Sep 2006 12:08 PM - 2 messages
Hi, I try to read some data from a server using LDAP with the System.DirectoryServices.Protocols types. I startet with: .... string server = "servername.intern.MyCompany.de:52000"; LdapDirectoryIdentifier ldapDir = new LdapDirectoryIdentifier(server, false, false); LdapConnection ldapConn = new LdapConnection(ldapDir); ...
Score visual studio setup project gone horribly wrong
Liming - 26 Sep 2006 10:30 AM - 2 messages
Hi, I was testing out a simple project and I did a "setup" project for my simple application. After installed the application, everything went horribly wrong. All my other applications executable has been "hijacked". Whenever I click any program, my simple application got launched. ...
Score Specify a server in DNS class?
Ron Lautmann - 26 Sep 2006 9:34 AM - 1 message
How can you specify a non-default DNS server to be used in GetHostEntry, for example? This is like the functionality that can be used with the nslookup server subcommand. ...
Score .NET 3.0
Prem Kumar - 26 Sep 2006 8:54 AM - 5 messages
Hi I just thought of writing my MCTS exam, which targets .NET 2.0. However, i also came across many info on .NET 3.0, now this just makes me to think, whether should i go ahead and do MCTS? Any idea when is 3.0 getting released ...
Score .NET 3.0
Prem Kumar - 26 Sep 2006 8:51 AM - 1 message
Hi ...
Score How to programmatically change which framework a web site should use
Angelo Brusati - 26 Sep 2006 7:33 AM - 4 messages
Hi everybody Do you know how to change which framework a web site should use - programmatically? For example: my web server has both Framework 1.1 and 2.0. My installation/deployment program has to set a specific web site to run under Framework 2.0. ...
Score Version 1.1
Perry - 26 Sep 2006 3:30 AM - 3 messages
Do I need version 1.1 and it's service pack if I install version 2? Thanks in advance. ...
Score About DataGridView control's issue
Steven Shi - 26 Sep 2006 2:50 AM - 1 message
Hi, all I want to customize the column of DataGridView as a DataTimePicker control in a windows form, how to do this? Could you give me several samples of VB.net? Thanks in advance. Steven ...
Score About DataGridView control's issue
Steven Shi - 26 Sep 2006 2:48 AM - 3 messages
Hi, all I want to customize the column of DataGridView as a DataTimePicker control in a windows form, how to do this? Could you give me several samples of VB.net? Thanks in advance. Steven ...
Score About DataGridView control's issue
Steven Shi - 26 Sep 2006 2:48 AM - 1 message
Hi, all I want to customize the column of DataGridView as a DataTimePicker control in a windows form, how to do this? Could you give me several samples of VB.net? Thanks in advance. Steven ...
Score Cannot connect to Remote Debugger
JP - 25 Sep 2006 10:23 PM - 1 message
After running IIS_REG for .NET 2005 Framework version 2,   I enabled the Remote Debugging Monitor (RDM) I added our development group to the local policies to allow the RDM to run as a service instead of a local application like the MSDN site says. ...
Score DirectorySearcher.Filter doesnt seem to work
TheVillageCodingIdiot - 25 Sep 2006 9:40 PM - 2 messages
Im creating a app that will go through all the OU's and look for a certain user by username. In doing some testing I noticed that its not filtering everything out exept for user ObjectClass. It seems to be ...
Score Animated Toolboxes
gyoder - 25 Sep 2006 9:14 PM - 1 message
How do I create animated toolboxes similar to the ones in the Visual Studio IDE? I'd like to add animated toolboxes to the right side of my application like the Properties, Solution Explorere with my own content. Are there ...
Score Using ConfigurationManager/ConfigurationSettings to retrieve settings returns null values
Keith - 25 Sep 2006 8:43 PM - 4 messages
Hello, Using VS2005, I have a Windows Forms app that uses the default Settings.settings file.  When the app is built, the properly-named app.settings file is built into the output directory, and it contains the correct application-level settings.  Controls in the app that are bound to ...
Score too many using (imports in vb)... does it hit on performance or memory usage?
ThunderMusic - 25 Sep 2006 7:47 PM - 4 messages
Hi, I want to know if having to many using (imports in VB) statements at the top of a class or page can hit on the performance of the application or on the memory usage of the application. I use ASP.NET framework v2.0...  When creating a web page there are about ...
Score URGENT: How to copy a .dll from the GAC?
Dave - 25 Sep 2006 7:47 PM - 2 messages
I need to copy Microsoft.ReportViewer.ProcessingObjectModel from the GAC but I can't figure out how to do that. What happens if I uninstall it from the GAC?  Does it disappear completely from the system or is a copy made somewhere? ...
Score searching for a user in active directory by username
TheVillageCodingIdiot - 25 Sep 2006 6:54 PM - 2 messages
Im creating a app that will pull a list of usernames in a txt doc and then find them in active directory and set the "User must change password at next login" attribut. I would like to limit it to a ...
Score vb 2005 compiler error as per kb 915038
Raymond Maillard - 25 Sep 2006 5:43 PM - 4 messages
I am currently getting the error described in the above kb article. Does anyone have the fix file suggested in the article that can be e-mailed to me? Regards ...
Score UML Book Suggestions
Curtis Justus - 25 Sep 2006 4:41 PM - 4 messages
Hello everybody, Until now, our company has not required us to use UML.  I am looking for some suggestions of some books that might help me to get up to speed. There are two books I am looking at: ...
Score Error with GetAccessControl()
Ryan - 25 Sep 2006 3:48 PM - 5 messages
Hi, I've written a very quick console app to recursive through a directory tree and display directories that have explicit file permissions (code below).  It works, but GetAccessControl() fails on some folders (always the same) with the error: ...
Score need help writing query
absoft - 25 Sep 2006 2:30 PM - 3 messages
I have a mapping table that I need to query to generate my report. The table structure is as below: Mapping table m_id      m_table   m_dept     org    dept         id      table ...
Score ApplicationError on mscorwks.dll (1.1.4322.2300)
Stephane - 25 Sep 2006 1:16 PM - 1 message
Hello,     One of my services, under w2k3 SP1 & .Net 1.1 SP1, stops after several of operation by generating an error not taken of load by the framework. Net: “Error of queue of report: faulting application xxxx.exe, version ...
Score unwanted network printer switching
Dan in MI - 25 Sep 2006 12:43 PM - 1 message
We have a small network in our office running Windows 2000 Server. All machines are running XP-Pro with all the updates. One person has her default printer set to the printer on her desk. Occasionally, when she prints a ...
Score Exception in C++ CLR Console Application
Henrik Grimm - 25 Sep 2006 8:43 AM - 1 message
I'm using Visual Studio 2005 and have a C++ CLR Console Application. It compiles fine, but when I try to run it I get the following error dialog: --- An unhandled exception of type 'System.IO.FileNotFoundException' occurred in TestProblem.exe ...
Score getting the assembly version number
pompair - 25 Sep 2006 8:32 AM - 3 messages
I need version information from and non-gac based assembly. And I need it at command line. Is there an command line application that shows it? It's a tiny app to make myself, but I still want to ask before I do ...
Score string format number of leading 0 in exponent in scientific notation
Robert Ludig - 25 Sep 2006 7:14 AM - 3 messages
When I format a number to a string in scientific notation: string.Format("{0:E}",20000); I get the following string (culture de-DE): 2,000000E+003 How can I format scientific notation in a way that no leading 00 are ...
Score \.Net Framework
Perry - 25 Sep 2006 6:53 AM - 3 messages
I have XP Home Edition. MS Update tells me I need .net framework. I am a casual user, just reading and surfing, no work done on here. Do I need to install the .net framework? Thanks in advance. ...
Score Any way I can do it at server side?
Leon_Amirreza - 25 Sep 2006 5:46 AM - 2 messages
Thanks for the useful link and comment. Any way I can force the IIS to send the page in the charset I want when there is no accept-charset in the request header (something like default charset option in the server)? ...
Score Creating a remotable object like DCOM
Jayme Pechan - 24 Sep 2006 9:35 PM - 5 messages
Does anyone know if it is possible to return an object from a remoting interface and have it be usable with .NET?  I am trying to accomplish what I used to do in DCOM where I would call a function on an interface and it ...
Score Brief Version!
Leon_Amirreza - 24 Sep 2006 2:44 PM - 5 messages
thought my post is too long the short version is: i have this tag in my HTML file served by IIS <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> IE show this page correctly but I need to detect the characterset of the ...
Score unable to install framework 2
JohnK - 24 Sep 2006 2:22 PM - 6 messages
I'm running service pack 2 on XP I tried to install the runtime files for framework 2, but it is always hanging at the same place the install dialog shows Stopping Services Services: IIS Admin I can't get past this point.... HELP!!! ...
Score HttpWebRespose.CharacterSet Returns charset incorrectly?!
Leon_Amirreza - 24 Sep 2006 2:18 PM - 1 message
I have page with this code is part of it: <html dir="rtl"> <head> <meta name="GENERATOR" content="Microsoft FrontPage 6.0"> <meta name="ProgId" content="FrontPage.Editor.Document"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> ...
Score Threadpool and Sockets
Richard - 24 Sep 2006 9:45 AM - 7 messages
Hi All, I don't know in which group my question needs to be posted so here i go: I know that the socket 'begin...' methods uses the threadpool to call the callback function but does that mean that the sockets can't handle more than ...
Score UserControls in a different directory
Nathan Sokalski - 24 Sep 2006 7:03 AM - 4 messages
I have my UserControls in a subdirectory called usercontrols. In the code for one of my UserControls I have the following:     Public Property adimage() As String         Get             Return lnkAdvertisement.ImageUrl ...
Score Using ASP.NET 2.0's ImageMap Control
Nathan Sokalski - 24 Sep 2006 12:58 AM - 10 messages
I am using ASP.NET 2.0's ImageMap Control to create 2 imagemaps, one directly below the other. When I do this a thin blank space appears between them. After several days of frustration I realized that the difference ...
Next »