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

Software Development Network >> Visual C#

Visual C#

New Question

How to make a method in a windows service.
Conversion from VS2003 to VS2005?
How to store list using Settings Designer (in 2.0)?
help translate code
button or menu item on the caption bar
how to point to a set of parameters using delegate
create avi
Conver Code...
space in file path!
multiline linklabel ???

Top Answerers

Captain Hook
emtiez
BeyondTheSunset
domls
dys
dshaykewich
Begemot
Seva Akkerman
vitich
Andreas Asterlund
California Literary Review
Only Title

Answer Questions

  • RBear3 Are there any Word-like font list boxes? | Fonts

    Are there any Word-like font list boxes Is there any other way to select the font without going into the Font Dialog Mateusz I guess the selected index of your combobox is "-1", nothing selected. It works. Now all I need is this: When a user selects a font, the font in the Rich Text Box changes. How can I do this Mateusz ...Show All

  • Puffeltje use win32 in c#

    im trying to use a win32 dll in my project so do i need to add a reference to the dll till now i wrote-   [DllImport("DLLName")] public static extern void methodName( int t); i put the dll in the directory of the project and in main i tried to run a method --> methodName(2); and im getting the exception -  Expected class, delegate, enum, interface, or struct what im missing what else i need to do thanks in advanced ...Show All

  • almazv What is the proposed way to define references in .NET?

    Status ------ Currently we use two different methods to define references between managed components, namely project references and .NET references to reference assemblies (details below).  Both methods are not fully satisfactory.  We would like to know: (a) Is there is a better referencing mechanism available in VS8 (better than the ones described below), or (b) does MS plan to change the support for references in future versions of V ...Show All

  • marco_polo14 Explaination

    There is allways multiple choise for casting object. A single location is to use System.Convert.ToDoulbe(blabla) But you can allso us implicite cast (blabla as double) or the iConvertible interface (((IConvertible)o).ToDouble( System.Threading.Thread.CurrentThread.CurrentCulture)) Can someone explaine me the reason why use Convert instead on IConvertible as performance seem to be identical. Thanks You can use the is keywo ...Show All

  • Seth Wenzel multiple pages in windows form

    you saw the book view in Ms Word for sure.(multiple pages not in print or report) how we can create this kind of view in Visual Studio .net which container control must be edit There's nothing built-in to handle it. You just handle to handle drawing to the text yourself, putting one page on the left side & one page on the right. I want to have a simple multiple pages data in my form. I have a dat ...Show All

  • Sixfore NO IDE file for Microsoft Samples?

    I download the sample apps from http://msdn.microsoft.com/asp.net/reference/design/templates/default.aspx . After I installed them, I wanted to loaded them into VS but there a no IDE file to load. What I am missing Thanks Ralph Ralph, These Templates need to be copied into your web site application. There is no VS Project, simply copy over the files into your web site project and refresh the Solut ...Show All

  • fishpond777 DrawUserPrimitives with C# 2.0 and MDX 2.0.0.0

    Hello! Im currently trying to develope a game engine enigine with C# ( 2.0 ) and the DirectX SDK 2.0.0.0. BUT there is a problem i cant get a vertice on the screen since the DrawUserPrimitives is not working as it did before. Is there something i should use instead Im following this guide: http://www.thehazymind.com/archives/2005/06/tutorial_4_more.htm Have a nice day! ...Show All

  • Riya Mehra Create shapes, rectangles and ovals that can be dragged and dropped in a page

    Hi! I am trying to create rectangles and ovals which once created can be dragged and dropped around a boundry. Also, I am trying to create arrows that can be linked to the objects so that when I move around the object, the arrow moves along with them as well. What I am thinking is something like autoshapes in Word or Excel. Any help will be appreciated. Thank you. It sounds like you need GDI: GDI+Tutorials for Beginners Graphics Pro ...Show All

  • dmarlow Multiline comments auto-add "*" is driving me mad!

    Try this: (1) Start a multiline comment by typing /* (2) Press return. (3) Aaaargh! Where did that extra "*" on the new line come from I don't want it! Is there ANY way of turning off this unwelcome behaviour It's seriously trying my patience having to press Ctrl-Z EVERY SINGLE TIME I PRESS ENTER IN A MULTILINE COMMENT! Grrrr! [EDIT] I see from this thread that there's no way to turn this off: http://forums.microsoft.com/MSDN/ShowPost.aspx PostI ...Show All

  • SoulSolutions Explicit Conversion to UInt16 on Generic Type using Enums

    Hiya, I have a small problem I need to solve and I haven't found an elegant solution which leads me to believe I am missing something. I have created a generic class, lets call it "MyClass<T>" I want it to store different Enums that I've defined as type T. I want to be able to cast the type T to a UInt16 (ushort) and also take a UInt16 and cast it back to type T. Example: public enum MyEnum {     This, &nb ...Show All

  • Bukola Outlook 2000 crashes on exit with WDS installed

    I ran into 2 problems with WDS version 2.06.0000.2083. I have just installed WDS for the first time on XP SP2. I don't have MSN Search Toolbar installed. My Outlook setup doesn't use Exchange and just connects to my ISP to retrieve email. The problem I have is that Outlook crashes on exit. I can post memory dump if necessary. Additionally, if I let WDS finish indexing while Outlook is up, WDS doesn't ever find anything in the email message ...Show All

  • &amp;#34411;&amp;#35960; invalid cast

    This piece of code works fine and needs no explicit cast in vb.net. itemId = arrCart(cartId, i) When I converted it to C#, however, it complained that it cannot do the implicit conversion. So I tried: itemId = (int)arrCart[cartId, i]; But I get an exception error read: Specified cast is not valid. itemId is an integer and arrCart is a two dimensional array object: int itemtId; object[,] arrCart; Can anyone tell me how to correct this ...Show All

  • fanboy Help required with a custom PInvoke

    Hi people... I could really do with someones expertise today! I have the following c dll that I need to call within C# extern "C" DECOMPRESSION_API int _stdcall Decompress_Event(unsigned char * inArr, //IN: BINARY DATA int ArrSize, //IN: SIZE OF BINARY DATA unsigned char * outArr, //OUT: ASCII DATA int maxOut) //OUT: Maximum length of returned character stri ...Show All

  • Annddrew C# - Namespaces - accessing of sub-namespaces

    Consider the following code snippet, in a file: namespace NamespaceA.NamespaceB.NamespaceC { public class ClassC { public static string StringC { get { return "string c" ; } } } } Now, I want to be able to access the property from within another file. The following works - using NamespaceA.NamespaceB; namespace Tester { public class TesterClass { public string String ...Show All

  • Paul Whittemore AspNetSqlProvider

    I have an error when i am try to make web partzone without using sqlexpress I want to use sqlserver2005 entreprise when i am try to create AspNetSqlProvider test failed and i have this error (An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Networ ...Show All

789101112131415161718192021222324

©2008 Software Development Network

powered by phorum