| Thread | Last Post | Replies |
|
| Explorer window with close button. | 05 Sep 2007 14:34 GMT | 2 |
Opening a new explorer window. IE = new InternetExplorerClass(); vHeaders = "Content-Type: application/x-www-form-urlencoded" + "\n" + "\r"; vPost = ASCIIEncoding.ASCII.GetBytes(strPostinfo);
|
| WMP - playing several videos after each other | 05 Sep 2007 12:30 GMT | 1 |
I hope that you can help me. I submit a character string to my application with several videos. I then would like to play these files as an endless loop after each other in the WMP. How can one solve something like that?
|
| Strange forms problem | 05 Sep 2007 12:25 GMT | 2 |
Got this strange problem that I need some help in solving. An application (uses .Net 1.0) developed by our company is showing a simple form dialog incorrectly on one computer (so far). I'd like to stress that this piece of software has been around for several years,
|
| Can anyone please tell me why my app's performance under WCF is so poor? | 05 Sep 2007 10:46 GMT | 1 |
Performance in our WCF application is very poor now that we've added a number of records to tables (not an unrealistic number, though). After doing that, we did get "max message size" errors to I bumped that number to 99999999 (see below).
|
| overloading of conversion operators | 05 Sep 2007 10:07 GMT | 3 |
i just played around a little with the c# operator overloading features and an idea came to my mind. You all possibly know the Nullable<T> Datatype. Now i thought it would be a nice idea to write my own Revertable<T> type that maintains the values of multiple assignments and
|
| Need help for xml schema | 05 Sep 2007 09:22 GMT | 2 |
I had develop an xml schema for checking type of data as <xs:simpleType name="O_FMExchangeRate" xmlns:xs="http:// www.w3.org/2001/XMLSchema">
|
| Cannot drop database | 05 Sep 2007 08:55 GMT | 4 |
I'm trying to drop an sqlserver database from c# but can't because it is claiming it is in use. As I don't have a connection to it it must be connection pooling that is causing the problem. I can test this by disabling connection pooling and the database can be dropped. Is there ...
|
| Iterator vs enumerator | 05 Sep 2007 08:39 GMT | 8 |
I'm reading about Iterators and the article I'm reading states that an enumerator must load all of the objects into memory, which is obviously a big waste if there are a large number of objects and you only need a few of them. On the other hand the iterator does not need to load ...
|
| String retrieve question | 05 Sep 2007 07:43 GMT | 3 |
In C#, how do I retrieve a special sub string within a big string? e.g., the "...fdsajk...ABC123...fdfdskafdl... ..." string has 5000 characters, and I want to retrieve the string "123" which is right after the "ABC",
|
| Pinvoke question: Am I causing this stack overflow? | 05 Sep 2007 05:42 GMT | 4 |
Hi, TIA for any help. (Thanks, Mattias Sjögren for your help yesterday! ) I am developing a C# wrapper for a 3rd party API. It processes buffers from a video stream (file) and is structured where the initialization function
|
| Question about Extending a Typed DataSet Using Partial Classes | 05 Sep 2007 04:45 GMT | 1 |
I had used partial class to extend typed dataset(ex. add a method to TypedDataTable) in my windows-base applications and it works well. But when I try it in a web services project, those extend functions which is visible within web project, but invisible to client.(I create a ...
|
| why this msg? | 05 Sep 2007 03:55 GMT | 5 |
this is my little code, the msg i get is: a) Error 2 'dico.Program.Calcolo(decimal)': not all code paths return a value C:\Documents and Settings\Robert\Desktop\prova VS8\dico\dico \Program.cs 42 43 dico;
|
| Coding Practice Question - Usage of System.EventArgs | 05 Sep 2007 02:12 GMT | 4 |
The .NET Framework provides us with built-in event handlers: System.EventHandler and the generic System.EventArgs<TEventArgs>
|
| HttpListener based app loading Java Applet into html page | 05 Sep 2007 01:28 GMT | 1 |
I have a following code in HttpRequestListener's ProcessRequest method which is a Windows Console Application. I'm trying to read html page with browser (Opera) and html file contains tags to include
|
| Hosting Ethereal inside my .NET app | 05 Sep 2007 01:27 GMT | 3 |
Do you know if its possible to use the Ethereal as a GUI control inside my C# app? My application has a docking manager control in it and I'd like to embed the Ethereal in of the panes.
|