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

Software Development Network >> Visual C#

Visual C#

New Question

FileSystemWatcher hell... stops watching after event
DropDownList in Windows Form
What's wrong with my word.application in multithreads?
How To: Call a method of a Parent form (MDI)
Design Time Collection Editing
Hook Alert or AntiHook for Specify Process
making an excel like application in c#
Context Menu
How to query if a type is a static class using reflection?
Having fun with float (System.Single)

Top Answerers

Embedded Developer
Didymus
MartinHouse
windthorstking
Ethos
Kevin Prendergast
don wingate
thisisme
Bobmmp
raxe
Topix: The Black Eyed Peas
Only Title

Answer Questions

  • nolte Custom types of ApplicationSettingsBase not expandable in property grid

    Hi, How can I make the TestSettings class (below) browsable/expandable in the property grid, when it acts as a property of EngineSettings The code below does not work...what might be wrong p.MsoNormal, li.MsoNormal, div.MsoNormal {margin:0cm;margin-bottom:.0001pt;font-size:12.0pt;font-family:'Times New Roman';} @page Section1 {size:595.3pt 841.9pt;margin:70.85pt 70.85pt 70.85pt 70.85pt;} div.Section1 {page:Section1;} ...Show All

  • Stéphane Generic class instances in a strongly typed collection

    Hello everyone, I would like to know how I can store instances of a generic class in a strongly typed collection, where none of the instances have to be instantiated with the same type parameter(s). To illustrate my question: I want to store MyGenericClass<int> a , MyGenericClass<string> b and MyGenericClass<Guid> c (instances of MyGenericClass<T> ) in a strongly typed collection. But a List<MyGenericClass<obje ...Show All

  • SCulver little help here

    Hi all Ok i am developing a sever side and client project. In my server i want to get the client Screen .. My problem is how can i conert the image to string and then send it to the server and when it arrives there the server to assable it to a image type Like this: screeenCapture(client)-----> transform to string ---->send to server ----->server recive it----> convert the string to and bitmap-----> show the bitmap i tried to u ...Show All

  • itsnadeem85 Synthesis of pure tones

    Hi I'm an Audiologist (hearing scientist) who has been using Labview to create some basic frequency discrimination training and gap detection programs for various studies. I am looking to migrate these programs to C# which I am learning. That is I'm a beginner slowly working my way through C# tutorials having done a Java101 course in my undergrad about 5 years ago! My question is how would people go about 1. synthesising a puretone wh ...Show All

  • Pat1234 No Overload Metod

    I'm using this cmd. foreach (String programas in rkey1.GetValueNames()) { ListViewItem item1 = new ListViewItem(programas, 0); item1.SubItems.Add(rkey1.GetValueNames(programas)); listView1.Items.AddRange(new ListViewItem[] { item1 }); } And it's appearing this error: No overload for method 'GetValueNames' takes '1' arguments c-ya, Miranda *UP* :( ...Show All

  • Harvey Norman FTP Login Failed

    Hi everyone, I need your help on the ftp issue. I had used the following code to log in to ftp server. But I had get the following string for sReply 220 test1 Microsoft FTP Service (Version 5.0). I supposed that sReply[0] must be 3 in order to log in. May I know what is the problem behind Thanks private void Login( string ftpUserID, string ftpPassword) { if (!bConnected) txtStatus.Text= "Not Connected to Host&q ...Show All

  • Neela How To: Call a method of a Parent form (MDI)

    Is it possible to run a method from a parentform from a child form Can anyone tell me how Thankx alot Greetz Also have a look at the following post: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=338175&SiteID=1 make the method you want to access public, and reference it from the namespace down (ex: say the method is on Form1 and you are on Form2 you would use something ...Show All

  • vrok137 What is the best way to view a list of object

    I am having a list of object. In the Object have some properties like int and string. class Hang { int MaHang; DateTime NgayNhap; int GiaGoc; int GiaBan; public Hang (){ } public Hang (int MaHang, DateTime NgapNhap, int GiaGoc, int GiaBan) { this.MaHang = MaHang; this.NgayNhap = NgapNhap; this.GiaGoc = GiaGoc; this.GiaBan = GiaBan; } } What is the best way to show a set of list ...Show All

  • IceX Excluding files from release mode?

    I have a couple classes (one per file) that are derived from abstract base classes that are only there to give me easy unit test access to some math functions in the base class. Is there a way I can exclude them from a release build since they aren't used except by the unit test project I'll take that as an ok solution unless someone has a better idea. :) Edit: I just tried that and it can't find the class ...Show All

  • saurin Opening/Closing forms

    I am creating an application. All the forms for the application are in one project. The app starts by loading the Login form. The Login form has a main method to load the form. static void Main() { Application.Run( new Login()); } The app form is used for logging in. If the login information is correct, I want to display the first form for the application (MainForm) and close the Login form. If the login info is correct ...Show All

  • XavierP serious problem

     hi I have a problem, it happens in VS 2003 pro and VS2005. When I write code, even the most simple things: Console.Writeline "enter your name"; I get a error ; expected, even when it is in. I don't know why and have tried a lot of things to no-fix solution. Can anyone help me with this, as I can't seem to cure it. If you have come up with the same thing and found a fix could you share it with me.         ...Show All

  • gmcbay Nullable type testing against null

    I need to test if a Nullable<T> instance is null after it's been converted to an object. My current code fails using this: using System; using System.Collections.Generic; using System.Text; namespace TestNullable {   class Program   {     static void Main( string [] args )     {       System.Nullable< int > n = null ;     &nb ...Show All

  • jon why Error Help please!

    Hello and thank you for taking the time to read this, I'am building an application for a hyperthetical club and I've come accross an error that does not make sense well sort of but I do not see the way around it. In the code below I've placed: /////////////////////// ERROR Accures Here! where it normally jumps out of the code. I have a class with setters & getters as well, but I dont think it is the problem... Ive added data to the array an ...Show All

  • Joshua Sells Writing a txt File problem

    Ok, in my proyect iam trying to simulate a drawing editor, but i want to create a Log File ( drawing.txt ) in this file i want that every line have two points example: {100,100},{200,00} // this for the first line drawn {45,88},{82,89} // this for the second line ... //... etc, for every line drawn so i did in my code a function, fucntion that is called by the event OnPaint public void logactions( Point a, Point b) { ...Show All

  • Synced reading file properties

    how would I go about reading file properties like file name, ect... thanks In the 2.0 Framework there is also the: public static string[] GetFiles ( string path , string searchPattern , SearchOption searchOption ) method. That will let you avoid writing a recursive function by specifying AllDirectories (as opposed to TopDirectoryOnly) for the searchOption parameter. Directory.GetFiles(myP ...Show All

767778798081828384858687888990919293

©2008 Software Development Network

powered by phorum