Software Development Network Logo
  • IE Development
  • SQL Server
  • Windows Vista
  • Visual C#
  • Game Technologies
  • VS Team System
  • Visual Basic
  • .NET Development
  • SharePoint Products
  • Microsoft ISV
  • Windows Forms
  • Audio and Video
  • Visual FoxPro
  • Visual C++
  • Visual Studio

Software Development Network >> .NET Development

.NET Development

New Question

SortedList incorrectly(?) says key exists
Encryption and Decryption in c#.net 1.1 , this may help you
- Are there 4 ways to access the current authenticated user or am I misunderstanding the whole idea
SQLDataReader.GetOrdinal() fails rarely with IndexOutOfRange
Convert string to int
How can I return an object with arguments using CodeDom
how to get the symbol of ASCII code in VB.NET
Get XML from a XSD file
How can I run an User Control using a Web Application...
halt a databind in progress?

Top Answerers

CarlaC
XNA Rockstar
Eileen Ewen
michael aird
KimberlyL
JohnJustice
Michael Bird
Knvb1123
Bill Reiss
asiaindian
sitemap
Only Title

Answer Questions

  • mtaylor794 Convert image to pure Black and white

    I want to convert a tif or jpg file into pure black and white after searching in internet, I find a way to convert a picture to gray scale http://www.bobpowell.net/grayscale.htm but could I modified it to convert to black and white I have no idea about anyone could me THX I still cannot catch the meaning......because I don't know much about the coloring would you mind explain a bit more THX I have tried to coobine the idea and written the following code public Bitmap blackwhite(Bitmap source) { Bitmap bm = new Bitmap(source.Width,source.Height); for ( int y=0;y<bm.Height;y++) { for ( int x=0;x<bm.Width;x++) ...Show All

  • delma Error in using .Net Framework 2.0

    Hi, I have installed Visual C# Express edition. The installation seemed successful (no error during the installation of .Net Framework 2.0, Visual C# Express and MSDN Express. The setup exit without error). However, after I start the Visual C# Express and creat a new Windows Application project, there is error when I click the "Design View" and "Property page" of the form and the corresponding page does not show up. The error message is as following. "The type initializer for 'Gdip' threw an exception." I have no idea what to do. I am using windows XP sp2. Thanks I re-applied XP SP 2 and that resolved the issue. I was getting the same error "Gdip threw an ...Show All

  • Kobingo Moving Items in Array List

    When i add an item to my array list...its starting at the 2nd postion because there is already something in my [0] and [1] positions but i need to take whats in my [1] position and move it to my [2] postion and whats in my [2] positon i need to take to my [1] postion....i tried it like this but it does not work...any help if ( this .tempOrderManifest.Count == 2) { this .tempOrderManifest[1] + 1; this .tempOrderManifest[2] - 1; } You need to backup value before you swap the ArrayList Objects... See this: if ( this .tempOrderManifest.Count == 2) { object tempOrder = this .tempOrderManifest[0]; // Create a backup this .tempOrderManifest[0] = this.tempOderManifest[1]; // Change at index 0 this.tempO ...Show All

  • jermu .net client requirements clarification

    hello there i am developing a new app and was unsure whether to use .NET 2.0 or .NET 3.0. i have been doing some investigation re my end user requirements, and i believe .NET 2.0 will run on windows 98 up. whereas .NET 3.0 requires Windows XP or Windows Vista. could somebody please confirm this for me these are the resources i was looking at: http://msdn2.microsoft.com/en-us/windowsvista/bb188202.aspx http://www.microsoft.com/downloads/details.aspx FamilyID=0856eacb-4362-4b0d-8edd-aab15c5e04f5&displaylang=en thanks thats the thing that came up last time...it is usually stated in the methods you are using in the MSDN documentation. Generally you should be ok. when you say "so ...Show All

  • mabxsi capture the console application ouput into a textfile

    Hi all, I am trying to capture the console application output into the text file(write into the text file).Can anyone of you give me an idea how I can perform this Thanks, rama krishna Use the Console.SetOut method to assign your own TextWriter as needed. But this has nothing to do with XML. Martin Thanks a lot ...Show All

  • MBann Editing and Deleting nodes in VB

    Howdy, I'm working with a program using an XML file, and I'm trying to delete and edit nodes and attributes (well, delete nodes and edit attributes). I've looked around a fair bit, including through these forums, and simply can't find any good easy-to-use tutorial or documentation on this sort of thing. Does anyone know how I can edit or delete nodes using VB.NET, or any tutorials Any languages is pretty much fine (I can sort of try to translate it, but I would really prefer something about VB.net, if anyone has something of the sort). I've looked all over, and can't really find anything that I'm looking for. Thanks so much! Anything really is greatly appreciated. Thanks again! -Robert vbMarkO Thanks a lot for such detailed co ...Show All

  • Ant_59 errors adding a web service with sockets to a C++ project

    Hi everyone, I have a web service which communicates via TCP to a C# program. When I invoke it's methods through a browser, they work fine and can communicate perfectly with the C# program. However, when I attempt to add the web service to a C++ MFC DLL I've created, I get multiple warnings, but with only 2 unique: 1) Warning 3 warning SDL4008 : skipping unrecognized extensibility element, with c:\Documents and Settings\*******\My Documents\Visual Studio 2005\Projects\Extend\Extend\CalcSvc\CalcWS.wsdl 84 2) Warning 9 warning SDL4001 : only one SOAP port will be processed. c:\Documents and Settings\cpappas\My Documents\Visual Studio 2005\Projects\Extend\Extend\CalcSvc\CalcWS.wsdl 104 I am assuming it is because the web service opens a s ...Show All

  • Anthony M Fatal Execution Engine Error (0x7927e03e) Please Help!

    I really need some help from someone that can make it fairly simple. I don't know what I did but when I try to open my ATI Catsyst Controle Center I get - Fatal Execution Engine Error (0x7927e03e). Then I hit "ok" and it says CLI.exe-Common Language Runtime Debugging Services. So if anyone could try and help me I would be greatful. I don't know to many things about computers so it might be a challange. Thanks " "Patch77"@discussions..microsoft.com " < "= UTF-8 B UGF0Y2g3Nw== ="@discussions.microsoft.com > wrote in message news:92d8fca5-55a3-417f-8b8e-a140efcb41ed@discussions.microsoft.com ... I really need some help from some ...Show All

  • Zooma Remoting timeout issues

    Are there any known workarounds for the really annoying lengthy remoting timeouts on down servers This is particularly a problem when using .Net remoting and the server isn't available, it can take up to 2-3 minutes for the line of code to timeout when accessing a remote object. I have tried implementing a Ping class before I access the object, but sometimes this just doesn't work if the server is in the process of shutting down... Obviously having an application hang for that long is unacceptable.. I am threading everything however my application will not cleanly close if the thread is hung waiting for a socket timeout. A sample for you.. I've tried setting the timeout property in the channel via code, but it doesn't ...Show All

  • Anand Raman - MSFT NotifyIcon_BalloonTipClicked or any event on NotifyIcon Not working in windows service

    I have a windows service and a windows form is included in the service project. the windows form is having one NotifyIcon. It is working for showing ballon and for all other properties like NotifyIcon.visible etc.. but the events are not firing. Can somebody help me   this .WSnotifyIcon.BalloonTipClicked += new EventHandler (WSnotifyIcon_BalloonTipClicked); this .WSnotifyIcon.MouseClick += new MouseEventHandler (WSnotifyIcon_MouseClick); public void WSnotifyIcon_MouseClick( object sender, MouseEventArgs e) { MessageBox .Show( "hi u r in WSnotifyIcon_MouseClick" ); } public void WSnotifyIcon_BalloonTipClicked( object sender, EventArgs e) { MessageBox .Show( "hi u r in WSn ...Show All

  • RMarmion App config setting to force 32 bit execution for .Net 2.0 apps

    Hi All, We are using some legacy third party components which only have 32 bit versions of it. We need to force our .Net application to run in 32 bit on x64 environement. We do not want to make changes to build process and we are building as "Any CPU" options. Is there any configuration level setting (Similar to forceRuntime setting) that forces application to run in 32 bit mode Thanks for Help Salim You can run all the applications on an IIS 6.0 server in 32-bit mode. See this URL: http://support.microsoft.com/ id=894435 no need to change anything in your build process but this forces all the applications on your server to run in 32-bit mode. The only side-effect that I have fou ...Show All

  • pinoyz Why the difference between Access Query Configuration and Tableadapter Query Configuration Wizard

    I have found that I can run a query using Access query builder works fine but the same query does not work in the "TableAdapter Query Configuration Wizard". Why is this Example: SELECT * from Rental_Agreement WHERE DateSerial(year(end_date), month(end_date) , day(end_date) - 5) = Date() This works in Acess 2003 but not in the "TableAdapter Query Configuration Wizard". Thanks I have a value of 3. Below is doumentation for the problem....... I enter : SELECT * from Rental_Agreement WHERE DateSerial(year(end_date), month(end_date) , day(end_date) - 5) = Date() And receive error message : Error in list of function arguments: ')' not recognized. Unable to ...Show All

  • Docpro777 The relation between ADO.NET DataSet and an EDM Entity

    Hi all, Can you explain how does an ADO.NET DataSet relate to an EDM Entity Thanks FMT Charles, That was very helpful. However, in the video, they didn't say whether the generated classes for EDM Entities are .NET components or just a plain C# classes. Do you have info on this issue Thanks again FMT Hi, A dataset is an in-memory database-like store for your application's data. A dataset is composed of DataTable and DataRelation and DataTables are composed of DataRows. Used as is, the dataset is not strongly type, but you can make it strongly typed by deriving from the DataTable and DataRow classes and adding strongly typed accessors - which the VS designer does ...Show All

  • a.d.m Calling a WebMethod dinamicly

    Hi, I have a webservice that I added to my project using add Webreference in VS 2005, what I need to archive is create a function: callMethod(string name, Hashtable parameters) that receives: name - the name of the Webmethod parameter - the parameters that the web method requires Is there an way to call a webmethod knowing the name of the method Thank you for reading this, Have a nice day, The Invoke method on SoapHttpClientProtocol should do what you want. It should be straightforward to derive from SoapHttpClientProtocol and write your callMethod function. This is how the code wsdl.exe generates is written. Hope this helps. Calinoiu, What Nathan said works fine.... however remember y ...Show All

  • Bobby2006 .NET framework changes with VS2005 SP1?

    Are there any updates to the framework with the SP1 install Thanks no. the SP1 is ONLY for the Visual Studio product, not the .NET Framework. The changes are for the IDE performance/bug fixes and what not generally and has no relevance to the .NET Framework. There maybe an SP1 in the future, who knows, but will state its for the .NET Framework 2.0 ...Show All

888990919293949596979899012345

©2008 Software Development Network

powered by phorum