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

Software Development Network >> .NET Development

.NET Development

New Question

Getting a File's size on disk
What's a good way to add record to an xml file
Gridview need help
Getting cell data value
Row index and problems with deleted records
How to store the Object in database
Problem with com to .net interoperability
Questions about web services in 2K5
How do I develop JScript .net applications in Visual Studio?
Counting records for main category in relational table

Top Answerers

DrorNahmias
leshay
abhidy
John Tolmachoff
Michael Kenney
smilesai
xensu
jimh12345
reelbigfish37
ctlatd2
D.I.S.C. GmbH
Only Title

Answer Questions

  • Donald Burr What is appropriate for this?

    Hello, I currently need to make a "list" of paths to a file. What is appropriate for this kind of a list a database or something else Thank You very much    Keehun Nam Thank you, for some more detail, I need to make a table which a user can look through with the file names and paths and the program to writeXML from that table. The quantity of paths really depend on the user. But it's not going to be like a thousand but I ...Show All

  • Windrider67 Scalability application writing in C#

    Dear expert, I want to write a game software, which will have Server Program (Service, in C#) and Client Program (in MFC). I need to develop server program, which should be scalable. The no of add on server is not fixed, so extra server will add as processing speed will slow down. So how would I design my application so that I could easily achive the scalability Do I write own code for scalability Or what ...Show All

  • SteveRyder88 signing file and store as p7m

    Hi I need to sign a file and save it together with the signature as a p7m file. Found some new classes in .net 2 (SignCMS), but I have no clue how to use .... does anyone have some example. Also tips for .net 1.1 are very welcome! Thank you! Right -- you need a certificate which has a key capable of creating a signature. Your certificate might just be for key exchange, for instance, in which case the PKCS c ...Show All

  • Ahmet Gurcan SerialPort class and the ReadTimeout

    Hi There, I'm trying to use the SerialPort Class from the new .net 2.0 framework. I'm communicating with a serial device that answers queries. SerialPort port = new SerialPort("COM1",9600); port.ReadTimeout = 3000;  // 3 second timeout port.NewLine = "\r"; port.Open(); port.WriteLine("Request"); string response = port.ReadLine();     // this line takes 3 seconds to complete port.Close();   The problem ...Show All

  • AJB123 How to change the TextMode to Multiline in javascript

    Hi,   I would like to know how to change the TextMode property (Singleline,multiline,password)in javascript.Is there any possibility.     Thanks in Advance You can not change from a textarea(multilineP to a textbox(single). Eric ...Show All

  • KGW Any .net API for key registration, verification?

    I am making a software and i wanted to provide on license basis. How can I embed a key registration/verification. Does microsoft provide out of box facility to check or create (Like some security packages)   or do I need to go for third party vendor libraries Thanks, Jil. Try to use  Microsoft Shareware Starter Kit Thanks TAG. Jil. ...Show All

  • rico81 Stored Procedure

     I would like to make a stored procedure with date part first day of the week Friday and want to have it so sales for each customer are added together each day and at the end of the week i can see what each customer has brought and the total amount each customer has spent.And can anyone tell me can you tie a stored procedure to a click event in a windows form.Hope someone can help thankyou.    ...Show All

  • Varsha Sharma is there any kind of Boolean type SQL server

    Hi, I have a boolean check property of my checkboxes in VB.NET. how can I send that value to SQL server, is there a boolean type in SQL server when I m designing the table. Thanks Amazing that works perfectly. Thanks Do a ternary operation on your boolean to convert it to a bit. boolValue 1:0 Ok then I guess I ll do that thanks a lot You can directly bind checkstate property of checkbox to the binding sour ...Show All

  • ryan_gartner Deploying the .NET Framework with an application

    I have tried to deploy an application onto a computer which does not have the .NET Framework installed, and was soon prompted to download it from the Microsoft site.  However, I would prefer to be able to install the .NET Framework (Version 1.1.4322) at the same time as the application. I have since downloaded the plug-in and rebuilt the application, but this leaves me with the .msi file, the setup.exe and the dotnetfx.exe in the ...Show All

  • Rohidas K Localization Guidance

    Hi! I'm looking for any guide or walkthrough on application localization. Pattern & Practices site ( www.microsoft.com/practices ), which contains very valuable documents on several subjects, does not include one. Are you aware of any guide that deals with several localization issues, such as Windows Forms, ASP.NET and Class Libraries localization, exception localization, sharing common resources among assemblies, organiz ...Show All

  • Elif Onalan DataGridView able to display different tables from .mdb?

    Hi, What I need to do is probably extremely simple to do but it seems I just can't find out how. I want to: -Display a form with a datagridview on it. -A button with an OpenFileDialog, which will be used to choose the .mdb file to load. -A combobox showing all the tables available in the .mdb -I want the datagridview to show the table selected the in the combobox...<---That's where I'm stuck... How the heck is it possible to do tha ...Show All

  • Gotham Migration from 1.1 to 2.0b2 - Could not load type 'SingleTagSectionHandler' from assembly 'System.Configuration'

    Hi All, I'm migrating a perfectly working app from .Net 1.1 to .Net 2.0 b2 and I'm having very hard time to understand why I'm getting the following exception: "An error occurred creating the configuration section handler for ColumnMappings: Could not load type 'SingleTagSectionHandler' from assembly 'System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. (C:\Documents and Settings\...\MyApp.EXE.config line 5)" ...Show All

  • butt25Man DataTableCollection - Why does this line not compile?

    Why does this line not compile DataTableCollection myvar = new DataTableCollection(); The error says that the class as no constructor. It's a public class, sealed, and has now static members - how do you use this class How does the DataSet class instanciate this class and return it as a propertly Thanks in advance for your time. What is your motivation for trying to do this What are you trying to ac ...Show All

  • EzoRam Internals of remote object creation

    Hi all, When you have a code segment like the following: ChannelServices.RegisterChannel(new TcpClientChannel()); RemotingConfiguration.RegisterWellKnownClientType(typeof(TransactionMaintenance), "tcp://localhost:1235/TransactionMaintenance"); this.transactionMaintenance = new TransactionMaintenance(); I wasn't able to find a link between the type registration and the object instantiation. If you inspect the IL for this code the object instantia ...Show All

  • P.GopalaKrishna regsvr32 and regasm

    Can anyone tell me what's the difference between regsvr32 and regasm Thanks, Hi, REGSVR32 : This is used for registering a COM based DLL. More information here . REGASM: This is used to register a .NET Assembly for COM Interop. More info here . Regards, Vikram ...Show All

545556575859606162636465666768697071

©2008 Software Development Network

powered by phorum