| Thread | Last Post | Replies |
|
| directory picker | 04 Jan 2008 22:14 GMT | 1 |
thanks in advance does anyone have a code sample of picking a directory from a windows form using a treeview? thanks
|
| Up Casting a Control Collection | 04 Jan 2008 22:09 GMT | 2 |
I'm trying to write a general function to simply clear a collection of fields from both a group box and a tab control. Here is what I want my code to look like: private void ClearFields(GroupBox groupbox)
|
| TableAdapter IsNull Parameter- Verified Bug - Now What??? | 04 Jan 2008 22:02 GMT | 4 |
I am encountering this bug http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID= 114548 What do i do about it?? Am I supposed to download a patch etc?? At the moment I have to edit the generated code. But of course if i change
|
| Reflection and Find all references | 04 Jan 2008 21:39 GMT | 2 |
I want to develop a small utility similar to the "Find all References" in Visual Studio so that I can determines if methods in a library are actually being used inside an exe assembly. It is easy enough to find all the public methods in the library, but how do I find if a ...
|
| Minimum permission request | 04 Jan 2008 21:08 GMT | 3 |
I have a program which need to run from a network share so all users can access it. I have signed the application and it has one dependent dll. When I run the application in Vista, on loading the dependent dll, it throws 'failed to grant minimum permission request'.
|
| Multi Parameter Search | 04 Jan 2008 21:02 GMT | 6 |
I'm working on a program where I have a decent sized database with almost every single value able to be searched for (there would actually be a need for it). To make this easier on myself I've coded views so that they're all in one central location and I don't have to
|
| sockets and dhcp? | 04 Jan 2008 20:55 GMT | 7 |
Quick q: If I open a socket on my computer and eventualy the dhcp changes the address of my computer, what happens? Will it drop the connection?
|
| Multidimensional Packed Bit Array | 04 Jan 2008 20:45 GMT | 8 |
I've looked online for an implementation of a multidimensional packed bit array (like BitArray but with more than one dimension), and could not find any, so I'm trying to create my own. However with limited success sofar. I'm having troubles with calculating the required size of
|
| static methods | 04 Jan 2008 19:49 GMT | 1 |
I have some classes which resemble tables in a database. I'd like to create CRUD-like methods for each class, for example Create(), GetAll(), GetById(Guid id), DeleteById(Guid id), etc... I can implement an interface to force Create() for example, but
|
| is this feasible or a good idea? | 04 Jan 2008 19:40 GMT | 6 |
in a follow up to the thread "a better way for user searches" the "search" method signature is this: public List<ProductInfo> List(ProductInfo productInfo1, ProductInfo productInfo2)
|
| Version Proofing Excel COM/.NET Wrapper | 04 Jan 2008 19:15 GMT | 2 |
Not sure the best group to post to, so sorry for the cross post :(. There are several posts out there of how to automate excel from .net, i.e in the sample below, they are using Excel 9.0... However, on my machine, I have 12.0... no big deal.. I see both in the post below, and on ...
|
| Control transparent to mouse | 04 Jan 2008 18:05 GMT | 1 |
I have a panel with a picturebox on top of it and I would like to make the picturebox invisible to mouse events so when the mouse is hover the picturebox is actually the panel mouse events that are triggered. I want the picture box to behave like it isn't there.
|
| System.Diagnostics.Process.Start c# query | 04 Jan 2008 17:38 GMT | 5 |
I am using c# to build an application. I want a button that will be able to open a new mail message with an attachment. The new mail message works but I can't get the attachment to work - there is no error message just no attachment. Any ideas? Code i am using is;
|
| Application Object in different AppDomain | 04 Jan 2008 17:15 GMT | 3 |
I am trying to run an application by creating a new AppDomain and then running the executable in the new domain. This works perfectly but when the application runs it is looking in the wrong directory for some of the files. I have found out this is because the
|
| Web Page listener for POST message problem | 04 Jan 2008 17:15 GMT | 1 |
I created listener for POST message from client as a simple web page and process that message in Page_Load method. If I use url for posting message to my listener with explicit web page name http://myserver/formhandler/listener.aspx it works without error. But
|