.net

Is there any way to manage resources in WPF through Visual Studio IDE?

Is there any way I can manage resources through the GUI? Or the only way possible is through XAML code? Thanks ...

Hou to bind uploaded files to IEnumerable<HttpPostedFileBase> property

This the html form: <input id="picture1" name="Input_Pictures" type="file" value="" /> <input id="picture2" name="Input_Pictures" type="file" value="" /> <input id="picture3" name="Input_Pictures" type="file" value="" /> I also tried: <input id="picture1" name="Input_Pictures[]" type="file" value="" /> <input id="picture2" name="Inpu...

Select a HostName with Regex in C# ?

There are some addresses as follows : http://rs320tl.rapidshare.com/files/119371167/sth.rar I'm gonna select rs320tl.rapidshare.com with Regex, but I'm not familiar with Regular Expressions. Would you please guide me ? Thanks. PS. rs320tl in the address is variable. ...

Regular expression throwing exception.. Help needed

I am using a regular expression which gets the substring associated with a match i.e "(MAC:[A-Z0-9]{12})" This regex will find the occurences of MAC:(Some characters) in a string. This regex is working for characters less than 10 i.e "(MAC:[A-Z0-9]{8})" - WORKS but, "(MAC:[A-Z0-9]{8})" - THROWS EXCEPTION Any help appre...

Can the ASP.NET ScriptManager be made to work with the Windows FIPS security policy?

If you enable the "Use FIPS compliant algorithms for encryption, hashing, and signing" security policy option in Windows, attempting to use many of the cryptographic classes in the .NET Framework will result in an InvalidOperationException. By default, ASP.NET uses AES to encrypt the ViewState blob, so it fails. You can work around this ...

How can I Pause Execution of Program Of C#.net.

I have Desktop Application There is a button Pause. I want to pause Program on button click. I am using Thread. Thread.suspend is not working Please give me idea to solve this. ...

Generating an ADODB recordset programatically

I am attempting to generate an ADO RecordSet programatically within .Net. This will be passed on to existing legacy code in VB6 which is already expecting a ADO RecordSet, I do not wish to change the existing code. I was successful in defining fields within a new RecordSet ADODB.Recordset rs = new Recordset(); rs.Fields.App...

Importance of unit testing my Views when using the MVVM pattern?

When using the MVVM pattern to structure your WPF application you should get all your business logic out of the View and code-behind files. Doing it properly the View itself will be a simple facade with Data Bindings and Command Bindings to the ViewModel classes - which is where the magic happens. One key benefit from structuring your a...

Suggestions for a 3rd party .net datagrid control - ideally free?

I've been looking for a databound control to show some data to the user, who needs to be able to filter and group the output. I've looked at the documentation for the standard DataGridView control, but it doesn't seem to have the drag-and-drop grouping/filtering that I've seen in many apps. For an example, if anyone uses Toad to do SQL ...

.NET Application to Capture Image from PDA Camera

I am trying to capture images from a PDA camera by clicking the capture button in my application so that I can save (using save button in my application) it in my application (I also need to zoom the picture through my application by clicking the zoom Button.) I have to do this in .NET using C#. How can it be achieved? ...

Regular Expression

Hello I need to extract the string MAC:BFEBFBFF000006FB00:1E:37:54:AE:C8 out of "ADMIN:1EXT:0NOR:0OUT:1PRI:1BAT:1MOD:1MAC:BFEBFBFF000006FB00:1E:37:54:AE:C8" The regular expression i use is "(MAC:[A-Z0-9]{10})+" But still i do not get the intended result Please help !! ...

Example of 'volatile' preventing a compiler optimization in C#?

From what I understand, the 'volatile' modifier in C# has two effects: Inserts fences as necessary for the target processor Prevents certain compiler optimizations On x86 / amd64, (1) is irrelevant. Those processors don't require fences for volatile semantics. (ia64 is different, though.) So, we are down to (2). But, for examples th...

Are there any builtin IMultiValueConverts in WPF?

I'm writing a MultiBinding containing two bindings - each returning a bool. Using MultiBindings you need to specify an IMultiValueConverter. In my case this converter should take two bools and return the AND of them. This is really simple to write, but do I have to? This feels like the most basic MultiValueConverter, and I don't want to ...

Message Queueing - Handling multiple responses simultaneously - C#.NET

Hello, I've a business application where i've a master application and multiple slave applications (geographically distributed) connected to each other. All the slave application interact through master application and master application should handle all the incoming requests as well as respond to the previous requests. We're dealing ...

How to convert string to base64 byte array, would this be valid?

Hi, I'm trying to write a function that converts a string to a base64 byte array. I've tried with this approach: public byte[] stringToBase64ByteArray(String input) { byte[] ret = System.Text.Encoding.Unicode.GetBytes(input); string s = Convert.ToBase64String(input); ret = System.Text.Encodin...

what sources of information / videos do you use to learn new techniques for webdevelopment with C# ?

I work at a company that makes the move from php to .net. Now i am searching for good video sources to learn new techniques. We have already a license for www.tekpub.com great site but already have seen a lot of movies and will check other video sources too what video sources do you have or do you know ? ...

Have Directory.GetFiles return one file at a time? (.NET)

Hi everyone. I have a folder with far too many files in, and I want to go through each file one by one. The problem is that Directory.GetFiles returns a completed array, and this takes too long. I would rather have an object I would point to a folder, then call a function that returns me the next file in the folder. Does .NET have a cla...

XElement Add function adds xmlns="" to the XElement

I have a function which generates xml for a list object: public XDocument ToXML() { foreach (var row in this) { var xml = row.ToXml(); template.Root.Add(xml); } return template; } The template.ToString() reads: <RootElement xmlns="urn:testTools"> The xml reads: <Example><SubElement>testData</SubElement...

How to get the class name of a derived class when executing a static method in the base class?

In the following I would like a call to MyOtherClass.MyStaticMethod() to output "MyOtherClass", is this possible? All my current attempts give me "MyClass". The issue I have is that I can't easily change MyOtherClass, since there are 100s of classes which extend from MyClass. public class MyClass { public static string MyStaticMet...

Haskell's "deriving Show" in F#?

In Haskell it is easy to make an algebraic type/discriminated union "displayable" as a string by simply adding "deriving Show" to the type definition. In F# I end up writing things like: type Pos = | Pos of int * int override this.ToString() = match this with Pos(startp, endp) -> sprintf "Pos(%d, %d)" startp e...