| Thread | Last Post | Replies |
|
| Where to hook/unhook events with Forms/Controls | 31 Mar 2007 23:40 GMT | 4 |
I have an application with many user controls and forms which display measurements in whatever the current unit system is. The current unit system is kept in my 'Units' static class as Units.CurrentSystem. I also have an event in the Units class called
|
| Please Help - Access Current Row in table adapter | 31 Mar 2007 23:32 GMT | 1 |
I am new to C# coming from Java / EJB. I have been messing around and in an app i am working on I am trying to get access to the fields of the current row in a table adapeter (current row from binding source). Here it the code I found that works, is there a better way??
|
| Threaded TCP socket program incorrectly reporting establishment of connection | 31 Mar 2007 22:58 GMT | 4 |
Hi Group, A question about threads and asynchronous TCP sockets. In the attached code, even if the host TCP server is not running my code reports that the connection has been established.
|
| Is adding information to Exception.Data frowned upon? | 31 Mar 2007 22:20 GMT | 1 |
I have a function that accepts an Exception, and writes out all of its information to a log. This function is called in many places where an exception is caught. In some places, I'd like to add one more bit of information to the log. I could just write it out to the log there,
|
| adding key/value to Exception.Data & avoiding key conflicts | 31 Mar 2007 22:10 GMT | 1 |
http://msdn2.microsoft.com/en-us/library/system.exception.data(VS.80).aspx says: "Avoid key conflicts by adopting a naming convention to generate unique keys for key/value pairs. ... two applications, named Products
|
| Thoughts on how to get this dynamic variable name workaround to work? | 31 Mar 2007 21:40 GMT | 3 |
As I understand it, C# doesn't offer dynamic variable names. Below is my attempted workaround. Is what I'm doing possible? FYI, I already read all the "why in the world do you need dynamic variabale names" comments by other posters, if you are kind enough to post a reply
|
| How should you package the custom control? | 31 Mar 2007 21:06 GMT | 1 |
Does someone know the answer? You are building a setup for your application. The application contains a custom control developed by you, which will be shared across multiple applications. How should you package the custom control?
|
| What are the essential Web Application files? | 31 Mar 2007 20:56 GMT | 1 |
An ASP.NET Web application was created in C# and you want to deploy it to a host server on the Internet. The application was configured with code-behind pages which are compiled in the build process. What are the essential Web Application files you should deploy to the host?
|
| Sockets recieving data | 31 Mar 2007 20:01 GMT | 5 |
I have a question that hopefully someone can help me out with. I am trying to use fop to create a pdf report. I have the fop code created but I can't figure out how to recieve data. The data is located here http://localhost:8080/fop/fop?fo=?PATHTOAFILE
|
| My UnhandledExceptionHandler Won't Fire | 31 Mar 2007 20:00 GMT | 4 |
I'm new to Visual Studior C# .Net 2003 on Vista, and have been uable to get my UnhandledExceptionHandler() to fire. I have added these lines to Main() before the Application.Run(): AppDomain adCurrent = AppDomain.CurrentDomain;
|
| Why is there no contains/exists in SerializationInfo? | 31 Mar 2007 18:36 GMT | 3 |
I have been working with serialization in some places for a while and have now begun to run into version issues. Unfortunately my company is still working with .Net 1.1, so using the VTS of 2.0 was not an option.
|
| How do I get the last generated sequence number in Oracle? | 31 Mar 2007 17:58 GMT | 1 |
I need to write some c# code to get the last automatically generated sequence number from an Oracle database. Can anyone provide an example. tia,
|
| Automatically generating get and set properites for private class data | 31 Mar 2007 14:48 GMT | 6 |
How often have you seen this kind a of construct in a .NET class: class A { private string b;
|
| How to get the size of managed class? | 31 Mar 2007 12:58 GMT | 5 |
I need to know the size, in bytes, of System.Drawing.Color. In general; how to get the size of managed object of class instance and of class type?
|
| Converting byte[] to Int16[] | 31 Mar 2007 12:13 GMT | 5 |
I am looking for a way to cast a byte[] to Int16[]. I get this error: "Unable to cast object of type 'System.Byte[]' to type 'System.Int16[]'" If you're curious, I am using a library for accessing some specialized
|