| Thread | Last Post | Replies |
|
| ListView Problem | 23 Jan 2008 10:17 GMT | 2 |
Hi,, I've have a problem using the ListViewItem.Selected property. Let's say that Items[2] has been selected using the mouse on the control. If I then invoke some code doing this
|
| Prevent an interface reference to an internal class | 23 Jan 2008 09:34 GMT | 2 |
I defined a class, which contains a private class with properties to an internal field. The private class is shown by an interface to outside of the outer class. What can I do to prevent, that a variable of the interface typ can be defined to make a reference to the internal ...
|
| Access Microsoft Certificate Authority Using C# | 23 Jan 2008 08:42 GMT | 1 |
I have been banging my head for days try to figure out how to interface with a standalone install of Microsoft Certificate Authority on Windows 2003 using the .net framework 2.0 and can seem to find any information on how to interface with the Microsoft Certificate
|
| Enryption and Decryption in ASP.net | 23 Jan 2008 08:28 GMT | 1 |
How to Encrypt or Decrypt the datas in ASP.net without using Server Memory(Memory Stream). Thanks, Bala.
|
| User-Agent problem | 23 Jan 2008 07:36 GMT | 1 |
.NET 2.0 In my code I've been accessing a xml file like this: string url = <url> // for example http://www.test.com/default.xml XmlReader reader = XmlReader.Create(url);
|
| How-to determine if network is "Local Only" or "Local and Internet" | 23 Jan 2008 07:30 GMT | 2 |
I'd like to programmatically be able to determine if a network interface is currently in "Local Only" or "Local and Internet" access mode. Also I wasn't sure if this is only applicable to Windows Vista? If not possible in C#, maybe netsh can do it?
|
| Saving an image from an xml file to a jpg file | 23 Jan 2008 06:15 GMT | 2 |
I have the following xml line in my xml file: <binary xmlns:dt="urn:schemas-microsoft-com:datatypes" dt:dt="bin.base64" format="jpeg">/9j/4AAQSkZJRgABAAE...</binary> I need to take this image and write it to a jpeg file.
|
| Creating a form with a matrix of entry points | 23 Jan 2008 06:00 GMT | 2 |
I need to design a form that takes 60 values to be entered. theses values are related in such a way that they can easily form a matrix. These values will all be stored in an entity with similar or corrisponding names. ie BlackMaleSenior, IndianFemaleUnskilled
|
| Log4Net with XML output | 23 Jan 2008 01:57 GMT | 2 |
Has anyone used log4net with an XMLAppender. I need to find how to format the xml appender so that it will create XML output. e.g <LogEntry> <message>"Data error" </message>
|
| How to be fired a event from C# to C, C++ , VB | 23 Jan 2008 01:51 GMT | 1 |
i want to know how to make a event by C# like ATL Sink. The Event will be fired to C, C++, VB. this below is my code, so i want to append a event function. Could you help me make a Event function?
|
| How to read 2. level of XML | 23 Jan 2008 01:44 GMT | 1 |
I want to read 2. level of a Xml file as show. I want to red pipenode and write its in name My problem is that there i to level <lc> and ppe <?xml version="1.0" encoding="utf-8" ?>
|
| retrieving path for a class library | 23 Jan 2008 01:42 GMT | 1 |
How do you create the path the class library resides in. Using the Environment.CurrentDirectory does not always pull the physical path that the DLL resides in when the DLL is called from Biztalk. The path is C:\windows\system32. Byt I have my dll somewhere else. Is there a ...
|
| ListView.SelectedItems no setter!! | 23 Jan 2008 01:37 GMT | 1 |
I've recently replaced a CheckedListBox control with a ListView control, however I'm missing the SelectedItem set functionality, its equivalent in ListView, SelectedItems, is only implemented as a getter. I really need a way to programmatically be able to set the selected ...
|
| Threads and UI Components | 23 Jan 2008 01:04 GMT | 9 |
I want to fill a TreeView with some heave data. this action may take several minutes and I'd like to show to the user a model dialog with a simple ProgressBar ('Marquee' style). I managed to work before with BackgroundWorker and Invoke methods, but this time When I try to add a
|
| Blocking windows shutdown from a form on a different thread | 23 Jan 2008 00:48 GMT | 5 |
In my application I have a separate DLL which handles encrypting data in the application (including saving it to disk, and loading it). The main application calls for example "EncryptToDisk(object obj, string fileName)".
|