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

Software Development Network >> .NET Development

.NET Development

New Question

Updating multiple ListView items into Sql DB table
Zeros at the beginning of source code
XMLDocument.Load Proxy Error 407
R
ILGenerator, DynamicMethod and ILASM
"Page can't be displayed" in IE after applying patch KB829019 (upgrade to .NET 2.0)
FileSystemWatcher Problem
Modify soap extension message
HttpListener windows authentication fails for domain account
Errors related to edkutils.lib

Top Answerers

Tyax
Senthilvel
casaubon
Jazzyv
Angz
Brett Shearer
yass1400
blackpuppy
Takashi Toyota
Sarat Gollapudi
Association of
Only Title

Answer Questions

  • Luis Barral .Net Technology to replace DCOM

    Hi, I'm new to .Net, and I'd like to know what's the closest technology to do remoting that close to DCOM. And it will be very helpful if you could provide me hte link for interesting article that comparing that with the DCOM. Thanks a lot System.EnterpriseServices is the closest as it is DCOM. Enterprise Services "System.EnterpriseServices is the closest as it is DCOM. ...Show All

  • VB_Devil any way to increase performance here?

    we're using DB tables for translated strings for app localization ... as each supported language is called for the first time, an application-level object needs to populate that language's Hashtable. The DB table and hashtable involved are expected to grow rather large ... is there anything more I can do, beyond what's below, to increase performance nocount is on, connection string is established by IP, proc returns only the necessary values ...Show All

  • Ramakrishnan Sharma Security: protect public classes and functions in common DLLs?

    Hello community members, let's assume that my .NET application is composed of three assembiles, one executable and two libraries. All assembiles communicate through public methods, instantiate public classes and so on. I want to prevent anybody from simply linking the DLL and using the public functions in his own application, else, anyone could write own frontends for example, and use our backend functions. What is a common and reliable way to p ...Show All

  • ddynda Primary Key getting problem with SqlDataAdapter.Update

    Hi, I am using SqlDataAdapter.Update method to insert new row in database using commandbuilder(i.e, generating insert,update commands on the fly). Now I want the new primary key generated in this row to insert it into another table. I dont want to fire another query with database. Is there something I m doing wrong or missing some attributes to set. Thx If the key isn't automatically fetched then I recommend creating your own dat ...Show All

  • ruigkgfvkljhif http upload

    hi I am looking for the best solution on uploading files over http. I tried the webclient and the httpwebrequest but without success. whatever help you can give me would be appreciated thanx There are a lot of 3rd party FTp Servers that support SSL. If you want to use sockets and want SSL Capability, SSLStream is the easiest option.. In that case you should have both the client and server use SSLStream ...Show All

  • Summoner Selecting the version of .NET Framework for applications

    Hello. I've installed both 1.1 and 2.0 beta 2. Now, when I execute a .NET application I'd like to choose which version to use. Some applications work better on .NET Framework 1.1 and some require .NET Framework 2.0. Is there any way to choose .NET Framework for specific application Thank you. Hi, There are two things. One is the .NET version you specify at runtime and thats what has been shown in the cod ...Show All

  • ChrisGoodyear How to create a single instance Data set?

    How to create in a Windows Forms Application a single instance typed Dataset using .net2.0. This is needed to have real-time update on two forms. Regards Bhargav     Hello again, If you still have not solved your problem then I wonder if it can be solved by looking into the singleton calss type. Create the static instance of type dataset inside the stat ...Show All

  • andreoporto Missing POP3 component

    I've been using the SmtpClient component from within System.Net.Mail namespace, and just expected that there would also be a POP3 component.  But no! This seems like quite a blatant ommission.  Are there any plans to include a POP3 component within this namespace I am glad you have asked this question. Currently we are planning this for the next version. However, I would like to understand your sce ...Show All

  • crazyreportwriter Kill Process Remotly

    When I Wrote this code Process p=process.getAllprocessbyName(processName,machineName); p.Kill(); I Got an error could not connect to remote computer ......... although i have all Permision I am fairly sure this is a duplicate post from another forum ... but the answer is that you can do this through WMI with the proper privs .. http://www.codeproject.com/csharp/WMI.asp includes an example of how to do this. Cheers, G ...Show All

  • Render Strong name failed

    Hi all, I've an assembly.I deley signed it and signed it back with full key pair after some time.But i still couldnt able to place the assembly in GAC.It says 'The check of the signature failed for assembly 'myassembly.dll'.How to fiz this I created keypair by sn -k keypair.snk and public key alone by sn -p keypair.snk public.snk I used this public.snk in AssemblyKeyFile attribute and compiled with Delay signed option. And after that i r ...Show All

  • mschetu Avoid Repetition of primary tables's record

    hi all, can you tell me how to avoid repetition of main records when one main(Primary table) record have more than one child(secondry table) records. I am using DataList to show records. For example I want to show the following Tools & Equipment http://www.mobmasti.com MobMasti Mobile Portal Manufactures http://www.manu.com Manufacturer desc manufactur Rental Companies http://www.rentit.com ...Show All

  • bullpit List property in a user control

    Hello !!!! I have implemented a user control (names MyUserControl) which have many properties. One of these properties is a typed List. As I add MyUserControl to a windows form, I have properties which are in the properties editor. When I click on the button "[...]" near the property which corresponding to my list, I have a list editor ... very good ! But the problem is that although I can add elements in my list with the list editor, nothing is ...Show All

  • Euan Garden Embedded word or RTF data in Access 2000 database/ retrieve /edit /save

    G'day I have developed databases for various people but I need to be able to embed formatted text documents (paragraphs) that relate to a particular table ID object - say a recipe. It has a name & specific (autonumber ID). I need to add to that a bunch of text that I can give moderate formatting to ie indenting or bullets & numbering. If it can also include a picture ie as in a word document that may be handy as well. A further rea ...Show All

  • Smallmaj Limit the communication protocol in web service

    I want to restrict user from accessing webservice methods via web browser.For the same I have added lines in web.config( hereunder ) but still usera are able to invoke web service methods via browser. Please assist. < webServices > < protocols > < remove name ="HttpGet"/> < remove name ="HttpPost"/> </ protocols > </ webServices > ...Show All

  • Ira Hining Create and array or search within parenthesis?

    This is an example document (doc).   I am trying to create a program in Visual Basic (VB).   What this program needs to do is search through a doc for acronym’s.   After all the acronym’s are found it creates a acronym table at the end of the doc.   90% of   all the acronym’s are within parenthesis.   Not sure exactly what to do about the other 10%.   I have a Master Acronym List (MAL) that is a table that can ...Show All

454647484950515253545556575859606162

©2008 Software Development Network

powered by phorum