Software Development Network Logo
  • Visual C#
  • Windows Vista
  • VS Express Editions
  • Windows Live
  • Game Technologies
  • Visual J#
  • Architecture
  • VS Team System
  • Visual Basic
  • SQL Server
  • Visual C++
  • .NET Development
  • Windows Forms
  • Smart Device
  • Visual FoxPro

Software Development Network >> .NET Development

.NET Development

New Question

Please help - Error5 Opening registry key
Thanx Jon
"else if" statement with System.CodeDom.CodeConditionStatement?
ViewState
xml to relational tables
How to recover socket after failed SSL negotiation?
FTP only allows 2 threads at a time
Determining if an incoming connection has been NATed
Application Settings in Class Library called via COM, how to set them?
C# statistics

Top Answerers

GaryD9
AntiSilence
SebastiaanDijk
Asmodai
Jason92
Reggie Chen
Randy Brown
Bryan Dunlap
Tomi Kaihlaniemi
hrh
BASIS International Ltd.
Only Title

Answer Questions

  • mbmbeers Compiling individual code-behind using Visual Studio

    Is there a way to compile individual code-behind using Visual Studio The build solution feature in VS  compiles all of the code behind in one .dll or .exe. ( i think.) Also, if I compile the entire application into a .dll, does Asp.net engine use the .dll when an aspx page is requested or does it compile the requested aspx page thanks... Hi! Thanks for asking!  I'm a member of the ASP.NET team, and ...Show All

  • Ram1979 Unable to add soapExtensionTypes into web.config file

    Hi, I use Visual Web Developper 2005 beta. I have a class inherited from SoapExtension called AxisSoapExtension. This class is into my application App_Code folder. I try to configure web.config file to declare this SoapExtension: < xml version="1.0" > <configuration> ...   <webServices>    <soapExtensionTypes>     <add type="AxisSoapExtension" priority="1" group="0 ...Show All

  • Alex Iordan Framework registry access misbehaves under x64 W2003 Wow6432Node

    We are developing under VS 2005, 32-bit. We are trying to bring up a very large suite of related software on W2003/x64 and found a registry problem. Basically our configuration software attempts to write registry values to HKLM/Software/Our Company/Our System/xxxx But they are instead being written to HKLM/Software/Wow6432Node/Our Company/Our System/xxxx I think I understand the reason for this. But I don't think it is work ...Show All

  • JoCa Urgent: MSI forms Memory Leak: Major Issue

    Hey guys, We have, a windows form application in VB.NET. The way this application is structured is, there’s a MasterForm which contains a Main menu and acts as the mdi parent to around 20 windows forms. We have a BaseForm with some controls on it inherited by 20 other forms. The problem we are facing is, as we work on the application, as new instances of the forms are created, the memory used by the application keep on increasing (Memory leak ...Show All

  • Richard Shears Help me to solve this problem(about a display)!Thanks!

    tools:VC++.net the code is: char ch; ch = 'a'; MessageBox::show(ch.ToString()); After this code runned!The MessageBox showed '97'.It shows the alphal's ASCII number,not show 'a'. How can I fix this problem Thanks!   Have you tried using StringBuilder Hi, Ok, you can do this instead. char c = 'a'; MessageBox::Show(Convert::ToChar(c).ToString()); Hope that works... cheers, Paul June A. Dom ...Show All

  • munashe How to catch the exception of remote server close down?

    I have a client/server application using remoting. It works fine. But when I close the server, the client will become hanging over in the middle of an exception dialog(view details, continue, quit one) display. Only if I re-start the sever, the exception dialog become clickable and exception contents are displayed. It says the connection to the remote server is closed. The worst is I cannot using try-catch block to catch this exception. Who c ...Show All

  • Steve Pontello Looking form .NET Framework information

    I have been using MS Outlook to create forms that our company uses to collect data and store it in MS Access.   Over the years we have added more and more to these forms and to the database. We feel it is time to migrate to a more powerful platform and database.  One of the options I am looking at is using .NET Framework, using MS Access at first then moving up to SQL. This is a very General question.... I do not know anythin ...Show All

  • Plod Service and COM don't work with Windows XP Service Pack 2

    I have a service application created with VB.NET that creates a COM object. The service works fine in Windows 2000, but in Windows XP with service pack 2 it doesn't  because it receives the "Access denied" error. If I create a windows form application instead of a service, it works fine even in Windows XP with service pack 2.  Can someone help me   Excuse me by the wrong error message, in fact, t ...Show All

  • sam-pan Reading CSV files

    Is there a simple way to read the column data of a csv file that contains a database   The difficulty is that I can't find any "built-in" parser within .NET.  Is there one Karl No, there's no built-in parser, you have to write logic by yourself..    I modified this solution found on the web.  Credit to the book, "Mastering Regular Expressions". Imports System.Text.Reg ...Show All

  • -Anton Lapounov Compute processor time & working set for a managed thread

    Hi, My code hosts external code for which I need to track CPU usage and working set. Each piece of code is independently held in an Assembly and loaded into a main container assembly which manages its execution and lifetime. Basically, I need to know on a per-thread basis, how much CPU usage and working set a thread uses. First, the ProcessThread class does not map 1-to-1 to a Thread class. Moreover, even if I somehow tracked their mapping ...Show All

  • Peli Howto create a read/write application setting?

    Hi! I'm trying to create a writeable application setting with VS 2005 Express beta-2. When I open the Settings tab in the application properties I have a designer that allows to create a new setting (say "MySetting" of type String). I can specify a default value and I can use the properties window to enter a description etc. In the code file Settings.Designer.cs a property "public string MySetting .." is generated automatically. But this pr ...Show All

  • hobbledskydiver XML and Datagrids

    Hi I'm trying to read an xml file and show results in Datagrid (the normal one in Windows Forms). The xml schema shows me that there are several tables (not related) and one table PSC5 which has 18 child table. I'm using ReadXml function throught a dataset created at the runtime. The data grid shows me tables only from PCS5 table and its child tables, but not the other one. My code is simple as: Dim ds as new dataset() ds.ReadXml(" ...Show All

  • Bysani IBM.Data.DB2.iSeries .NET Provider - Will it work with VS 2005?

    I'm using Visual Studio 2005 Beta 2 (Visual Basic) along with IBM Client Access V5R3. I can't seem to get VB to recognize the native IBM .Net provider. I'm very new to DotNet so that's certainly part of my problem but I'm just wondering if anybody has used the native DB2 provider in VS2005. I know IBM says they haven't tested it in VS2005 but I'm wondering if it works at all. http://www.ibm.com/develo ...Show All

  • Ghastly Designed for windows Mobile

    I was going over the Designed for Windows document for Logo Certification.  There's a requirement that caught my attention. "Applications Must not Interfere with Incoming Call Functionality" Well my application uses web services, and during data transfers it will not allow calls to come in.  Is it possible to have my app listen for an incoming call   so that I can stop whatever I'm doing.  Does this requirement even apply in ...Show All

  • dr-Wicked documents.all and form.elements collection undefined

    I want to have a check box that will enable a user to select/unselect all checkboxes with a certain name.  Seems simple, right   Problem is, when there is only one checkbox (not counting the select all checkbox) for the user to select, the form.elements (or I tried documents.all) collection is undefined. The code below demonstrates the problem.  Run it as is, and it works fine.  However, take out the last row, and the problem ...Show All

373839404142434445464748495051525354

©2008 Software Development Network

powered by phorum