| Thread | Last Post | Replies |
|
| how to - no security with NetPeerTcpBinding? | 22 Nov 2007 16:40 GMT | 1 |
Sorry if this is the wrong group - I am using WCF in C#. I would like to set a non-secure (SecurityMode.None) binding for: NetPeerTcpBinding binding = new NetPeerTcpBinding(); but binding.Security.Mode is read-only and set to
|
| Design Pattern (maybe) | 22 Nov 2007 16:27 GMT | 3 |
I got the following scenario : ComboBox in UI where the user chooses one of the options and according to his/her choise - I create new object (or sub form). What is the best way doing it? (I can do switch with cases but it seems not good enough)
|
| XmlReader error Root Element is missing | 22 Nov 2007 16:15 GMT | 3 |
I'm trying to read a simple xml file that I created but the XmlReader keeps choking with this message There is an error in XML document (0, 0). ----> System.Xml.XmlException : Root element is missing.
|
| How can I force connection pooling to keep at least one connection alive ? | 22 Nov 2007 15:25 GMT | 6 |
(using C#, VS2005, .NET 2.0.) I sometimes need to access my database (SQL Server) in SINGLE_USER mode. That works fine but after a few minutes the connection pooling seems to automatically free the connection to the server, and doing so other computer
|
| How to check word, excel are installed in the machine | 22 Nov 2007 15:16 GMT | 1 |
How to check whether the MSOffice files like word, excel, powerpoint are installed in the machine or not? Anyone please help!
|
| how to add sub-items to context menu items | 22 Nov 2007 14:56 GMT | 1 |
private void treeView1_MouseDown(object sender, MouseEventArgs e) { if (e.Button == MouseButtons.Right) // detect Right click
|
| Another question about the listview control | 22 Nov 2007 14:21 GMT | 5 |
how do I programmatically select an item in the listview item? In the Listbox, I would just do "ListBox1.SelectedIndex = x". But the only thing similar in the listview is the SelectedIndices Collection, and that is "get" only.
|
| getting the response message from web service call | 22 Nov 2007 12:30 GMT | 6 |
hi all i'm calling a web service method and can get it's results just fine however i want to grab the repsonse message from the call is anyone able to tell me how i do this? results = service.getMethod(a, b, c, d)
|
| Execute a SQL Job from C# | 22 Nov 2007 11:20 GMT | 2 |
How can I execute a SQL Server 2005 Job from C# in an ASP Page?
|
| Passing data between Windows Forms(newbie to desktop applications) | 22 Nov 2007 11:14 GMT | 1 |
Hey!! someway( what i call i a MindFreak Technique!!) I managed to pass data from one form to another. But still i can't really understand the reference thing to pass data between forms. I have three forms:
|
| How to get line numbers when evaluating XPath-expressions? | 22 Nov 2007 10:54 GMT | 4 |
I evaluate XPath expressions using XPathNavigator and need to know for each result, which line number (or et least file position) it has inside the XML file. Any ideas?
|
| strange copy&paste problem in VS2005 | 22 Nov 2007 10:47 GMT | 2 |
In VS2005 I've copied some text to the clipboard, but when I paste it, I get something I previuosly added to the clipboard. I thought a reboot of my computer would help, but it didn''t.... after this problem occured, I've done a test where I copyed text from
|
| Get selected files by using GetFiles does not work as expected | 22 Nov 2007 10:47 GMT | 2 |
I use this static method GetFiles from the Directory class and I hope to get only those files that have file extension ini but I get all files that begin with ini as the file extension for example *.iniQ and *.iniP and so on.
|
| Context menu application to act on selected files. | 22 Nov 2007 10:25 GMT | 4 |
I want to write an application that is launched from the context menu in Windows Explorer/Computer. That is to say, when I am browsing around my hard drive and get to any location I choose, I want to be able to select several files, right click my mouse and launch an
|
| Over Riding New? | 22 Nov 2007 10:06 GMT | 2 |
I am (As you may have seen from my last two posts!) converting from VB to C# At the moment, I am stuck with over riding the New method of my class. I am trying to have a new which allows the user to pass the context of
|