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

Software Development Network >> .NET Development

.NET Development

New Question

Access Database problem
Problem Marshal'ing
Dataset serialization
Access Database and x64 OleDB Connect
File.CopyTo throws Operation Successful error
How to send e-mails using a web service
I try and rewrited the example of 818781,but received a error
provider: Shared Memory Provider, error: 0
Debug initialization code
problem with Properties window - pls help !!

Top Answerers

Kuti
keffordl
KnightRider
Rwatking
chanccw
Varadaraj R
MarceloVallim
Natalie Schelm
The Poodle
2232
NakedFly
Only Title

Answer Questions

  • meade Regex Problems

    Hi guys, I've been trying to make a program using regex work, but .net simply will not allow it! For some reason, it won't let me declare the re as New Regexp, m as Match (for some reason, it always highlites the regexp and says "Regexp is not defined". I'm importing (thank to ReneeC for helping me get my importing straightened out) system.text.regular expressions. Any help is greatly appreciated here's the code: Dim re As New RegExp , m A ...Show All

  • boates Is there a way not to terminate the application when unhandled exception is thrown on background thread?

    An unhandled exception thrown on background thread causes the application to terminate in CLR v2.0. It is possible to do anything so that it does not terminate but rather ignores the exception Thanks, Michael ICLRPolicyManager is part of the CLR hosting interface, so you won't be able to use it from pure managed code.  Instead, you'll have to write an unmanaged CLR host to boostrap your application.  ...Show All

  • Schwab- Run one instance of a window

    How do I run only one instance of a window if I do not know the window name (Just suppose the title had the time in it). This means I cannot use FindWindow. Hi, What do you mean by window If you are talking about you application then you can run its single instanace ... read following post... http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=453945&SiteID=1 If you are talking about a particular form t ...Show All

  • Ed Goings 404 page not found error with http://www.scanspyware.net/spyware.htm#start

    i am having problem with "WinHttpRequest" when i use link http://www.scanspyware.net/spyware.htm#start with WinHttpRequest i get 404 page not found error can anyone help me on this For issues with the unmanaged WinHttp APIs please use the following newgroup: microsoft.public.winhttp ...Show All

  • allstar1234 URGENT:Resolution Problem

    Hi all,               I having the big application having several forms and controls over it. I developed that application in the environment 1024 * 768 resolution. The probelm is that when we change the resolution, my application does not show the forms and controls over it correctly, if we increase the resolution, the forms goes outside the screen, if we decrease the resolutio ...Show All

  • John Talbott NetworkStream.DataAvailable

    Hi guys. I've done a client server application. On the server I'm reading from the NetworkStream using Read method. Before this I'm making a test : if NetworkStream.DataAvailbale then start to read. I've noticed that this test is slowing down the performance. Do you know how can I avoid this Thank you. Mircea Why do you need to do this Just read. If you are worried about the blocking nature of the read, use th ...Show All

  • gurvinder_gill Reset XML Declaration using XmlWriter

    I am trying to use XmlWriter to create XML. I need to have the XML Declaration to be < xml version="1.0" encoding="ISO-8859-1" >. I tried to set the Encoding in the XmlWriterSettings to "ISO-8859-1". I see the Encoding changes to “ISO-8859-1” in the setting but no matter what I do the resulting XML Declaration always looks like < xml version="1.0" encoding="utf-16" >. I don’t know if this is a bug or a feature. Here is my code: Str ...Show All

  • Learner.example Problem with com to .net interoperability

    I'm working on a project for time attendence control in which i have to use ActiveX control Starinterface.ocx. I'm using AxImp to generate wrapers AxStarnterfaceLib.dll and the standard one StarinterfaceLib.dll, then i've added reference to them using project/AddReference. The problem is that when i'm trying to give instance to metods from control for example : public void _CommPortOpen(){ StarinterfaceLib.StarInterfaceClass ax=new Starint ...Show All

  • Andowen AWhy Does Deleted Rows Keep Coming Back?

    Can someone comment  (DataGridView dev team...hint, hint, nudge, nudge!) why  deleted rows in the grid keep coming back.   I'm sure its programming error on my part, but after about 3 weeks of fiddling with the DataGridView, trying to find the ideal steps to do all the steps, I can't seem to find the ideal combination to assure that rows get deleted and stay deleted.  Also, seeing a lot of errors trying to save rows. ...Show All

  • jaypee68 System.IO.Compression not as good as compressed folder

    I'm getting much better compression when I make a compressed folder (Windows XP) than I am using DeflateStream or GZipStream.  I thought these were the same algorithms used in PKZIP and for compressing folders.  Why such bad compression DeflateStream: 3544Kb -> 1261Kb GZipStream: 3544Kb -> 1261Kb Windows XP: 3544Kb -> 804Kb So how can I get the same compression ratio as Windows XP Thanks, Jeremy ...Show All

  • tfrazier Javascript Validation in ASP.Net

    I am writing an ASP.Net application that needs validation for certain fields.  I found a Javascript routine that will examine a text box for uppercase, lowercase, and numerics.  I can split up the validation to return a value based on what is found. The problem is that I cannot figure out how to incorporate this Javascript with my custom error handler.  The custom error handler for ASP.Net cannot be used to weed numbers and/or sp ...Show All

  • David Pritchard Getting a File's size on disk

    After a few hours of wondering why a FileStream read was failing on a parse I found that the length I was getting wasn't the length to expect. On right-click of an image file in Windows Explorer you can see 'Size' and 'Size on disk:' The value I need to get from my C# application is the 'Size on disk:' - I have done a dozen tests and sure enough this is the crux of my problem -- so how do I get the 'Size on disk:' from .NET Thanx, ...Show All

  • Busy Dragon Connection Pooling Not Working Under .NET 2 and SQL Server 7

    We are in the process of trying to deploy the .NET 2 Framework to our end-users, but have come across a performance issue which seems to involve connection pooling. The same older .NET code behaves differently depending upon whether or not the .NET 2 Framework is installed.  If it is not installed, connection pooling seems to work and I see sp_reset_connection calls but not Disconnects when profiling.  When .NET 2 Framework is installe ...Show All

  • ashitabh Can I call stored procedure like this:MyStoredProcedure 'Parameter1', 'Parameter2'

    hi, guys, We know, normally, when we call stored procedure, we need to: SqlCommand cmd = con.CreateCommand(); cmd.CommandType = CommandType.StoredProcedure; cmd.CommandText = "MyStoredProcedure"; cmd.Parameters.Add("@xxx", xxxx); ..... Can I call stored procedure like this: MyStoredProcedure 'Parameter1', 'Parameter2' Just a single string like we do in SQL Query Analyzer, without adding parameters one by one. Thanks. ...Show All

  • CaRLES Complain about Convertors.. to whom?

    Okay, I just gotta vent. Who's the $^$%^$ rocket scientist responsible for Point & PointConverter .. and .. Size & SizeCoverter.. (and probably others) Sounds nice .. huh You can take a Size and ToString() it ... which give you a nice "{Width=81, Height=30}" So you'd think the SizeConverter.ConvertFromString .. would work... NO! SizeConverter can only handles strings like "81,30" For the love of Pete .. why wouldn't y ...Show All

464748495051525354555657585960616263

©2008 Software Development Network

powered by phorum