| Thread | Last Post | Replies |
|
| Can somebody put this VB code into c#? | 14 Nov 2007 16:57 GMT | 5 |
Can somebody put this code into c#? Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Dim imageFolder As String
|
| Unable to cast object of type TreeViewItem to custom type | 14 Nov 2007 16:40 GMT | 8 |
I'm currently trying to extend the TreeViewItem class so I can attach some additional attributes to the item. I created a custom class class myTreeNode : System.Windows.Controls.TreeViewItem
|
| Reading unknown number of strings from a file using C# | 14 Nov 2007 16:38 GMT | 9 |
I have a txt file of strings of different lengths. I dont know how many strings are in the file. I have no problem reading the file and sending to the console (as below).
|
| Thread.CurrentPrincipal.Identity.Name | 14 Nov 2007 15:41 GMT | 1 |
I'm testing on web application (.net 1.1 using C#). when I tested the application on local machine (IIS5.0,XP professinal), it return value for Thread.CurrentPrincipal.Identity.Name However, When I tested the same application on the server (IIS6.0, 2003
|
| Newbie question - making button presses interrupt processing | 14 Nov 2007 15:33 GMT | 3 |
I have this animation thing with balls bouncing around. I want to be able to turn it on and off with button clicks. Trouble is, it doesn't update my form with the button presses until my animation finishes. This is despite me even having a thread.sleep(1000) in the main loop ...
|
| Exception when Form object is accessed after being disposed | 14 Nov 2007 15:28 GMT | 5 |
The problem is that the line - this.Invoke(new MyDelegate(Function), args); // this = MainForm is being called after the line - terminatePopulate = true;
|
| property subclass | 14 Nov 2007 15:14 GMT | 5 |
I extended one of the standard controls by adding a new property, which is also a class itself. I got everything going nicely in PropertyGrid except for 2 things: 1. As soon as I drop this control on a form, the subclass-property doesn't
|
| Getting IP Phone CallerID | 14 Nov 2007 14:37 GMT | 2 |
I have a CISCO IP Phone (model 7940) and want to get it's CallerID to my program. any help plz?! So thnx
|
| Hide Balloon Tip | 14 Nov 2007 14:27 GMT | 2 |
I have a Windows application (VS2005) where I am using a notifyIcon in the tray, and showing a balloon tip when certain events occur. No matter what I set the timeout to, the balloon tip will not disappear unless it is interacted with.
|
| Doubt in deployment project | 14 Nov 2007 13:34 GMT | 1 |
I have created a setup using deployment project in c#.If i click that, the project output which i have added,is getting installed. But the folders which i have added to the application folder is not installed to the location i specify. Kindly anyone help me to do this.
|
| WinForms app exit suddenly | 14 Nov 2007 13:31 GMT | 4 |
Hi, there. I'm developing a WinForms application, and a user reported that it will exit suddenly seconds after startup, every time. There isn't any prompt at all, just like he killed the process from task manager. I
|
| Knowledge base - how to? | 14 Nov 2007 12:55 GMT | 2 |
It's maybe offtopic, but do you guys have an ideea of how to develop an knowledge base for troubleshooting an application? Picture this. After deploying an application to multiple locations, we receive many requests for troubleshooting the application. Even if the
|
| Save Listview items to Dataset > XML | 14 Nov 2007 12:33 GMT | 2 |
I have found plenty of details on filling a listview from a dataset, but I need to do the opposite. I have a ListView and I would like to save out the information it contains to xml (or anything else I guess) that can then easily be imported into Excel for example.
|
| Moving the drawing origin to the bottom left corner | 14 Nov 2007 12:29 GMT | 2 |
I have spent hours through newsgroups and googling but I am at a loss how to move the drawing origin from the top left corner to the bottom left corner and have Y values increase towards the top. All the stuff I find shows stuff like this:
|
| Undo-Redo and the Command Pattern | 14 Nov 2007 12:09 GMT | 1 |
I'm interested in any insights you might have about how to implement undo/redo in a multi-user environment (if it's wise to do it at all). My software is already using the Command and Observer patterns for implementing user actions and as such they are pretty simple to undo/redo ...
|