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

Software Development Network >> .NET Development

.NET Development

New Question

SSL: "An existing connection was forcibly closed by the remote host."
Timeout in WinHttp object
Need help with odbccommand.ExecuteNonQuery
Soap Header
Adding a row to a child table
FtpWebRequest re-sending USER and PASS commands half way through download loop
Data accessing
Memmory issue
How do I know if I need MFC x86 or x64?
TextRenderer and TextRenderFlags.PathEllipsis/TextRenderFlags.WordEllipsis

Top Answerers

jbln
BillyD
scottmac
melf1969
kath
Any Person
Vijay197886859
fel lobo
Bob1945
yakupg
Avni's Dimension
Only Title

Answer Questions

  • FluffyKO Zip and Gz Files

    Hi all, hope somebody can help me. I'm writing VC++ code with java::util::zip lib; when I manage zip files everything is fine and this code works: XmlReader^ xread; ZipFile^ zf = gcnew ZipFile(tb_template->Text); Enumeration^ es = zf->entries(); ZipEntry^ ze; while (es->hasMoreElements()){ ze = (ZipEntry^)es->nextElement(); xread = XmlReader::Create(ze->getName(),settings); <. . .> } b ...Show All

  • BhaveshPatel List files on ftp server

    Hello all, i have created an ftp client in C# using Wininet and i am able to download upload files from and to my ftp server, what i would like is to have the list of files and directories on the ftp server using wininet. any help would be great. Hello Mario thanks for answering and making researches abt wininet, but i'd like to comment what you said first FindFirstFile is returning a non null pointer and is working well except for ...Show All

  • Teo MSXML JumpStart fails under VS2005 (Error C2664)

    I just downloaded a fresh shiny copy of " JumpStart for Creating a SAX2 Application with C++ " from the MS XML Developer Center. I'm a little surprized to see it doesn't even compile under VS2005, but I'm happy to massage it to get it to work. The issue I could use some input from the forum comes from the fact that before VS2005, wchar_t was declared as unsigned short, but wchar_t is a fundamental type (as it should be). The t ...Show All

  • John RWB use a try-catch block

    I am new to C# tell me how to take input from user of int variable in console.   Thanks Hi, You can do this: Console.WriteLine("Place a number"); int x = int.Parse(Console.Readline());   cheers, Paul June A. Domag ok, then use a try-catch block to catch the exceptions when the user enters  non-numeric input. Sure! I see you are not familiar with exceptions. In the .NET documentation you ca ...Show All

  • Leebert About License !!!

      I want to develop a web site, for my Small Business, using ASP.NET... but my question is, what I have to pay in order to do this   Thanx in advantage... Well, thanx... I gone do all my self... then you mean that if I make a Web Site using only ASP.NET, and Web Matrix,... I don't need any license to publish my web site  thanx again That depends. You CAN get by without paying anything. There are free website ...Show All

  • Harry Miller CSS problem with VB.NET webform textboxes

    Hi, I have a webform with texboxes on it. The background color is the defaul one (white). Seven out of 30 text boxes have a yellow background when I open this webform in IE6. I've tried to replace it with the newly created ones with the same result. I head that it could be a problem with .css but couldn't find any info. Thanks in advance, OB It worked! Thanks a lot! Do you hav ...Show All

  • KyleS How to get a client certificate in code

    Hello, I created an X509 client certificate using Microsoft Certificate Services and installed it in my browser (under Personal). Now I want to call a webservice in code using a raw HttpWebRequest. This works fine, but I want to add the certificate and I don't want to import it from a file but directly from the registry or wherever windows stores it. How can I acheeve this I found some code at http://support.microsoft.com/ kbid=89597 ...Show All

  • J Davis Visual Studio 2003 Mixed Mode Debugging Crash

    I have a project that is made up of a mixture of C++ COM dlls and C# COM dlls.  The main executable is a Win32 app.  If I turn on Mixed mode debugging to allow me to debug the C# dll's Visual Studio crashes 100% of the time as it loads the C# dll's.  I noticed that the project uses reference to the .Net framework 1.1, but just before Visual Studio crashes it is loading .Net framework 2.x components. Any idea how to fix this I hav ...Show All

  • IoPi Typed Dataset with Enterprise Library

    Is there a way to populate a typed dataset with the Enterprise library   I am getting a "System.InvalidCastException" exception. TypedDS dsRuns = new TypedDS(); Database dbMMS = DatabaseFactory.CreateDatabase("TestInstance"); string cmd = "SELECT* FROM blah"; DBCommandWrapper cmd = dbMMS.GetSqlStringCommandWrapper(cmd); cmd.AddInParameter(":SDATE", DbType.String, datetimepickerDate.Text); dsRuns = (TypedDS)dbMMS.ExecuteDataSet(c ...Show All

  • RidiculousX Detecting SQL Server database existance

    I'm a beginner at using Visual Studio 2005 pro & SQL Server 2005 Express Edition and have just learned how to create a database file by issuing SQL Server commands through C# programming. I just want to find out what is the best way to detect if a database already exists on the system. My application currently creates my database, but I want to add in the ability to check if it is already present so that I can bypass the creation of the ...Show All

  • Conor Cunningham Connecting to Access DB over a Network

    My application uses Access to store pointers to data in a file system.  I want to create a share folder on my network server and place my database and file structure inside it.  To ensure that each client computer running my Windows .Net applicaton can reach the share folder with the db and data files, how to I grant permission on the share. client computer name\ASPNET domain name\Windows User Name Is there some really simple way to j ...Show All

  • wtr989 forms authentication

    I have to restrict few pages of my site to accessible by everyone, while others pages should be accessible by everyone, Is it possible through forms authentication. I have to implement Forms authentication for that but unable . Plz. help me to do this and send me a code for that. Check out these great videos to help you learn how to use ASP.NET 2.0. One of the videos includes Membership and Roles using ASP.NET 2.0 and shows how to pro ...Show All

  • Codeine OleDbCommand.ExecuteNonQuery "Insert Into Select From"

    Hello, I am working with OleDb to perform a bulk insert from a temporary table to permanent database table, both of which belong to the same database. I am wanting to use "INSERT INTO <permanent_table> SELECT * FROM <temp_table>". The query I run in MS Access to perform this bulk load does process correctly, but not in code using OleDb. After properly setting up my OleDbConnection object, opening it, and properly ...Show All

  • Nicole Johanson WebBrowser control in a Windows Service

    Hi, I need some help with the WebBrowser control. I'm writing a Windows service in .Net 2005 to monitor the up/down state of servers. One of the things I need to do is to check on the availability of URLs. So I added a WebBrowser control to the design frame of the form, and ran the service, and I simply get nothing from the WebBrowser control. I think this is due to the fact that there is no user environment associated with a service, and the We ...Show All

  • Arie Ori Text alignment in Listbox, and Textfile, for printing.

    Hi, well I hope someone here can help me. I want to print a document, but before that. I extract all the values from a database, and then write it to a file but depending of the size of each value, the column sizes changes. How is it posible to align each "Column", so that, no matter the size of each value, the columns line up perfectly under each other. eg... 1 2 3 4 5 ...Show All

697071727374757677787980818283848586

©2008 Software Development Network

powered by phorum