| Thread | Last Post | Replies |
|
| Does something similar to 'friend' exist in C# | 29 Jul 2005 14:55 GMT | 3 |
Is there an equivalent instruction to a 'friend' class in C++ available under C#? I have a class that I want, basically, readonly access to, except for one class that would have total access to all its fields, public and
|
| Question on access modifier of interface members in VB.NET And C# | 29 Jul 2005 07:37 GMT | 6 |
Dear Friends The following Code Works Well.... ------------------------------------------------------------ Public Interface IHello
|
| Using COM+ through EnterpriseServices | 29 Jul 2005 03:16 GMT | 6 |
I am looking for the equivalent of TransactionContext object from COM+ from .NET using EnterpriseServices, since COMSVCS.dll does not provide a primary interop assembly (thus it is not strong name and cannot be used from strong named assemblies). I need this because I want to do ...
|
| display an image with BitBlt (in Paint-method) | 29 Jul 2005 02:40 GMT | 2 |
In the override of the Paint-method of a DataGridTextBoxColumn I want to show an image with BitBlt, to see what I can gain there on performance. The problem is: It doesn't show me the image in the DataGrid-Cell's, but a black background...
|
| Delete file in Temporary Internet Files | 29 Jul 2005 02:38 GMT | 2 |
I try to delete all files from my Temporary Internet Files with: foreach (string s in System.IO.Directory.GetFiles(@"C:\Documents and Settings\Administrator\Local Settings\Temporary Internet Files")) {
|
| MS Development Environment has not been installed | 28 Jul 2005 20:30 GMT | 7 |
I am getting the following error message upon startup of Visual Studio .net V2002 "MS Development Environment has not been installed for the current user. Please run setup to install the application."
|
| Help! Parser error - "could not load type" after installing Framework v 1.1 | 28 Jul 2005 20:23 GMT | 1 |
We've had several ASP.NET apps running on Framework version 1.0.x for a few years now with no problems. This morning I finally upgraded our Framework version to 1.1 and installled the service pack and now I'm getting parser errors on the existing sites.
|
| datatable.select with filter | 28 Jul 2005 19:43 GMT | 1 |
I have the following code in a on page load event of a user control: <Other Code> Dim dt As DataTable ' Also tried using New dt = m_ClaimHistoryEntity.DataTable 'Error occurs here
|
| Using Regex and string.split | 28 Jul 2005 16:27 GMT | 2 |
i am trying to parse a string expression. The expression looks like this str = {cc, 1}+{cc, 2} delimeters = '{', ',', '}' ant i want to get the result:
|
| XmlSerializer, C# , Excel, XML and SpreadsheetML | 28 Jul 2005 15:23 GMT | 2 |
I am increasingly frustrated and exasperated. I am trying to generate SpreadsheetML using C#. CSV won't do because I need formatting. I have the Office 2003 XSD files but xsd.exe doesn't want to know about
|
| carchive | 28 Jul 2005 15:17 GMT | 1 |
Im looking to read and write to a file that has been created using the c++ carchive class. I have the code that does the reading and writting in c++, but I want to use it in VB.Net, whats the best way to go about using this code in my code ?
|
| Assembly | 28 Jul 2005 11:37 GMT | 5 |
how do i get an assembly for a process which is not the own process. and i also do not want to load a new assembly. please no answers with Load, LoadFrom or GetExecutingAssembly. jeff
|
| Using binary data with process.standardInput/StandardOutput | 28 Jul 2005 11:16 GMT | 4 |
I am currently using the process class to successfully run .exe programs from my VB.NET app redirecting stdin and out. This works fine when the input and output streams are text. I tried applying the same logic to files that are not ASCII text -- they are
|
| COM+ transaction is timing out while having serviced components | 28 Jul 2005 08:31 GMT | 3 |
Is there a way to prevent this exception? "You made a method call on a COM+ component that has a transaction that has already aborted or in the process of aborting." I have been using:
|
| Image to text | 28 Jul 2005 04:34 GMT | 4 |
Is there a set of API's .NET that will let me convert a Image file to text.. More specifically, I will have a screen shot of writing in image, i want to be able to read the image file and write the text to a textbox. Thanks
|