| Thread | Last Post | Replies |
|
| Convert integer to time | 15 Sep 2005 21:38 GMT | 3 |
I have i time in Integer = 37825 , how can I convert it in C# to Timeformat = 10:30:25 Glenn
|
| ListItem namespace/ref | 15 Sep 2005 21:05 GMT | 7 |
I am using VS 2005 Beta 2. Which assembly (namespace?) should I use for the ListItem class? I don't have the Help files installed on my notebook for space reasons; I use MSDN2 online instead. I see ListItem as derived from System.Web.UI.Controls namespace. Am I missing ...
|
| Help PLease | 15 Sep 2005 20:37 GMT | 4 |
Newbie here needs a little help. Here is my issue. I want to place all my dll import data into class called testdllimport.cs Then I want to call, reference, or instantiate the class in my form1.cs!!
|
| EnumChildWindows (Win32 error 127) (c#) | 15 Sep 2005 20:26 GMT | 1 |
I am having the oddest error with the EnumChildWindows function. Below are the imports, and the methods. [DllImport("user32.dll", SetLastError=true)] public static extern int EnumChildWindows(IntPtr hWndParent, EnumChildProc
|
| get the iterator | 15 Sep 2005 20:15 GMT | 18 |
I need to get a iterator from any generic collection. public class .... GetIterator(Object collection) { ....
|
| Convert this VB to C# | 15 Sep 2005 19:59 GMT | 2 |
I figured out most of it but i don't know what to do with the addhandler in the constructor. Public Class ScreenCapture Dim thisImage As System.Drawing.Image
|
| XMLIgnore Atribute | 15 Sep 2005 19:57 GMT | 2 |
A while back I posted this: http://msdn.microsoft.com/newsgroups/default.aspx?dg=microsoft.public.dotnet.lan guages.csharp&tid=129eaabb-a6d2-4fc4-8ebc-85878d2303b4&cat=en-us-msdn-visualtool s-vcsharp&lang=en&cr=US&sloc=en-us&m=1&p=1 Well, I never did get the built-in XML ...
|
| How to identify each row in a Datagrid with no primary id? | 15 Sep 2005 19:56 GMT | 4 |
Hi, I've worked with C# for 5 months fixing bugs for appl. done by other programmers. I'm just writing a small C# application by myself for the first time. The database is Access 2000. I've set up the OleConnection and selected the table that I want as a data source for the ...
|
| thread problem | 15 Sep 2005 19:31 GMT | 9 |
if habe the class "receiver" which reads data out of a stream. that the application doesn't get blocket the class starts the function "readData" in its own thread. but I want the function for each incoming data to call a function in in
|
| SOAP Question | 15 Sep 2005 19:21 GMT | 7 |
I am working on a new program that uses a SOAP interface. I have written a few of these before, but this time it is giving me trouble. I suspect there is a problem with on the SOAP handler side, but since I'm not an expect I cannot be sure.
|
| UIP version for 2K5 | 15 Sep 2005 19:05 GMT | 1 |
Anyone know when/if there will be a 2005 version of the User Interface Process application block?
|
| Simple Thread Questions | 15 Sep 2005 18:47 GMT | 7 |
If one calls Thread myThread = new Thread(new ThreadStart(ThreadProdure)) several times, will each time a new thread be created with each executing a different instance of the same procedure? or will the execution of the first ThreadProcedure be
|
| Questions on DLinq | 15 Sep 2005 18:32 GMT | 6 |
1) Is it support other database other than SQL Server, such as Oracle, Sybase? 2) How about the performance? Does it relay on reflections to bind the value from databse to Entity object?
|
| passing byte[] as arg | 15 Sep 2005 18:20 GMT | 3 |
I have an array of bytes I read from a TcpClient. I need to pass that byte array in to the constructor of an object. My code compiles, but when run, I get a message stating: System.NullReferenceException: Object reference not set to an instance of an object. There is data ...
|
| Enum vs Constants performance | 15 Sep 2005 18:18 GMT | 3 |
if an enum requires boxing often, i'd assume constants would win on performance, is that true? Further, it appears that if you need to pass enum values to functions that accept only uint, int or byte (therefore, you also must unbox and
|