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

Software Development Network >> Visual C#

Visual C#

New Question

Bytes Read
how to make an installation file for my written program in c#
Packet Aleration While in Transit
regain control
C# Compiler heap error - help!
Making It Fullscreen
How to set up a Web app in Visual Studio 2003?
Translate Code: Convert of type
how to block hot keys on excel, word or another application
Taskbar Text

Top Answerers

manish_11
dhble
Jharris65
Den Jos
jmiller76
jbob
blewisjr
Steffen Niekler
Vasia
bs ooi
X-Files Components
Only Title

Answer Questions

  • Alexey_Kiev Problem with variable

    Hi there ... i can't understand why compiler can't find varible if i have declared it... please look at this code: private void button1_Click( object sender, EventArgs e) { bool found; string [] array1 = { "Mikus" , "Anda" , "Juris" }; for ( int i = 0; i < array1.Length; i++) { if (array1 == textBox1.Text) { found = true ; MessageBox .Show( "Atradu mekl to v rt bu. " + array1 + " ir mas va " + i + ". elemen ...Show All

  • Speedy2000 Creating a Process and passing in a string?

    Hello, I am trying to use our 3rd party fax software FaxPress. It requires this line of text to be called during a command line. Our old VB 6 app is doing this but using a shell command. I was told this could be done using the Process class in C#. Here is what I have: /// <summary> /// Faxes attachments to destination /// </summary> /// <param name="output">Output directory for FaxP ...Show All

  • PhilWilson How to Show Code Line Numbering in the Editor?

    How to Show Code Line Numbering in the Editor to show like this 1 2 3 4 5 6 7 etc.. i am using VS 2005 C# express August Open the menu "Tools / Options", check "Show all settings". Goto "Text Editor / All Languages" and check "Line numbers". thanks very much :) ...Show All

  • idkIDE How do i define where to put form (on screen) when it is opened ?

    I have button on my form1 which open's form2, but the problem is, that whenever i open form2 it always opens just ON my form1 and i have to drag it somewhere of to be able to see information on form1 while operating in form2 1) How do i specify exact location on screen where i want my form to be opened. 2) I want my form to be opened exactly near my form1 .. so that form 1 right border is coincident with form2 left border. Is it possib ...Show All

  • KenDavis Enabling Form.Capture

    I'm sorry, I'm trying to find the screen coordinates of the mouse cursor (with System.Windows.Forms.Cursor.Position ) and I've been told several times that I need to enable Form.Capture to get mouse input from anywhere on the screen. I'm not sure how to do that; I've tried several ways and I can't get it to work:         protected override void OnMouseMove(MouseEventArgs e)     &nbs ...Show All

  • PCHOU Persistant Presentation Layer...

    I am interested in designing a presentation layer such as the one in VS 2005 IDE! Could anyone suggest some online reading material where I can learn the fundamentals of managing this idea -LeRoi, Thank you Vijaye, that is what I was interested in! -Will, I'm not clear what you mean by Persistant Presentation Layer - do you mean the designer The designer, with all its feature ...Show All

  • claeys How To Serialize an Object using application settings

    In my application, I need the ability to store user defined data. My desire is to use the new application Settings mechanism (.NET 2.0) I have been experimenting with the various methods of doing this... Initially I used the IDE's application\properties\settings method where you specificy the settings in the gridview and VisualStudio creates the wrapper class for you. I had success doing this but when I tried to serialize the data inside o ...Show All

  • ThirtySix Software how to use the OleDbCommandBuilder in C#.net

    How do u use CommandBuilder to Insert,Update, Delete records in a Microsoft Access Database. The code I was using was this: OleDbCommandBuilder cb; cb = new OleDbCommandBuilder (_Da); _Da is the OleDbDataAdapter. I fill the dataset by the select statment. Here is the code for that: ds = new DataSet (); _Da = new OleDbDataAdapter (); _Da.SelectCommand = new OleDbCommand (); _Da.SelectCommand.Connection = thisconnection; _Da. ...Show All

  • Domer can we make the form transparent in visual c#?

    dear all this is my first paticipate in this forum. I never Worked before with C# and Visual C#. In fact I work as an oracle developer for serveral years, however i dream with the day i can be professional in working with visual c#. I have only one question concerning the interface and GUI capablities of Visual c#. my question is Can we make the form transparent and how thanks in advance Hi Its ...Show All

  • JLesch Operator '&&' cannot be applied to operands of type 'string' and 'string'

    I'm totally new to C# so your help is much appreciated. Here's what I have. string strSummary; if(txtPhnNumber.Text != "" ){ strSummary += "\nPhone Number: " && txtPhnNumber.Text; } The error comes back saying, " Operator '&&' cannot be applied to operands of type 'string' and 'string' " whe rebuilding the site. I'm using Visual Web Developer Express edition. ...Show All

  • Philip Coupar .NET 2.0 release problem

    I have installed the new .NET 2.0 redistributable package from http://www.microsoft.com/downloads/details.aspx FamilyID=0856eacb-4362-4b0d-8edd-aab15c5e04f5&DisplayLang=en which required me to remove the beta version first. Now, none of my Visual 2005 C# Express Edition beta 2 applications will load into the Visual 2005 editor! "Microsoft Visual C# has encountered a problem and needs to close." There is no information about the nature ...Show All

  • Mangix CRectTrack

    Hi, In MFC C++ a class called CRectTrack was available.  It was designed for drawing a rectangle around objects to "select" them.  Is there any equivalent object for C# Thanks. Somebody posted a replacement on codeproject: http://www.codeproject.com/cs/miscctrl/CSharpRectTracker.asp I've never used it, but let us know how it works, this could help many of us who are looking for runtime form design. Thanks, Josh Lindenmuth ...Show All

  • ppv Dictionary of events?

    Is there a way to create a dictionary of event objects How This is what I have: public delegate void MyDelegate(); This is the type of thing I would like: private Dictionary<Object, event MyDelegate> listeners; Is something like that possible I know I could use a List<MyDelegate> instead of an event but I would rather use the event for obvious reasons. Thanks. What do you think I am doing I am att ...Show All

  • TBombadil Returning delimiters with the tokenizer

    The way to tokenize a string in C# that I came across is using the String.Split() function. However, this function does not return the delimiters. I am trying to build a parser but for that I need the tokens as well as the delimiters that split the tokens. Is there something to that effect in C# I note that there is no StringTokenizer (Java/J#) kind of class in C#. Can I get to complete my project in C# or do I have to rever to Java You c ...Show All

  • seizonsha Searching Directories?

    Im trying to search specific directories by file name (and maybe content), but have no idea hwo to do this Chris Vega, this is indeed a easy way to search. Thanks for you reply! But the topic started want to lookup the file content as well meybe and you solution can't be progressed async or with some event when searching of how much percent is completed. When you don't need all this fancy stuff, i suggest you ...Show All

545556575859606162636465666768697071

©2008 Software Development Network

powered by phorum