| Thread | Last Post | Replies |
|
| Dynamic XLinq | 25 Jul 2008 14:05 GMT | 4 |
I am looking for some information on if it is possible/how to create a dynamic XLinq statement. I know for Linq to SQL you can do the following: var query = db.Customers.
|
| How to pass information, classes between forms in Windows Application mode | 25 Jul 2008 13:55 GMT | 19 |
Keywords: scope resolution, passing classes between parent and child forms, parameter constructor method, normal constructor, default constructor, forward reference, sharing classes between forms. Here is a newbie mistake that I found myself doing (as a newbie), and
|
| Object Serialization | 25 Jul 2008 13:44 GMT | 2 |
I have a class as MyClass & SecondClass which implement IMyInterface interface. class MyClass {
|
| Clipboard.SetText(...) fails on Vista but successfully on Windows 2000/XP | 25 Jul 2008 09:39 GMT | 1 |
why do i get this on Vista, while trying to set text to clipboard: Error: System.Runtime.InteropServices.ExternalException: Der angeforderte Clipboard-Vorgang war nicht erfolgreich. bei System.Windows.Forms.Clipboard.ThrowIfFailed(Int32 hr)
|
| Multithreaded SQLXmlBulkLoad Handle Leak... | 25 Jul 2008 08:32 GMT | 1 |
Using: .Net (happens to be VB but same with C#) 2.0 SQLXML4 SQL Server 2005
|
| SQL Server DB to XSD - can it be done thru code | 25 Jul 2008 08:25 GMT | 3 |
In C# ide if you have a SqlServer attached and Create a New XSD Item in a solution you can then drag a db from the SQLServer and ti creates a XSD modelled after the db. Can this be done thru code??? If I have a EXE that is passed a db can I generate a XSD on the fly???
|
| Autosizing and column spanning conundrum | 25 Jul 2008 02:21 GMT | 3 |
When I set a label to span 2 columns of a 2-column TableLayoutPanel, set both of these plus the containing form to AutoSize, then at runtime fill in the label, the autosizing does not take the column spanning into account. That is, it autosizes so that the label text is entirely ...
|
| DataGridView refresh causes "Not Responding" application (but only when not in Visual Studio) | 24 Jul 2008 22:04 GMT | 1 |
Ok, extremely wierd situation here: (I'll post the code below, after the explanation) I've got a Windows application (.NET 3.5) that has a single Form with a DataGridView embedded. The user presses a button to do a SQL query
|
| socket packet size = bandwidth? | 24 Jul 2008 21:54 GMT | 1 |
This may be the dumbest question of all time, but... When I set the packet size, does it mean ALL packets are that size, no matter what? Let's say the packet size is 8KB, and I send a 5 byte "hello", will it cause 8KB of bandwidth, or 5 bytes (plus TCP/IP
|
| Help with the difference between "Implements" and "Inherits" | 24 Jul 2008 21:53 GMT | 2 |
What would the difference be between the following two: public class Foo : IList<string> { ...
|
| out of memory? not really! | 24 Jul 2008 21:45 GMT | 3 |
Hello NG, I have a strange situation in one of my apps. I need to have a couple ob big array. Unfortunately after exeeding a certain size (wich is not at all the limit of my system)
|
| C# optimized code prevents debugging | 24 Jul 2008 21:39 GMT | 7 |
I have the simplified build ("show advanced build configurations" turned off), so that pressing F5 runs in DEBUG mode with the debugger. When an assertion fires, I find that I cannot 'watch' some data, it explains that "Cannot evaluate expression because the code of
|
| Is it safe to install VS2008 SP1 - Beta? | 24 Jul 2008 20:47 GMT | 1 |
I would like to explore Entity a bit but I noticed that SP1 for VS2008 is "Beta". Will I have trouble when the real SP1 is ready or is it Ok to install the beta... Also I hear that there is a major controversy over Linq to entity VS.
|
| Windows Forms - ListView context menu | 24 Jul 2008 19:54 GMT | 1 |
I have a ListView (in 'details' view) to which I added a ContextMenuStrip (using the designer). This is all good, except that the context menu also appears when I right click a column header - I just want it to be a couple of selections
|
| unmamaged dll call | 24 Jul 2008 19:19 GMT | 1 |
I have and unmamage c++ dll writing in c++ 6.0 and I'm calling it from my c# dot net 2.0 application. the structure of the C++ dll is int getParm(char* str, char* str2). it works fine in dot net 1.1 but not in dot net 2.0 so that leads me to
|