Joel Coehoorn

60,676
Reputation
10173 views

Registered User

Name Joel Coehoorn
Member for 1 year
Seen 8 hours ago
Website
Location WI
Age 29

2009 Microsoft ASP.Net MVP

It's pronounced: koo-horn


Search StackOverflow
Search MSDN

The avatar is both because I play counter strike and a nod to lambda expressions in C#.

8h
comment How to create a DB that holds all my tables (tables from ASPNETDB and my other tables)?
Your connection refers to an .mdf file. That is sql server, even if the storage file is located in your app_data folder. You won't be able to use that file without a sql server engine running that you can attach it to. asp.net just hides the attachment part from you.
8h
comment How to create a DB that holds all my tables (tables from ASPNETDB and my other tables)?
The program should still be included with VWD Express. I would normally tell you to use the visual studio command prompt to access it, but I'm not sure whether or not that feature is excluded from VWD Express. To stat a normal command prompt, in windows XP just go to your start menu, choose Run, and type "cmd" into the window that opens.
17h
comment Select distinct of a date along with other fields from a table
you need to define "first"
1d
answered Dynamic Web Programming
1d
revised Dynamic Web Programming
edited tags
1d
comment How to create a DB that holds all my tables (tables from ASPNETDB and my other tables)?
As for how to use it, check it's command line options the same way as any other windows command line program (via the /? switch).
1d
comment How to create a DB that holds all my tables (tables from ASPNETDB and my other tables)?
I don't have the location handy. Use the Visual Studio command prompt and it should be in the path, or use windows search to find it.
1d
comment C# (.NET 3.5) Is there any way to get this function name?
You're thinking stack- trace. This code just checks an individual frame.
1d
answered C# (.NET 3.5) Is there any way to get this function name?
1d
answered How to create a DB that holds all my tables (tables from ASPNETDB and my other tables)?
1d
comment Concepts in C# 3.0
"3.0" by itself is a very bad tag.
1d
comment SQLServerCE Problem with parameterized queries from .NET
have you tried inv_type_name = COALESCE(@name, inv_type_name) (with DBNull.Value for the parameter value)?
1d
answered Is it possible to automate a ClickOnce deployment ?
1d
revised VS2005: How can I print a selected piece of code without the highlighting?
deleted 2 characters in body; edited tags
1d
revised Visual Studio Express can’t debug - “The debugger is not properly installed”
edited tags
1d
comment Is there a standard way for .NET Winforms apps to auto-upgrade?
@Theraneman : ClickOnce can ensure an app is up to date every time it's run. What does it matter if the app is a few days out of date if the user hasn't run it?
1d
comment Storing special characters in database
Maybe for a while, but eventually someone will try to put unicode characters into your app. best to be prepared.
2d
revised double alignment using string.format
added 15 characters in body
2d
comment Saving Panel as an Image …
... I'd correct the post myself, but if that's pasted from your real source you might want to know about it...
2d
comment Saving Panel as an Image …
You have "pgn" instead of "png" in your filter.
2d
comment Override a File Checkout in Visual Studio 2003
Visual Studio itself never checks out files. Do you mean source safe or other source control plugin?
2d
revised Override a File Checkout in Visual Studio 2003
edited tags
2d
comment Storing special characters in database
varchar only allows a single byte per character. "special" characters often require more than that.
2d
answered Storing special characters in database
2d
comment SQLServerCE Problem with parameterized queries from .NET
I fail to see a material difference between your first and second samples. What "function" are you referring to? .Fill()?
2d
revised SQLServerCE Problem with parameterized queries from .NET
added 8 characters in body
2d
comment HTML input text cannot select text using mouse
I suspect you have something layered over top of an input, but to know for sure please post a sample we can use to reproduce the problem.
2d
revised SQL Server slow select from large table
edited tags
2d
answered A way to generate a signature or a hash of an image in ASP.NET for duplicate detection?
2d
comment String.Format in .aspx not showing rest of text after
+1 for 2nd string the markup.
2d
awarded  Nice Answer
2d
accepted SQL Server Enterprise Manager Download? (Or Windows 7 equivalent?)
2d
comment In MSSQL change column of type int to type text
'text', or 'varchar' ?
Dec
1
accepted Do SQL ‘joins’ actually execute faster than using a where?
Dec
1
accepted Is there a way to always have vs.net run as administrator?
Dec
1
answered Is there a way to always have vs.net run as administrator?
Dec
1
comment Split string returning a record
Ugh, that's horrible table design :( Hope you can change it at some point.
Dec
1
answered Accessing C# code hosted on US server from Local machine
Dec
1
comment How to store timezone in SQL Server 2005
Ugh, had datetime2 originally. always confuse that for datetimeoffset :(
Dec
1
answered How to store timezone in SQL Server 2005
Dec
1
revised space bar validation in flash
edited body; edited tags
Dec
1
revised Size reduction for enum storage in Fujitsu Softune
edited tags
Dec
1
revised Displaying Hi5, Orkut, LinkedIn, and Twitter etc. Pages in Power.com website
deleted 46 characters in body; edited tags
Dec
1
revised PDF Rendering Issue in SSRS 2008
edited tags
Dec
1
revised how to disappear the keyword while cancelling(Coss button)in the textfield?
deleted 65 characters in body; edited tags
Dec
1
revised How to enable sensor simulator in android??
added 12 characters in body; edited tags
Dec
1
answered What is the Applet replacement in .Net
Dec
1
awarded  Nice Answer
Dec
1
comment Are there “Type-unsafe” function parameters in c# and how could we make one?
There's no reason for a generic in this case. If you don't like object, pretend it's some magic "IStringable" interface instead.
Dec
1
comment what encoding stackoverflow used in mysql?
stackoverflow uses sql server, not mysql. What made you think otherwise?