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

Software Development Network >> Visual C#

Visual C#

New Question

Problem reading numbers from Excel files using OLEDB
How to Set columns width in a Win. Form Datagrid at runtime?
Removing the double quotes from a CSV file.
Voice Chat in C#
RightToLeft MessageBox !!
Video + Audio Confrence, Need Help
converting from nvarchar to money
Ampersand
hooking other applications messages Challenge
Visual Studio's propertygrid - How do I reset it?

Top Answerers

Velimir
Larry Rap
Sonu6
Santi1
 平 明?
Brunni
MattyP
Niezgodka
almargob
Obble
Delphi Technology Solutions, Inc
Only Title

Answer Questions

  • Ryan Lamansky Problem with WDS Filter

    Hi - I recently upgraded to the most recent version of WDS (2.6.5 ) and Windows Live toolbar. Maybe not a good thing to do at once, but I now get the following error message literally dozens of times a day: " Windows Desktop Search Filter has encountered a problem and needs to close. " I select the "Send Error Report" button (Microsoft should have received a few hundred from me by now) and continue with what I'm doing. ...Show All

  • Rosiness using a PointF type object in a Property

    Anybody have any idea why I can't get/set a PointF variable that I've defined inside a class: <snip> private PointF _shoulderPoint; internal PointF ShoulderPoint { get { return _shoulderPoint; } set { _shoulderPoint = value; } } ShoulderPoint.X = (float)34.4 ShoulderPoint.Y = 25.5f </snip> both of the last two lines give me a compile error: Error 1 Cannot modify the return value of ...Show All

  • Richc12345 How do I use XSD in 2005

    I am a beginner with C# and I am trying to use datasets. I have been tiring to find some good books on how to use xsd or dataset class in VS2005 and haven’t' found much like this. Does anyone know of good examples or books I can buy that has this information. I understand Datasets (limited) but xsd just are confusing. Any help appreciated No Sql server I do trust the ...Show All

  • JavaBoy 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

  • mbieweng System.Web.Mail and reply to field

    Hi I am using the above namespace to send mail.Does anybody know how to add ReplyTo to the message so that when user replies they reply to the specifed ReplyTo address and not the from address. Thanks Thanks I will try it Hi, You need to add it to the Headers Collection of MailMessage object: objMailMessage.Headers.Add("Reply-To", " someemail@somewhere.com "); Regards, Vikram ...Show All

  • SR2006 Voice Chat,Audio Streaming

    Hello everybody... I have a TCP/IP client/server chat application.I want to add voice chat feature to my application.What is the start point How can I implement this feature in c# How can I implement audio streaming in c# Please guide me. Note : My application works on LAN and is not on the internet. You can download complete source code and demo of my chat program from here. You need .Net FrameWork 2.0 http://www.codeproject.co ...Show All

  • Samyag1 Making a window/control/panel dockable

    I'm trying to mimic the same action on my form as the "Properties", "Solution Explorer", "Server Explorer", "Class View", "Toolbox", etc. tabs within the .NET IDE. What I want to accomplish is to be able to make my PropertyGrid control on my form perform the same way as the "Properties" tab, ie. be able to have my PropertyGrid control slide in and out of the side of my form, ...Show All

  • David Krmpotic Equality comparison of generic arguments

    Given the following class. public class EqualityExpression<T> {   private T _x = default(T);   private T _y = default(T);   public EqualityExpression(T x, T y) {     _x = x;     _y = y;   }   public bool IsTrue() {     return _x.Equals(_y);   } } The result seems correct - however, I know that there is a problem her ...Show All

  • Toni Chaffin security que

    Your code would like file I/O permission, but it can run without this permission. You plan to request the permission and trap the error that occurs if the permission is not granted. Which SecurityAction flag should you use with the FileIoPermission object A) SecurityAction.Minimum B) SecurityAction.Optional C) SecurityAction.Demand D) SecurityAction.RequestRefuse ...Show All

  • Josh Ledgard Detection of thread executing

    I have read up some on utilizing threads, being a newbie to programming in C# and converted a major function in my application to execute in a background thread (to stop the display from freezing up if I switched to another application). The threading worked perfectly and it even terminates itself after completion. The only complication I have is that I cannot update the various text boxes on my form because they are part of other system thre ...Show All

  • RyanMoore Strange behavior C# compiler on internal members

    Hi, I encountered a strange phenomenon when reflecting over some public members of internal types. According to the C# Language Specifications v1.2, paragraph 3.5.2 on Accessibility domains it holds that "If the declared accessibility of M is public, the accessibility domain of M is the accessibility domain of T". Here 'M' is a member declared in type 'T'. According to this definition I'd expect declared public members to be compiled as internal ...Show All

  • CodemanV How do you cast an object to a ComboBox Item to Select it....

    Hi all, I have a very simple class that has two properties (ID, and Desc). Now I use these to populate the ComboBox (setting the ID as DataValue, and Desc as TextValue) - the population of the Combo Control is fine. (stripped down example is below) public class RecGeoTree : MCS.PocketPC.Record { public int m_nElementUID; public string m_strElementDescription; } (Now I have a ComboBox populated with these RecGeoTree objects - tho ...Show All

  • &amp;#42;Elad&amp;#42; input box

    There is a input box in vb.NET is there one in c#. If so can you give me an example If you don't mind VB.NET runtime dependency in C# application, you can even add a reference to Microsoft.VisualBasic assembly and call InputBox function implemented there: string message = "Enter a value between 1 and 3" ; string title = "InputBox Demo" ; string defaultResponse = "1 ...Show All

  • J73 Drawing Windows borders on user controls

    Hi, I have a user control which I have created, but for the life of me I cannot figure out how to give this control a border like Windows XP common controls have (with visual styles enabled). I have used the familiar CreateParams way for a while now, using WS_BORDER for FixedSingle and WS_EX_STATICEDGE for Fixed3D, but these both give pre-WindowsXP border styles. How would I be able to create the nice, blue border Windows XP common controls h ...Show All

  • Greg Schechter - MSFT How to dynamic get numeric min and max value

    I want to get numeric min and value by Type.  But I don't know how to do it in .net using System.Reflection; int i = 0; Type intType = i.GetType(); object minValue = intType.InvokeMember("MinValue", BindingFlags.GetField, null , i, null );   int .MinValue   (returns -2147483648) and int.MaxValue. These are available for all built-in numeric types. Sorry I think you get me wrong. What I mean is, I ...Show All

697071727374757677787980818283848586

©2008 Software Development Network

powered by phorum