| Thread | Last Post | Replies |
|
| Function hook | 23 Jul 2007 19:13 GMT | 3 |
I wanna know does it exist in C# that when I call a method, say myObj.Dummy(), I could caculate the call time of the Dummy() method, if the time exceed the given value , I could cancel the Dummy() . does C# have the mechanism?
|
| C++ wrap to C# efficiency | 23 Jul 2007 19:08 GMT | 2 |
I have some C++ static library which I would like to wrap and use in C# applications. It appears that I have two options. 1. Wrap the static library as dynamic library (dll), use unmanaged C++. Then invoke the method in C# by DllImport.
|
| Unmanaged pointer | 23 Jul 2007 19:03 GMT | 2 |
Hello... I am making a Sytem.IntPtr with Marshal.AllocHGlobal(int) (Allocates memory from the unmanaged memory of the process using GlobalAlloc - MSDN Definition for Marshal.AllocHGlobal) and after copying the data from a byte[] buffer to the IntPtr(with
|
| Can I use the same Setup project's ProductCode in 2 applications? | 23 Jul 2007 19:00 GMT | 2 |
I have 2 stand-alone C# application that belongs to the same product. I notice ProductCode is automatically generated for me when I created the setup project. Do I put this code in both stand-alone applicaitons's? Do I just use what's generated here or do we need to apply for ...
|
| Internet Explorer | 23 Jul 2007 19:00 GMT | 2 |
I am interested in timing the page loading process for Internet Explorer. I know how to initiate an instance of IE and I know how to navigate from page to page. What I need to be able to do is time exactly how long it takes to complete loading a page.
|
| Missing Navigate Backward Button in Standard Toolbar in Visual Studio 2005 | 23 Jul 2007 18:40 GMT | 2 |
I started a new job and the version of Visual Studio 2005 that I am now using does not have the Navigate Backward Button nor the Navigate Forward Button in the Standard Toolbar, and they are not available when I Add or Remove buttons from the Standard Toolbar.
|
| Forms in C# with fields that offer full Excel & Word functionality | 23 Jul 2007 18:28 GMT | 5 |
I am looking for specific information and sample code on the following: I would like to know how I can use Excel and Word within (!) my C# application. I would like to create a form with fields that have full Word and Exel functionality, e.g. where the user can enter formated ...
|
| Slow startup on Windows service depending on system date (!??) | 23 Jul 2007 18:25 GMT | 2 |
Occasionally I had been getting a 30-60 second delay when starting a Windows service written in .NET. Today I stumbled upon a way to reproduce it without fail: Set the system date to the 31st of the current month, the service
|
| Replacement for DataTable | 23 Jul 2007 18:23 GMT | 7 |
Can anyone suggest a replacement, 3rd party or otherwise, object for DataTable. We're running into performance issues with large dataset (>30k) rows. Looking for something that can do binary serialization, typed column row data, primary keys, filtering etc. SQL desktop engine or ...
|
| Only writing 1 byte to a file stream on one pc in office | 23 Jul 2007 18:21 GMT | 3 |
I read image data from a database and cache them locally to file via a filestream. One of my users commented that his application isnt showing images. On checking his file cache I found that most of the files were only 1 byte in
|
| Global Assembly Cache | 23 Jul 2007 18:15 GMT | 3 |
I have used gacutil tool to install my COM dll into Global Assembly Cache, http://msdn2.microsoft.com/en-us/library/ex0ss12c(VS.80).aspx But I am not sure whether I need to manually copy the actual assembly dll into some directory (like Windows\System32? Windows?) after running ...
|
| asynchronous design pattern and event | 23 Jul 2007 18:10 GMT | 1 |
Hi, I have this simple sample code: class SearchRange { static int m = 0;
|
| Pass DateTime parameter to LocalReport? | 23 Jul 2007 18:00 GMT | 6 |
I'm able to pass string parameters with no problems to a LocalReport being displayed by the ASP.NET ReportViewer control. However, my report also has a DateTime parameter. LocalReport.SetParameters(..) only seems to allow me to set string parameters. Is there a way to pass ...
|
| Help tracking class property initializations | 23 Jul 2007 17:40 GMT | 4 |
I have a class with public members, and I need to know whether those members have been explicitly initialized. I could accomplish that with a class like this: class C
|
| How to disable validation on a datagrid | 23 Jul 2007 17:30 GMT | 1 |
I'd like to disable the validation on a datagrid, in order to validate only when the user click the OK button. How can I do this?
|