| Thread | Last Post | Replies |
|
| Image has wrong colors | 23 Jan 2008 00:22 GMT | 15 |
I have a Windows form program written in C# 2005. I continually read a stream of data via TCP that comes from a video camera (NTSC). When I have all the data for one frame I update a picturebox (pbVideo) like
|
| C# Generics | 22 Jan 2008 22:19 GMT | 1 |
I have to be honest I haven't used many generics in my coding; I really want to start using more of them but am having trouble with what is the best way to use a generic with my Send method because the Send method needs to point to different data factories. I really
|
| Dispatcher Memory Leak | 22 Jan 2008 20:02 GMT | 7 |
I have a WPF application that spins off a thread. That thread needs to show a dialog (InputDlg) to get some user input. The From my thread I am displaying the dialog as shown bellow. The problem is that each time I display the dialog (when I call Invoke) some memory is
|
| How do I accomplish typesafe value checking - without typedefs | 22 Jan 2008 19:27 GMT | 4 |
I've spent much of today researching how best to get around C# not supporting typedefs. I relied on them quite a lot in C++ and finally broke down today testing out how best to emulate them. (I toyed with using enum types within ClientRetType<> but this fell apart as enums
|
| RichTextBox hangs when being clicked on while periodically being updated by a background worker | 22 Jan 2008 19:18 GMT | 1 |
Hi Group! I have a simple GUI featuring a RichTextBox and a Button. On Button click, I start a BackgroundWorker that performs a query on the database firing a ProgressChangedEvent for every row. The corresponding event
|
| Stuck on crazy Dictionary/List problem... | 22 Jan 2008 18:59 GMT | 6 |
I'm stuck on this crazy problem. I need to get this list into this type of dictionary object: Dictionary<string, List> I have this collection passed to me named "items" -Animal
|
| Antialiasing the text in Windows Forms Controls | 22 Jan 2008 18:57 GMT | 5 |
I have been experimenting with overriding the Paint event on Win Form controls...more specifically trying to force the text to render as Antialiased text. I have not been successful in any of the methods Ive tried...is there a trick? Any information or examples would be greatly
|
| SqlException: Invalid object name 'sys.table_types' in SqlConnection.GetSchema() after installing VS 2008 | 22 Jan 2008 18:12 GMT | 2 |
I recently installed VS 2008 and .NET 3.5 and am now getting an error executing a .NET 2.0 application. This application has not been opened in VS2008 or converted to use .NET 3.5 and has not even been recompiled since VS2008 was installed.
|
| How do you get an Excel Range in a TextBox? | 22 Jan 2008 18:11 GMT | 3 |
Hi again My C# Form is part of a .xll . I have managed to get the Form to open up but now what I want to do for one of the TextBoxes is have the user input an Excel range which can set by clicking a cell/range back in
|
| C# calling simple java | 22 Jan 2008 17:50 GMT | 2 |
This should be simple... what I have done is using javah and other mystical resources to access java from C, and Fortran for that matter... there must be a simpler way...
|
| DisableTaskWindows | 22 Jan 2008 16:47 GMT | 4 |
What is the euqivalent of WINAPI DisableTaskWindows(0) in CLR? Thanks! Atmapuri
|
| Why does C# have indexers and Visual Basic does not? | 22 Jan 2008 16:17 GMT | 4 |
I'm a VB.net programmer learning C#. I don't understand what indexers are for in C#. Can't you have arrays of classes that can be indexed in both C# and VB.net? And if they contain arrays as members, can't those arrays be indexed?
|
| "Deep" Assignment operator | 22 Jan 2008 15:35 GMT | 3 |
I know the assignment operator is shallow and I know it can't be overloaded. What I can't find (on the web) is a best practice or guideline for assigning the values of one instance to the value of another instance of objects. In C++ I would overload the assignment operator to ...
|
| C# Late Binding "Unknown Error" | 22 Jan 2008 15:05 GMT | 9 |
i'm trying to reference some objects using reflection and Late Binding accessing. The Object API to his methods it's easy to understand, and it's as "Object.Method" - aka. "Clientes.Existe"-
|
| The value mytype is not of type mytype exception | 22 Jan 2008 14:37 GMT | 6 |
I have code in Winforms 2 combobox: EntityBase entity = EntityManager.FindById(LookupTableName, id); IList entityList = DataSource as IList; entityList.Add(entity);
|