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

Software Development Network >> .NET Development

.NET Development

New Question

XmlException: "Name cannot begin with the '.' character"
What is appropriate for this?
Trapping Errors in Web Service Function Calls
Unwanted promotion using TransactionScope
CDO Mail very odd missing period in file name
SQL Connection String Assistance
how to set a Parameter in a Data Source Query using Access 200*?
Validate a password against the domains password policy
Cannot connect to MSDE in VB.net
Checking internet connection

Top Answerers

PedroPQR
Sulakshana
raj4work
tolyy
MarkishintheAM
Ashishbuddha
Robert Phillips
Eisa
Jim Danger
Chill Phil
Topix: Bill Cosby
Only Title

Answer Questions

  • Zmope Updating (Refreshing) Dataset Source Info

    All, Can someone send me a clue on how to update a DataSet in visual studio 2005 after making changes to the stored procedure it is attached to (adding new fields, etc) There seems to be no way to do this that I can find without completing deleting it and starting over. Em, help. Joseph FYI, just tried it and works fine. I went in to the data designer, removed the existing datatable there and then drag ...Show All

  • Ramesh Baliga Data Not update

    I have written a small program that only has one table. When the program loads I select the csv file to load into the table. I then truncate the table and bulk insert from the csv file into the table to load all the records. I have a second dialog form that i load from a button. On this form i create reports with a .net report and report viewer. The problem is that the report viewer always show the data that was in the table before the insert ...Show All

  • lprigmore New request is not allowed to start because it should come with valid transaction descriptor.

    I have a C# windows service that uses MSMQ, DTC Transactions, SQL server 2005 and Notification services. I am doing the following in the service: OnStart Create the queue set the Peek Complete event call Begin Peek PeekComplete WaitHandle[] waitHandle = new WaitHandle[] { new AutoResetEvent(false) }; ThreadPool.QueueUserWorkItem(ProcessMessage, waitHandle[0]) Call End Peek WaitHandle.WaiteAll(waitHandle) queue.BeginPeek ...Show All

  • Vladimir Shevchenko fuslogvw not working?

    I seem to be having trouble getting fuslogvw to show any binding information. I've got a problem with a Satellite resource which in .net 1.1 I'd normally use fuslogvw to help me, but in 2.0 its always blank. I've set it to log failed binds to disk and changed the custom location to the root of C: but still nothing. Any ideas Still no joy from websites If you've got the 2.0 framework installed make sure you're using the 2.0 versi ...Show All

  • Hassan Ayoub How to receive multiple rows from web service

    I have a web service that queries an Orace database. In my code I have a function that creates a new object from a Structure. The query has a single parameter and returns a single row as an instance of the Structure object. This works fine. Now, however, I need to provide a query that will return multiple rows. When I use my other method as the basis for this new one, it only returns a single row as output. Here is an example: <WebMetho ...Show All

  • RCD Concurrency Violation When Updating MS Access Db

    I am working on a VB .Net 2005 application with a MS Access database backend. I am able to add a new row to a datatable via a DataGridView control. After invoking the Update method on the TableAdapter, I have verified the new row is written to the Access database with the values I've entered. This problem is I get a concurrency violation error when attempting to save (update) a subsequent edit of the newly added row. I am the only person making ...Show All

  • Patrick Gallucci MSFT update SqlExpress dataTables fails

    I seem not to be able to update any table in my database. Not through the dataTableAdapter 's Update command, nor through a sqlCommand Object (command .ExecuteNonQuery()), although recordsAffected returns > 0. Am I missing something Hi, Hmm. Weird. Is there an error happening could you manually execute an INSERT statement in one of your tables in the sqlexpress using a SqlCommand Lets just see if the p ...Show All

  • StormDev Getting the file size from a FTP Server

    Hi, I want to get a file size from an FTP server. I can use this method because the ftp server doesn't support this command: WebRequestMethods . Ftp .GetFileSize So i decided to get the file size in this way: FtpWebRequest myReq = ( FtpWebRequest ) WebRequest .Create( ftp://ftp.ftp.ftp/ ); myReq.Method = WebRequestMethods . Ftp .ListDirectoryDetails; Stream s = myReq.GetResponse().GetResponseStream(); StreamRead ...Show All

  • Praveen Chintala Encryption in .Net Framework 2.0

    Hi. I want to use NegotiateStream from .NET Framework 2.0. I've created a smal client-server application and it is fine. There is a possibility to specify if the channel is encrypted or not. I am wondering : which is the algorithm that is used for encryption can I change that I mean: it is possible to specify the algorithm that should be used for this encryption Thanks a lot. Mircea That was really short. ...Show All

  • JWM Programatically build a reference on a ASPX page using VB

    My aspx page has many imagebuttons, Checkboxes, and Labels. Using VB.net  (aspx) imagebutton1, imagebutton2...... checkbox1, checkbox2.... label1, label2....   What i need is a way to programmatically change the properties of these in a loop.   We need an array name for each or a way to reference the names of each so I can operate in a FOR LOOP.   ie  imagebutton(i), ie  checkbo ...Show All

  • Stuart Taylor Unable to use FTPWebRequest over SSL

    Hi   I have been trying to connect to a FTP server using SSL. I have followed the example on MSDN - ms-help://MS.VSCC.v80/MS.MSDN.v80/MS.NETDEVFX.v20.en/cpref10/html/P_System_Net_FtpWebRequest_EnableSsl.htm However I keep getting an exceptions when then “ request.GetResponse ” method is called. The exceptions is “WebException” and message is “The underlying connection was closed: The server committed a protocol violation” &nb ...Show All

  • MauiSon Use Javascript to check if client has added the domain as a Trusted Site

    I need a way to check, using Javascript, if the user has added the domain as a Trusted Site. We sell different kinds of content management tools and similar products to our customers. To be able to guarantee it's functionality, we require, among other things, that the domain that the CMS is installed on, has been added as a trusted site. At the login prompt we need a way to check if it has been added as a trusted site and if not, display a wa ...Show All

  • MSSam Assembly version problem

    I m using some shared assemblies in my project. I can see their proper versions in gac (C:\windows\assembly). But there is one assembly which creates problem in my project. I see the correct version in gac but still when i refer to one of its methods, it throws an MissingMethod Exception. I found on folder named Download in assembly folder and it has lots of different copies of same assembly, which i m neither able to delete nor move. Does anybo ...Show All

  • frieste Losing callback subscription in remote object delegate event

    Hi Firstly, I hope I described subject header correctly. Problem is that I seems to loose the subscribed delegate events on the remote server but look at the client remote object & events delegate seems to be valid. I am working a monitoring system, as below, Mon. client app <<<< Msg Provider <<<< Msg Service <<< Telesale Sys where Mon. client app & Telesale app is windows base app Msg ...Show All

  • HarshVardhanModi How to Fire onChange event in javascript in case AutoComplete is set on.

    I want to fire the onChange event of textbox in javascirpt when the autocomplete feature is set to on. I do not want to use onPropertyChange event to achieve the same. Thanks in advance. Dinesh   The IE newsgroups will likely be more successful at answering your question. IE/DOM related questions http://www.microsoft.com/windows/ie/support/newsgroups/default.mspx Click on the newsgroup with the particular version of IE ...Show All

818283848586878889909192939495969798

©2008 Software Development Network

powered by phorum