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

Software Development Network >> .NET Development

.NET Development

New Question

Error: SQL Server does not exist or access denied
ASP.NET 2.0 Advocacy
datasource configuration wizzard
ViewState breaks W3C validation
preventing erasing background
Unwanted promotion using TransactionScope
I want to create my own OLEDB Provider dll, is it possible?
Saveing
ResourceReader(stream)
New 'Code group' is named 'Copy of XXX' ???

Top Answerers

dops141441
AntoineF
Prasant
uXs
jossy
JeppeSV
ormistons
pooyaJoonam
AVSYNaidu
Toky
H Certo
Only Title

Answer Questions

  • CWIUS Massive Membership changes in RC? How to open a beta 2 website in beta3?

    So I have a project we've started in beta 2, I've just installed the release candidate on a lap top luckily (so we still have a working version) copied the project over, went to compile.  Fixed a few things that the new version doesn't like such as declaring using System.Windows; tried again.  Compiled and I though great.  Only no ..... All the login functionality appears to have changed   For instance the aspnet_Membership ...Show All

  • SatishS Forms authentication problems

    Hi, I've got a simple intranet site that uses forms authentication in the web.config to make sure people are logged in. On my machine and on a development machine this code works fine, the asp.net bit realises they're not logged in and passes them automatically over to the Login.aspx page. However on the production machine this doesn't happen, it lets them straight into any page they want. What could be wrong I've made sure that anonymous login ...Show All

  • KonstantinosL POS for .NET 2.0 ?

    Is this in development Since I upgraded to VS2005 POS.net 1.1 stopped working with my Epson receipt printer. Is there any news on when/if it will be available, I'm pretty desperate to get my POS project working on VS2005. Try contacting the vendor for support. Perhaps this one There's been some chatter on Microsoft's Point Of Service newsgroup about a new release and problems with Epson printers. ...Show All

  • Carl Peto Isolation Level Change

    How can I change IsolationLevel property of DbTransaction.Isolationlevel, when it's readonly Thanks The isolation level can be determined by using an overload of the BeginTransaction method on the Connection object. There's a BeginTransaction method that takes a parameter 'IsolationLevel'. Thanks a lot, it was helpful ...Show All

  • 3fo Error: Unable to open shim database

    I get this kind of events logged in the eventlog: Source: .Net Runtime Type: Error Unable to open shim database version registry key - v2.0.50727.00000. Is this 'normal' behaviour or is there a misconfiguration. I have this messages on Windows 2003 Server, on SqlServer2005 boxes as well on TFS app tier and Terminal Server running VS2005. Strange thing is: everythings seems to work OK... Rene We have a VS2005 ...Show All

  • Marian Drumea webservice error

    Greetings All, i have written a webservice which returns a dataset. my web method fill dataset with 150 tables, after compliting 100 table it throwing following error An unhandled exception of type 'System.InvalidOperationException' occurred in system.web.services.dll Additional information: Client found response content type of 'text/html', but expected 'text/xml'. The request failed with the error message: -- <html>    <hea ...Show All

  • FabioProgram TableAdapter.Fill clears datatable

    Hello! I have a typed dataset with a datatable that is filled by a stored procedure. The stored procedure has an input parameter. I want to fill this datatable by calling the fill method two times with different input parameters. The first fill-call works fine, but after the second fill has finished, I just have to output of the second run in my datatable. The datarows from the first run has been deleted. The online help says, that records shou ...Show All

  • MdaG Itanium compiler error

    I am porting a C# project to 64 bit.  I successfully compiled in Whidbey using AnyCpu setting and ran the test client.  However, after I changed the compiler setting to Itanium and copied settings from AnyCpu, I got this error upon compiling: ------------------------------------------------------------------------------- C:\WINDOWS\Microsoft.NET\Framework\v2.0.50215\Microsoft.Common.targets(1500,9): error MSB3551: Unable to l ...Show All

  • Richard Meyers Generic Types

    would anyone know how to implement a single class for different types. This's my class Class CClass       Public Sub New(TheTypeShouldBe  AS  What  )         ' So That i can define a generict List of  'ThisShouldBeTheType'         Dim myList as NewList(Of TheTypeShouldBe)     &n ...Show All

  • Ukryu How to Use FileSystemWatcher in Network Directory

    Hi All,       I want to use filesystemwatcher for the directory  present in the network.How can i do it Is there any way to solve it     I thought since its related to networking i can get some valuable information from here.        I tried using filesystemwatcher but it was not able to read the directory . Even if i give the ip address of my local machine i ...Show All

  • djlins logical ANDing a boolean?

    I want to do this: sub procA()    dim success as boolean = true    for i=1 to 3       success &= procB(i)    next    if success then    '... end sub function procB(iVal as integer) as boolean    '...    <return true/false> end function Basically, I want to logically AND all the tests in procB. If any are false, then success should be fals ...Show All

  • John M-W X509 key not loaded correctly for FTPS server authentication ?

    I have written an FTP service in VB.NET. Am attempting to add SSL authentication. I believe it is either not doing the handshake correctly, or else it does not like the way I loaded the server certificate.  Let me paraphrase the salient portions of code to show what I am doing, and the resulting exception: Public SSLCertificate As X509Certificate SSLCertificate = New X509Certificate("D:\TEMP\MyPrivateKey.pfx", "myprivatekeyspassword") Priv ...Show All

  • Jonathan Potter Application of Serialization

    Iam a application developer and iam new to the .net. I am writing to know the applications of serialization and app domains in real time applications. I hope u people can help me Hello, The "applications of serialization" are pretty broad, so it may be hard to supply anything more useful than online articles and book recommendations. I consider ".NET serialization" to be the following:  - "support for transporting an object between tw ...Show All

  • vortex-31 Major bug/perfromance issues with .net 2.0 sockets

    Ok I have spent a considerable amount of time debugging my project, and I have now been able to recreate the problem in a small console app which I will cut and paste at the bottom.   So let me explain the bug and the performance issues with this console app, I bind a socket at port 8000 using tcp and then after calling listen I do the following:   for ( int i = 0 ; i < 10 ; i++ ) { _listener.BeginAccept( new AsyncCal ...Show All

  • itsnadeem85 How to query delete commands against table with ado.net?

    Hi, guess this should be really simple but seems as if I am just on the wrong track. All I want to do is delete every dataset in a certain table, which I would do with a query like that: "Delete From myTable" But how can I do that with ado.net I read through msdn-library but all I could find was something like: "myDataSet.Tables["myTable"].Rows .Delete();" Of course I am not willing to iterate over al ...Show All

757677787980818283848586878889909192

©2008 Software Development Network

powered by phorum