| Thread | Last Post | Replies |
|
| Sums & Totals | 19 Jul 2007 17:18 GMT | 1 |
Writing C# database app with VS 2005, I need to have a text box that computes and displays only a total from a datagridview computed totals column. I did this before with VBA with the following: =nz(WorkOrderMaterial.Form![Total Parts])
|
| catch notifyicon kill attempt so dispose can run | 19 Jul 2007 17:15 GMT | 2 |
I have a NotifyIcon application. (c# 2) I want to be able to catch a kill/shutdown attempt so that I can call Dispose() to remove the icon. I tried to create an event handler for ApplicationExit and put my icon dispose call in there, but when process.kill() is called from an ...
|
| Windows events | 19 Jul 2007 17:10 GMT | 2 |
How can i handle windows events. For example i what to know all times when new folder creates. Thanks
|
| Failure on Windows 2000 when trying to run a .NET user control in | 19 Jul 2007 16:26 GMT | 3 |
I am experiencing a problem when trying to run a C# .NET user control in MSIE on Windows 2000. On Windows XP SP2, the same code runs without problems. The .NET security settings have been set to full trust, the IE security to
|
| userlevels - howto | 19 Jul 2007 16:12 GMT | 2 |
i'm new to c# and wanted to know a simple way to hide forms-stuff (like buttons) depending on a user level: example: user1 logs in -> userlevel admin -> everything is just fine and
|
| createing a powerpoint slide from a web page | 19 Jul 2007 16:05 GMT | 1 |
i have a task that requires me to provide a web use with the ability to send teh current page to a power point slide. and to further complicate matters. the user may want to put the whole site into a slide. the problem is that the information is database driven and the
|
| Using a WebBrowser Control In A Loop? | 19 Jul 2007 15:17 GMT | 3 |
I'm trying to write a small application that will take a given array of strings (which happen to be URLs, or IDs appended to the end of a given URL) and will loop through the array with each iteration navigating a WebBrowser control to that URL and printing it (the
|
| DllImport and Control Library project | 19 Jul 2007 14:09 GMT | 1 |
(Using VS2005 C# and compact Framework. Target device is running CE5). I am creating a simple visual control (New Control Library project for smart device Windows CE 5), derived from Label, with a couple of extra properties. I need to call an external dll from this control, on a ...
|
| ArrayList OF Objects | 19 Jul 2007 13:51 GMT | 5 |
i do have an array list of objects eg: ArrayList al=new ArrayList(); al.Add(new MyOb(1); al.Add(new MyOb(2);
|
| .NET remote Consultant | 19 Jul 2007 13:41 GMT | 2 |
We, a small developer team, are migrating our application to .Net and looking for a specialist, in giving us advices and support in advanced programming problems on demand via Internet (Skype, MSN, Remote Desktop, etc). We work under Visual Studio 2005, C# and MS SQL Server
|
| Calling a C++ dll from C# | 19 Jul 2007 13:37 GMT | 3 |
I have been struggling with the following problem and I hope that you will be able to help me out: -How can I create a dll file in Visual Studio? -How can I call the files from C#?
|
| Calling non-static methods from within static methods. | 19 Jul 2007 13:33 GMT | 3 |
Is the following legal/recommended? (It compiles w/o error or warnings) class MyClass() {
|
| Generics confusion | 19 Jul 2007 13:27 GMT | 2 |
I've been playing with generics and I was wondering if anyone could tell me why the following doesnt work, and if there is another way to do it public class A<T> where T : B, new() {
|
| How to implement IDeskBand2 interface in C# | 19 Jul 2007 12:52 GMT | 1 |
I am struggling to implement the following shell interface in C# : ==================================================== (extract from ShObjIdl.idl in Windows SDK) //-------------------------------------------------------------------------
|
| UserControl reference problem | 19 Jul 2007 12:29 GMT | 1 |
I neeed to instantiate an UserControl in an aspx page like this: <MyNamespace:MyControl ID="ctrl1" runat="server" MyParent="<%# this %>" /> where "this" is the current aspx page and should be assigned to property Parent contained in MyControl class.
|