Search Results

4
votes

Why do we still use DataSets in .NET?

I've never used a DataSet correctly (hooked up to an SQL Server), but it was useful for a particular need once. I found DataSet and DataView to be pretty handy and functional base classes for imple …
1
vote

Stream (.NET) handling best-practices

I don't understand the qualifiers you've added regarding the times or having to download the file twice, but, if the system is strapped for memory, caching your download to the disk and then sendin …
4
votes

Huge main.cs file

First, you need to make sure you're in the same namespace: namespace mynamesspace { Next, if your class members are declared privately, you need to indicate you're …
1
vote

C# interface question

I don't believe there's a cost. Since the types already implement IEnumerable, the object should be able to be used straight away (note that this is mostly a guess; I have no idea about how the CLR …
0
votes

i want to capture a string through regex only when it contains any alphabetic characters?

This is my favorite RegEx testing site: Javascript Regexp Tester and Cheat Sheet …
4
votes

.Net: DateTime String format

Try using MM for month. The .ToString is case-sensitive, and lowercase means minutes. …
3
votes

Can I suspend redrawing of a form until I have performed all updates?

NEW answer: Override the WndProc and block the WM_PAINT message while you apply the new Window properties. OLD answer: Override the WndProc, and block the WM_ERASEBKGND message …
0
votes

Using Visual Studio to make non aspx code-behind pages

I believe if you inherit your class from the abstract UI.TemplateControl, you will get this functionality. I'm browsing through the interfaces to see if simply implementing a specific interface wil …
10
votes

Keeping passwords in the registry as “secrets”

You're probably thinking of the Data Protection API. Search MSDN or read some blogs and see if that'll work …
16
votes

Most useful free .NET libraries?

In-process database servers make my life easier. SQLite …
0
votes

Is there any free library to play various sound format in .NET?

The easiest way would be toembed the Windows Media Player, as is done here. Is there a specific f …
0
votes

What is an interface that specifies an enumerable Windows control?

I don't believe there is. I've created my own interface (usually I(Product)Field that also contains other helper info) that each different type of control implements. Then, in the validation I just …
2
votes

localhost and 127.0.0.1 not the same?

Check the hosts file? Wait; do you mean when she telnets to localhost it works, or when she telnets to her IP it works? …
1
vote

(.NET/C#/winforms) Artifacting when drawing on a Form with Graphics

Whenever I've done double-buffering, I've made sure to have no rendering code inside of the Paint event; the only code in the event was to copy from the buffer to the screen. Try moving the …
1
vote

Is it possible to trigger a “fake” scroll progmatically in WinForms?

I honestly have no idea whether that would work, but my guess is that if a scrollbar isn't present on the form it wouldn't. However, I would expect that if you have a PictureBox control tha …

1 2 3 next
15 30 50 per page