Software Development Network Logo
  • Microsoft ISV
  • Windows Vista
  • Visual C++
  • SQL Server
  • Visual Basic
  • Visual FoxPro
  • Visual C#
  • VS Team System
  • Windows Live
  • Smart Device
  • Windows Forms
  • Architecture
  • Visual Studio
  • Visual J#
  • Game Technologies

Software Development Network >> .NET Development

.NET Development

New Question

OleDbDataAdapter.Update not instananeous
MDAC in Embed WIN98
Expiration of Dlls
Using an XSD to Validate an XmlDocument
ConnectionString
delete XML node with JavaScript/JScript
I want to confirm this about AppDomains.
how do I add an attribute?
signing file and store as p7m
How to mark class with <System.Xml.Serialization.Xml... atributes so that on deserialization element order won't matter

Top Answerers

rbhatia
Ak Reddy
Dave Kaplan
CPA
ColoBrad
vistalad
Eias Nabhan
Phillipe
mani_rt
codedotnet
Topix: Melissa Etheridge
Only Title

Answer Questions

  • bryndabella [2.0] InvalidOperationException: The Undo operation encountered a context that is different from what was applied in the...

    Hi, I have a Windows.Form application that call a method in a remote object when the user press a button. That application works fine in .Net 1.1 but in 2.0 returns the following error: "System.InvalidOperationException: The Undo operation encountered a context that is different from what was applied in the corresponding Set operation. The possible cause is that a context was Set on the thread and not reverted(undone)." And t ...Show All

  • rfmfix How to extract icon from resx file

    I've a form with an imagelist filled. I just want to access the resx file of the form to get an image from the imagelist in icon format. Can anyone help me I've tried, I've problem in load the resource file ResourceManager rm = new ResourceManager("frmMain", this .GetType().Assembly) You are welcome. I have copy pasted the entire code of the Form class below. Make ...Show All

  • rpcservererrorguy Mht Email (Html Archive)

    It is possible (out of the box) to send Mht email now in .NET 2.0 I've taken a look at LinkedResource & AlternateView and I'm able to send out emails. However, there is no documentation on what is going on behind the scenes. http://msdn.microsoft.com/library/default.asp url=/library/en-us/e2k3/e2k3/_clb_sending_a_web_page_by_smtp_mail_using_cdosys_vbs.asp offers some insight into this... If this fe ...Show All

  • Charliem Web Service and XML produced

    I am writing a web service using VS2005, .NET 2 and I have a question on the XML format of the SOAP body. My C# creates the xml as below: public XmlDocument GetAllEntities() { ds = new DataSet (); // some sql set up to retrieve the data from the databse XmlDataDocument dataDoc = new XmlDataDocument (ds); return dataDoc; } When I debug the result, IE displays < xml version="1.0" en ...Show All

  • steve_nadir SerialPort Class Help DataReceived

    I'm using the DataReceived from the V.2 .NET SerialPort class. I'm communicating with a microprocessor board and i can write to it fine. I'm having trouble reading from it. It sends a single byte at a time without an EndCharacter. I can see the byte being sent on my oscope and with an older Turbo Basic program it does read the byte. My problem is that my DataReceived event isn't being thrown. I have my ReceivedBytesThreshold set to 1 and i still ...Show All

  • Antzone request.BeginGetRequestStream with FTP in ACTIVE mode problem.

    Hi, i'm making an asynchronous upload function. When using .usepassive = true all is good, i can transfer and catch pretty much every exception thrown at it. When using .usepassive = false and the server and client are both configured properly, all is good too. The problem i have is when .usepassive = false and either the ftp or client are not configured properly to use active ftp connections. Here is the code that calls the BeginG ...Show All

  • Tups Adding records

    Help!! I am trying to add records to a database i have a visual 2003 app that has a bunch of text boxes where i have it adding the information from the text boxes into the table and it works however I want to upgrade to visual 2005 and the same syntax doesnt work and i cannot find any examples or understan how to do this same function here is what I got can someone tell me what I am doing wrong i have a dataset, binding source and a data adap ...Show All

  • dale_barr How to use System.Net.Mail.SmtpClient via SSL and Authentication?

      Below is my code, and is just blocked there. There is no any error message. '=============================================>         Dim msg As String = "---"         Try             Dim strAddress As String = " xxx@xxxx.com "             Dim s ...Show All

  • Eric Sanders Manipulating Data in a Text File

    Hello Everyone, first time post here. I am currently trying to read data from a text file, and create a new text file based on that data. Right now, I just want to get the reading down first. The text file has records like this one 1/1/1 (Item 1 from file: 1) 1196603 I want to get the 1996603 number and the file: # What would be the best way to go about that Should I readline or Readtoend. I figured reading each line would be easiest. Then I ...Show All

  • Bj&amp;#248;rnar Sundsb&amp;#248; How to implement GetFunctionPointerForDelegate function in .NET 1.1

    I try to wrap some native win32 api, but it is need the callback to be the parameter of SendMessage. I solved this by using the new GetFunctionPointerForDelegate function in .NET 2.0, but in .NET 1.1, I found no way to do the same thing, I also found the Delegate.Method.MethodHandle.Value, Delegate.Method.MethodHandle.GetFunctionPointer() and the return value of GetFunctionPointerForDelegate function are different. I was confused. How can i impl ...Show All

  • schlafsack Mutex and ManualResetEvent

    Hi all, What are the differences between ManualResetEvent class and Mutex class Thanks, Suresh. Ah, right. Sorry. :) I'm not sure why you can't create a named event in .NET since even Win95 supports named events, but you could either extend WaitHandle with your own class to P/Invoke CreateEvent or use different named Mutex instances. It's a stretch of the Mutex class but should still yield the results yo ...Show All

  • Michael Whalen Passing WindowsPrincipal across Remoting boundary

    Can anyone point me to a *good* resource that describes making my 3-tier remoting app secure I built the thing already and it works great but it has no user awareness. I want to pass the logged in user identity from client tier to middle tier and then actually run a task as that user on the server tier. Is this even possible with built in .Net functionality thanks, dave Dave, passing the Windows identity along is supported wit ...Show All

  • jrx access invisible characters?

    Having a strange problem with retrieving data from access. I am using the VS2005 dataset manager to retrieve rows from a table. I am passing values from a bunch of text fields to the query to match to the relevant fields in the table. However, this table which was generated within access seems to have problems with retrieving rows with blank fields. Again, however, if those fields are blank from a record I have added with my application, they ar ...Show All

  • Rick Hodder Plural of word

    Hello Friends, I just want to know how to find plural of a word in C# I have one textbox where user will enter his word i.e Text. Then how to find the plural of that word. In terms of pluralization, it's more like a couple of rules with a series of unsystematic exceptions. I think it would be much easier to simply have a lookup, or dictionary. Excellent points, but you'd lose your bet. ...Show All

  • Richard3 Using odp.NET

    I am trying to connect to oracle from c#.NET environmet using the following connection string n odp.net string connectionsstring="User id=xxx;passowrd=xxx;Data Source=xxx"; it throws a runtime exception stating ora-12154:tns could not resolve service name I have allready checked the service name in the TNSnames.ora file Can somebody please provide me witha solution to this problem Thanks Rohit Mehta Hi, ...Show All

91011121314151617181920212223242526

©2008 Software Development Network

powered by phorum