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

Software Development Network >> Visual C#

Visual C#

New Question

Conversion Problems VB Terms Not familiar
comboboxcolumn in datagridview
Unable to update the dependencies of the project
FTP -- list files in directory
Master Page Issues
Generic.Dictionary ContainsValue doesnt work
Need help on getting this code to compile!
Nullable type testing against null
convert number to char
GridView columns

Top Answerers

Dave Phillips
Fredrik G
Naveen Kohli
PoulH
Aleksey777
CoolRen
gdmccarty
steve1977
DelWare
Joni
Labeep
Only Title

Answer Questions

  • Ike Where do I put Using System; !!!!

    I have a form using Web Developer 2005 and C#, and I'm after putting the code behind and the c# code into the same file, rather than putting them in separate files. I want to open a connection string, but when I put Using System; and Using System.Data.Oledb; at the top of the script it says its an invalid token in class, struct, or interface member declaration Where should I put it Thanks! Thank ...Show All

  • joejavacavalier2001 Get a list of Delegate on Event

    Ok, What I want to do is retreive all the delegate that is attached to an event. Let's say i'm attaching several deletages to a button: IE: myButton.Click += new System. EventHandler ( this .myButtonClick1_Click); myButton.Click += new System. EventHandler ( this .myButtonClick2_Click); myButton.Click += new System. EventHandler ( this .myButtonClick3_Click); myButton.Click += new System. EventHandler ( this .myButtonClick4 ...Show All

  • SpecialTee Big problem - Regular Expression

    Hi I'm trying to build an regular expression to read this data Thu Jun 22 08:08:16 2006 Acct-Session-Id = "00001023" Cisco-AVPair = " call-id=226F99C2-11611DB-856D832F-210CC2EB@10.0.11.31 " Cisco-AVPair = "iphop=count:1" Cisco-AVPair = "iphop=hop1:10.0.11.31" h323-setup-time = "11:07:31.687 UTC Thu Jun 22 2006" h323-gw-id = "Celular32." h323-conf-id = "1FE0AF6C 011611DB 856A832F ...Show All

  • MainePaco URGENT! Runtime error

    I've got to demo a project for my degree tomorrow and after running my final build on other machines it seems it only works on mine. The error is: EventType : clr20r3 P1 : userfriendlylatex.exe P2 : 1.0.0.0 P3 : 447b4557 P4 : system.windows.forms P5 : 2.0.0.0 P6 : 4333aefa P7 : 1979 P8 : 2 P9 : pszqoadhx1u5zahbhohghldgiy4qixhx This seems to be an unhandled exception but how do I find where this is Really apprecaite any help. ...Show All

  • sapr connection to MSDN library directly.

    How can I use the MSDN library to get a help within the code of the C# project. (e.g., using F1 key). when I am using F1 key over a word like bool I get the message : Information not found instead of getting the discription of bool keyword I am installing the MSDN libraray 2005 , but I can't get a connection to it from the project code directly. I must open it in a separate window and search it.   ...Show All

  • Curious1 AccessViolationError, how to fix?

    Using C# express beta 2, I'm getting an AccessViolationError on even very simple forms. It was working fine last night, now I can't get any new form to work. IE, I go to New Project, Windows Application. Add a single Label and click debug. It builds with no problem, but when it goes to debug I instantly get the exception. However, if I open a project I created last night, it works perfectly. I have restarted the IDE and restarted Windo ...Show All

  • justwanttoreportabug Hardware Information

    Hi , I want to display some hardware information and I wrote this code. ManagementObjectSearcher searcher = new ManagementObjectSearcher();             foreach (ManagementObject processor in searcher.Get())             {           ...Show All

  • Raffaele Rialdi But wait, it gets better.

    Cannot install/re-install MS DeskTop Search (nor toolbar): "cannot remove older version"; running XP Pro on Intel 865 motherboard with 1 gig of ram and 3Mhz Pentium 4. Error message "cannot remove older version" is response to running new download; nothing which looks remotely similar to desktop search shows up in {Remove Software} nor do I find any version of anything which looks like desktop search in \Programs\..., incl ...Show All

  • Steve Cochran Image size changing during rotation

    I copy pictures from one directory into another. I rotate some of them. Average size of the picture is 0,9MB. When I copy images without rotating file size doesn't change, but when I rotate this image it size is smaller (about 4 times). Did I loose some quality of this image Code: _stream = new FileStream(@"C:\test.jpg", FileMode.Open); Image _photo = Image.FromStream(_stream); _photo.RotateFlip(RotateFlipT ...Show All

  • ludmila string to ToolStripMenuItem.ShortCutKeys (.NET2.0/c#)

    hello, how can I convert string "Ctrl+D" to ToolStripMenuItem.ShortCutKeys in .NET 2.0/C# Designer for Ctrl+D do this: this.myStripItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D))); However I have shortcuts stored in parameter file in String format and Can't find procedure for this. thank you. Michael, I have the f ...Show All

  • Pawel Olszewski Referrer not working...

    Hi, I'm using custom errors in my web.config file to redirect to a page called, 404.aspx. It' working perfectly, it returns the page that was n't found but, not the referrer where the user clicked to get to the wrong page... I'm using Request.referrer to get it and it doesn't work, is there a way to get that information Thanks hi, for web forms its better to ask in ASP.net forums http://forums.asp.net hope this helps ...Show All

  • Alan S Tang hooking other applications messages Challenge

    Hi Hi i want to know when user changed the foreground Window .. So i want soemthing like a callback.. that will call me when windows is about to send a message to application that she now has focus.. Any ideea Any function to interop with or.. Please help guys! btw.. not threads allowed . so will you share one method of doing this.. i neeed to make my costum explorer(status bar).. to show all programs in it and show what app t ...Show All

  • allears42 urlEncode

    Hi, I'm working with Windows Forms in VS.NET 05. I'm trying to use HttpUtility.urlEncode from System.Web. But because i'm working with winforms I can't use urlEncode. It doesn't exists for winforms. Does anybody knows a good equivalent thanks Use System.Web.HttpUtility.UrlEncode. I hope that solves your problem. I hope you have added a reference to System.Web as well. ...Show All

  • Marcelo Hernan Ruiz Passing data between class and form in C#

    hi.. i have to pass some data from a class file to form which is having richTextBox .. any sort of help is appreciated. thanks in your form1 put public void append_rtbox (string s) { rtbox.AppentText(s); } then try class myClass { public myClass() { } public void myFunc( ) { Form1 obj=new Form1(); obj.append_rtbox("MY DATA"); ----- } } ...Show All

  • dhesmer How to prevent a form from being activated/gaining focus.

    I'm working on a project where I want to be able to click on a form but not have the form keep focus. Although not what I'm working on at the moment but the Windows On Screen Keyboard is a good example. The OSK when clicked on doesn't take focus, but keeps the focus on the control that had the focus before. It does this but still is able to proccess an onclick event and send the keystroke over to the control that has focus. I'm needing to do som ...Show All

535455565758596061626364656667686970

©2008 Software Development Network

powered by phorum