| Thread | Last Post | Replies |
|
| Creating a UI as an ActiveX/Com | 19 Feb 2007 18:14 GMT | 2 |
Could I create a nice interface using C# forms and compile it as an ActiveX control to be using in other languages? The interface options in C# are much nicer (and most importantly less work) than the language the core of my application is written in (VFP 9) and I would
|
| Trial versions of MS software require to buy programs just to extract? | 19 Feb 2007 18:14 GMT | 11 |
I downloaded 90-day trial version of Visual Studio 2005 but this thing is only in .img file format and Microsoft does not provide any extraction utility for .img files.
|
| Persistemt https session? | 19 Feb 2007 17:52 GMT | 2 |
Hi, I am trying to connect to an https server and download a file. The server requires a client side certificate, which I have loaded successfully using the X509Certificate class. I then add this certificate to the HttpWebRequest class and connect to the server.
|
| need aero theme in ElementHost | 19 Feb 2007 17:48 GMT | 1 |
I'm currently using the ElementHost (from Integration) to show some WPF controls on my .NET 2.0 form. It works fine, but they don't match the other .NET 2.0 controls (3rd party) on my form that are built to Aero look and feel. How can I load the Aero.normalcolor.xaml theme
|
| XML element addition | 19 Feb 2007 17:12 GMT | 4 |
I used XmlDocument to load from a file. Then how do I append an element to the end? <files>
|
| Changing the drawing cordinates | 19 Feb 2007 16:55 GMT | 1 |
I need to change how a image and text appear on a screen. So instead of using the Top/left X/Y position to draw the image, I need to set the drawing origin to be the bottom/right. When I am drawing images only, I use the rotateat property, but when i include text, this does
|
| Why does .NET raise_XXX proxy code lock on a mutex. | 19 Feb 2007 14:56 GMT | 3 |
Maybe I'm not understanding things. I have a multi-threaded callback producer (Unmanaged C++), which fires into a managed proxy class, which in turn calls into a managed C++ consumer (mixed mode DLL). From the managed C++ class I have defined
|
| Redirecting File input to Memory | 19 Feb 2007 14:46 GMT | 13 |
Here is a head scratcher for you all: We were wondering if it is possible to redirect file input to a place in memory (say a byte array for example). More specifically, if a function were to take only an input string directed to a file path (physical hard drive location), is ...
|
| How to scroll two Richedit in parallel? | 19 Feb 2007 14:27 GMT | 1 |
Is there any way of scrolling to rich edit in parallel in C#? Thanks
 Signature La ventaja de ser inteligente es que así resulta más fácil pasar por tonto.
|
| SQL Statement in C# | 19 Feb 2007 14:21 GMT | 20 |
I always have trouble writing a SQL statement when it comes to the handling of the quotes. Can someone please help me with this line of ocde? I know I need to have "Armed Away" in quotes too (I believe) string sCommand = "SELECT CommandString FROM Commands WHERE CommandName =
|
| Collection property does not update control | 19 Feb 2007 14:13 GMT | 1 |
I have a collection property in my custom control like this one : [Category("Behavior")] [Browsable(true)] [Description("Column Collection")]
|
| Need a combobox with typed items | 19 Feb 2007 13:12 GMT | 6 |
I need a combobox where the items are typed as string - not object. And another where the items are from a class I generated. Can one make such comboboxes from System.Windows.Forms.ComboBox? If that is not practical I appreciate you telling me that?
|
| Merge sort on Linked List | 19 Feb 2007 12:29 GMT | 7 |
I have to write program in C# to merge sort a linked list (doubly linked). Is it true that the best way to do it is copy it into an array, sort it and then convert back ? I'm new to C#, but I tried to develop a merge sort program myself, but
|
| How to create an instance of a class from a variable? | 19 Feb 2007 10:45 GMT | 10 |
I need to create an instance of a class whose name I have in a string variable, let's say that: string myTypeName = "MyType"; and in a result I need the equivalent of:
|
| [Newbie] SqlDataReader - What is the best or proper way to gain access to the field value? | 19 Feb 2007 10:01 GMT | 1 |
Many thanks in advance! ... SqlDataReader reader = cmd.ExecuteReader(); ...
|