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

Software Development Network >> .NET Development

.NET Development

New Question

HTTP status 401: Access Denied
DataSet object expression
CPU utilization
C Style char array returned by an event from a DLL COM
Tests (related to topic " Strange problem in .NET console application")
SocketException: Handle is invalid??
Using P/Invoke to invoke a function with variable # of parameters.
WebService fails to send packet first time but will send second time
Error handling
I've never used .net, need help

Top Answerers

Matt Travis
Evan Haklar
frieste
Gwiddion
ChennaiRocks
BrianHenderson
archijack
Jason Browne
SujeeKes
cronic76
Practical Software
Only Title

Answer Questions

  • Rumtreibbär Framework comparison question

    I used to program with VB 5.0 and VB 6.0 For the last four years we've been using Java for most of our project. There are some "frameworks" for Rich Client Architectures projects for java I've used (mainly NetBeans, and Eclipse ). What I have come to know as "framework" in Java is a set of plugable libraries that we used to speed up our programming time. Basically we do not have to worry about developing and synchronizing mai ...Show All

  • TigerMan90- how to attach acces file to project in visualstudio 2003

    hello can anyone help me to attach acces file to project becouse now when i change location of project, my project stop working becouse it has to be in same place where it was when i was adding a connection. I want to be able to change location of application and mdb file without any problems thank a lot arek Maybe you can try generating the path part of your connection string using configuration file, or ...Show All

  • cwestervelt New computer unable to initialize webservice through soaptoolkit 3.0

    I apologize if this is an inappropriate forum for this question but I have been unable to find a solution or any help on this problem. A developer just received a new box we are trying to set up and are running into problems with soap toolkit we haven't seen before. The machine has IIS 5.1 installed. VS.Net 2003. .Net framework 1.1 (it did have framework 2.0 installed as well but we removed it when since this is the machine with problems and ...Show All

  • BluePain Client Certificate

    Hi Ravi thanks for your reply. if you take the server side certificate on web based scenario. we need to get certificate from any of the third parties. and install on the server and configure the IIS for "client side certificate required". and We need to configure the IE for sending client certificate on every request. Once its configure every HTTP request will be sent along with the Certificate and validated by the IIS. But in case of WinForms ...Show All

  • One Marobela mscorwks.pdb symbols for VS2005 RC?

    I'm running the RC given out at the PDC, and I'm trying to debug stuff that has both managed and unmanaged code. This is particularly difficult because I don't have symbols for mscorwks.dll and other libs, which I thought were available for previous versions, like Beta 2. Is there somewhere I can grab the symbols for the libs so my stack traces make a bit more sense Thanks. Ordinarily the symbols for mscorw ...Show All

  • Adithya reddy Passing properties with attributes to functions

    I'm a bit new to attributes and reflection, so hopefully this isn't a stupid question ;-) I have create an custom attribute for properties (AttributeTarget). Next, i've created a class with a property, and on this property i've declared the custom attribute. So far so good. I can read the custom attribute of this property in my class. Yeah! The "trouble" comes with the next set of properties that have this custom attribute. All the propertie ...Show All

  • Keith Newman Passing a varbinary cmd parameter to stored procedure

    I created a table CREATE TABLE F (    Name nvarchar (50) NOT NULL,    DATA               varbinary(MAX) ) Created a stored procedure CREATE PROCEDURE createfile @bytefile varbinary AS INSERT INTO F (Name, Data) VALUES ('a', 0x) UPDATE F SET [DATA] .Write (@bytefile, null, 0) return 0 I use the following program to insert data in the table static void ...Show All

  • BobK_MN WHAT DOES THIS MEAN?

    Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. Parser Error Message: Unable to load file 'USA'. Source Error: Line 257: <add assembly="System.EnterpriseServices, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/> Line 258: < ...Show All

  • Steve C User Authentication ASP/SQL

    I have been working on an ASP page (with VB Background) that is a basic user login page. It is being run on our Intranet within my organization, however, it's not working. Can anyone provide some suggestions I've included the code for the .aspx page and for the code behind on the "Login" button. Front end: %@ Page Language="vb" AutoEventWireup="false" Codebehind="login.aspx.vb" Inherits="PIF_VB.log ...Show All

  • SpeedyBoy getting a connection string from a text file

    Hi I have created a small data access app. I want to pull the connection string for the SQL database from a text file. But I am getting it a bit wrong can anyone help at all   Dim connStr As String = "" Dim SqlConnection1 As SqlConnection = New SqlConnection Dim sr As New StreamReader("C:\Program Files\MDM\ScanViewSetUp\ConnectionString.txt") connStr = sr.ReadLine() SqlConnection1 = connStr ...Show All

  • Michael Baxter System.Configuration with Windows app

    I am having a very strange problem, so if anyone can help it would be deeply appreciated. Using VS.NET 2005 RC1.  When I'm working on an ASP.NET application, I can create a custom section in the web.config fine.  I can define my own handler inheriting from System.Configuration.ConfigurationSection, and use it using System.Configuration.ConfigurationManager. However, when I am in an Windows App, I create the same sections in the app.con ...Show All

  • .neo 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. How can I download this ...Show All

  • Fadi Al-Sheikh IndexOutOfRangeException

    I am using Xml serialization to serialize a class. I use [XmlRoot()] to specify the root element and then I also implement IXmlSerializable to control the format of the serialization. I write attributes onto the document element and that works fine. Then i try to use WriteElementString to add a child element. Also if I try to use WriteStartElement it also throws IndexOutOfRangeException. I did not find much about this on the internet. What does ...Show All

  • WilliamBushman simple collection/multi-threaded class generates memory leak?

      I wrote a simple collection, each of the items in the collection fires a job inside a thread, I thought it was something I was doing inside the thread work, but then I wrote this small collection with the same design, and I still get the memory leak, here's the collection: using System; using System.Collections; using System.Threading; namespace win1 {       public class MyCollectionItem {   &nbs ...Show All

  • Jenssa creating Sockets

    Hi buddies, I wonder how easy to create a socket with out connecting to RemoteEndPoint in sockets My idea is to create a “dummy” socket of an existing socket. I wrote code like, System.Net.IPAddress ConnServerIP = IPAddress.Parse(s_myLinOldIP.Substring(0,s_myLinOldIP.IndexOf(":"))); int listenPort = int.Parse(s_myLinOldIP.Substring(s_myLinOldIP.I ...Show All

666768697071727374757677787980818283

©2008 Software Development Network

powered by phorum