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

Software Development Network >> Visual C#

Visual C#

New Question

RichTextBox Spell Check w/ Word Interop
Get Ticket-Granting Ticket (TGT) from memory cache
Generics & Type Casting
exporting millions of records
how to dealloc memory allocated by COM server?
datagrid view real NOOB
How can I code this?
line breaks in assembly description
Thread Synchronization C# --> C++
webbrowser

Top Answerers

T0MM0
cjweis
sdickson
Thanh Duong
bjohns9959
Mark Kenworthy
S. B.
fremontca
MBE
John280459
FreeTDS
Only Title

Answer Questions

  • khanfauji Parsing a string

    Hello guys, i'm searching for an advice of how to parse a string. here is an example: --bla345"cool"but no-- And I need only the text double closed by ", which is 'cool'. My second question is about parsing multyline comments /* */. So if i have --bla bla /*nice thing */ alabala-- my target is get the 'nice thing' string away of the "sentence". Hope someone will find time to help me :) ...Show All

  • KarlH MouseMove event on a parent panel

    Hello, Here's what I'm trying to do. I have a panel the size of my application window. I want the panel's MouseMove function to be called when the mouse moves over it. This part works beautifully. However, when I add a small child panel to this panel, the original MouseMove event doesn't fire when the mouse is over the child panel which is over the parent panel. It only fires when I move the mouse over part of the parent pa ...Show All

  • Kaisa IEnumerable<T> compile error

    Hi All, I have a class that implements IEnumerable<T>. public class ShiftBuffer <T> : IEnumerable <T> I am wrapping a Queue<T>. I have implemented the method: public IEnumerator <T> GetEnumerator() { return null ; // queue.GetEnumerator(); } However I get a compile error saying that I have not implemented IEnumerable.GetEnumerator() Error 1 'CSharpUtilities.Collections.ShiftBuffer ...Show All

  • Carlos Pieren What is the use of "STTBF".

    Hi, Can any one tell the use of " STTBF ". Really it's a great service to us. Thank you very much. Can you give some other link for getting online information regarding this issue. Where I will find the File Format information of Microsoft word 97, 2000, XP and 2003 It could really help to us. Cheer. Thanks for quick response. Actually I will using Syncfusion DocIO and Aspose.Word products. I w ...Show All

  • Luca_Dellamore - MS deleting from text file

    i want to delete a specific part of text from a file..can i do it using any files&streams method thanks in advance You cannot delete part of a file. You need to read the file, change the text and overwrite the file. you can delete the text but u have to some extra work. First read the document in a string or anything u prefer, then look for the text(u want to delete) and remove that t ...Show All

  • Edi Buslovich Remove " - quotations marks from a csv file

    Hi everyone, I have a CSV file (actually more than 1, all comma separated not tab) and i need to remove the quotation marks from it; I need to code a win application in which to specify the file and the the application to remove the " . I am new to C#3 so pls any input is appreciated. Thank you using System.IO; string filename = ...; string contents = File.ReadAllText(filename); File.WriteAllText(filename, contents.Replace("\" ...Show All

  • PradeepKV FAXCOMLib

    Has anyone had any luck to get faxing working with C# Here is the code I have using System; using FAXCOMLib; namespace ConsoleApplication3 { /// <summary> /// Summary description for Class1. /// </summary> class Class1 { public Class1() { } public void FaxDocument(String TheFile, string faxnumber) { FAXCOMLib.FaxServer server ...Show All

  • PaulBSteelerFan Covert String or Object to Hex

    Hello Everyone, I have something like this .... object var = property.Value; I want to change var to hex, how can I do it.... In C or C++ we use to do something printf("%x, var)....does the trick.... I'm sure will be really simple, I'm not doing something correct..... Thanks, Harsimrat int i = 6; i.ToString("X"); this definately works. What were you doing You sh ...Show All

  • Gary F Can you put a Image into a ListView with a Grid?

    I was woundering is it possible to put a Image into a ListView "Grid Style" There is a nice article on code project that added some extra functions to the ListView control: C# List View v1.3 . You can also get the bounds of an sub item and put a PictureBox over the ListView. ...Show All

  • Ovidiu Lazar How to determine if a generic parameter is null or default?

    The following code snippet gives me the compiler error: "Operator '==' cannot be applied to operands of type 'T' and 'T'" void Test<T>(T item) {    if (item == default (T)) // error here    ... }   What is the reason behind this compiler error I just want to see if the item is null for reference types, or default for value types. How can I do this Yeah... both do boxing. I guess if you intend to use ...Show All

  • GuiCai C# generics on conversion operator and constructor

    I have so far a class Expr with a constructor taking a string, and the following two conversion operators. public static implicit operator Expr ( int expr) {    return new Expr (expr.ToString()); } public static implicit operator Expr ( string expr) {    return new Expr (expr); } I have various others, but they all get distilled down to a string using .ToString().  So, the obvious question: ...Show All

  • priyankak richtextbox not keeping font when form is minimized

    I have a form with a richtextbox in it. I have a thread that is running seperate from the main thread. This thread invokes a method in the main thread, sending it a string and a color. This method takes the string, changes the selection font color to the color that was passed in and appends the string to the text box. Here is the code: delegate void printToTextBox(String data, Color color); private void setText(String data, Color color) { ric ...Show All

  • Mike Henderlight Generics - List of items that implement a generic interface?

    So I've got a parser interface: ------------------------------------ interface IParser <T> { T Parse( Type type, string val); } ------------------------------------ And classes that implement this interface like this: ------------------------------------ class StringParser : IParser < string > { public string Parse( Type type, string val) { return val; } } class Int16Parser : IParser < Int16 > ...Show All

  • Pietrus What is these folders?

    Hi. When make a project, Folders with names 'bin' and 'obj' is created. What is held in these folders For running our program on any computer, the contents of 'Release' folder in 'bin' folder must copy in that computer And about 'release' and 'debug' folders in 'bin' and 'obj' folders Thank's. Solution/ Project/ Bin/ Debug/ Release/ The Bin directory contains you compiled code, your binaries. There are two direct ...Show All

  • Marco M Combobox inside datagrid

    Hi all, I am using visual c# - windows Application in that I am not able to insert combobox inside datagrid. Can any one provide the solution for this problem. Thanks in Advance, charles pratheepan this article explains an easy way to do it. http://www.codeproject.com/cs/miscctrl/DataGridZen.asp If you use VS2005, use the DataGridView control instead. The DataGridViewCo ...Show All

363738394041424344454647484950515253

©2008 Software Development Network

powered by phorum