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

Software Development Network >> .NET Development

.NET Development

New Question

Microphone Communication
data transferred through socket exceeds byte buffer size
How can remove the xml name space attribute from query result in SQL 2005? Many Thanks!
Web Service access.
Addressing a Thumb Drive
No Solution Yet for Layout Problem
Can I Limit rows returned in native data grid in VS05 and SQL Server?
Bound DataTable GetChanges always True when bound to user control
Encrypting the app.config file
Error passing a large variable as a parameter to a remote method

Top Answerers

Munni
BadgerB
Jason Bentley
Kikesegarra
Brian92fs
andymaris
Chandra B
Gabriel PURAN
kallzz
Raghukas
ProFactor Software
Only Title

Answer Questions

  • emgreenberg is it the possible using C#.Net or ASP.net work on the sun product -Iplanet directory server

    i wan to know : 1. is it the possible using C#.Net or ASP.net work on the sun product -Iplanet directory server i wan to do the authentication/authorization 2. how to implement it , can u give me the related hyperlink or some source code samples what i wan is : login.aspx --> login.aspx.cs --> iplanet directory -->login.aspx.cs i need to develop a security module , which can work on window(c#.net) platform and unix (java) p ...Show All

  • Brian5003 internalprotected access modifier? (not internal protected!)

    Hi forum! I'm currently developing a library type project with a bunch of internal types responsible for internal logic. My problem: i can't use these types in protected methods of  public library types! The compiler quits with an "inconsistent access modifier" error. So my question is, are there any plans to add an "internalprotected" access modifier (i.e. protected -- but only internally) to future c# specs The only solution i can come up ...Show All

  • Prakash A Bhat Multiplayer game

    Hi, I am developing a simple multiplayer game in VS 2005 using C#. Each player would have an individual copy of the game running which would connect to a server. The app running on the server would continuously listen on a specific port for the players and when the two players notify their presence,the server app would would transfer information from one player to the other. Can you tell me the .NET classes that would help me here. T ...Show All

  • Madman MSMQ in a Network Load Balancing server farm

    Hi I have a slightly bizarre question based on the use of MSMQ within a load-balanced farm. In general, I can use load balancing to my advantage - I simply replace the physical host with that of the virtual server and I'm laughing. However I have one scenario where I need clients to send messages via MSMQ to the virtual server, but have only one (master) server in the farm process the messages. The master server is decided (v ...Show All

  • cwes99_03 Getting child tables position

    Hello I have a code like this: DataTable masterTabelle= new DataTable("Master"); DataTable subTabelle= new DataTable("Sub"); myDataSet.Relations.Add(masterTabelle.Columns["SubID"], subTabelle.Columns["ID"]);   On a DataGrid's Datasource i set the myDataSet.Tables["Master"]. Now if I navigate through the DataGrid, I'm getting the Position of Master table's row with the CurrencyManager. But through the Master I'm expanding the Child ...Show All

  • Mussye Could I NGEN my application before add it into the setup package?

    It seems the NGEN is used after the program is installed on target machine Could I NGEN my program, add it into the setup package, and distribute the package so that the end user will not cost his time on waiting the ngen processing Yes, I know it is designed as such at this time. What I mean is if it could be designed as what I want : NGEN a program on my machine with a platform architecture specified(e.g. i586, so it could run on almost ...Show All

  • mikehikes Background scheduled service in WebApplication

    Is there a smart way to make a "service" that lies in the background of a webapplication in asp.net so I ever night can send email to my members of my website automatically at for example 00:30 Best regards, Robert Larsson Did you try to run a background thread using Timer() class   Probably that should work for you. Hope this helps. Chakra ...Show All

  • MeirAmiel Any tips for a transition from Access and DAO?

    We right now have a reasonably large commercial application that's written in C++ and we're currently working in Visual Studio .NET 2003, which actually offered us a smooth transition from Visual Studio 6. The application is working against an Access database with DAO, so we get warnings about DAO functions being deprecated when compiling our solution. Looking ahead, we may start using Visual Studio .NET 2005. This raises my first question: Will ...Show All

  • NimoTh Using FtpWebRequest to check if a directory exists.

    I'd like to know if there is anyway i can use the FtpWebRequest class to check if a directory exists before creating it on the server. The reason i ask is because if you try to create a directory that already exists it throws a WebException and disconnects from the server. This gives a performance hit if we are trying to create alot of directories on the server that already exists due to the disconnects/reconnects. TIA, lushd ...Show All

  • Dmitriy Velichkin Preventing .NET DLL execution

    I need some way to prevent my .NET DLL assemblies from being called by unauthorized executables. Is there some way to do that I have tried the StrongNameIdentityPermissionAttribute, but it's not enough. Can be anything, even at low level C/C++ code. I cannot trust in the use of the .NET Framework Configuration tool, because I'll not be an administrator for the systems where the DLLs will be running. But I should constrain the execution of ...Show All

  • CapitanDotNet WSE 3.0

    Hi, I am working with Visual C# .NET 2003 and Microsoft .NET Framework 2.0. I have installed from Web WSE 3.0. How can I use now the WSE 3.0 What have I to do I wanted to insert a reference to Microsoft.Web.Services3.dll but Visual Studio does not accept this reference. Who can help me Many thanks! Valentin WSE3 is only supported in VS 2005 (Framework ver ...Show All

  • milanac Windows Services and COM interop

    Here is what I am trying to do: I have a very simple test DLL that has one operation called 'Get_Stuff(String)' this simply returns a string with some hard coded text. This works fine if I create a windows app in VB and then call the operation on the DLL, so I know the code is right. However, if I create a Windows service (again in VB) and use the same code I get an error. I've set the service to run under my login rather than loca ...Show All

  • custom gljaber XSD.exe and Visual Studio 2005 Team Suite

    New here, so bare with me... In using the new IDE environment VS2005 Team Suite I was assuming there was a way now, since VS2003, to make the creation of C# objects out of XSD's within the IDE , not outside from the command-line with XSD.exe....is this still not supported within VS2005 I can create XSD's in VS, I can edit, export, import, etc, etc...but I can't create native VS language objects out of my XSD's in the tool Doesn't make much ...Show All

  • Txoni Connecting with Linux application with sockets

    Hi there, I need to receive some events from a linux application. I'm doing a windows forms application in VB.Net 1.1 Can I use sockets for that I create a socket and the linux application can send some data into it What are asynchronous sockets Thanks You can definitely do that, though you're probably better off creating a TcpListener. It's higher level than sockets - not as much control, but less room for mistakes and easier to pr ...Show All

  • Craig Regester FormsAuthentication.SignOut - no redirect wanted

      When signing out a user I do     FormsAuthentication.SignOut()   It redirects the caller to the Login-page configured in       <authentication mode="Forms">       <forms name=".ASPXFORMSAUTH" loginUrl="~/N/Login.aspx" />     </authentication>   Ho do I prevent the redirect to happen & ...Show All

123456789101112131415161718

©2008 Software Development Network

powered by phorum