| bio | website | blog.vkarlsen.no |
|---|---|---|
| location | Porsgrunn, Norway | |
| age | 42 | |
| visits | member for | 4 years, 9 months |
| seen | 1 hour ago | |
| stats | profile views | 15,676 |
All original source snippets I post directly on stackoverflow are licensed under the Stack Overflow community license. Links to source code elsewhere, including my own, might have its own license.
my codeplex projects: DiffLib, Mercurial.Net, Opt.Net, md2html.
|
2h |
comment |
SQLite - select every row from all tables where a column name exists Why not centralize the information about images into one table? |
|
1d |
comment |
Why do I need to rebuild after updating a lib dll Is "MyProject\lib" the folder where you have thirdparty libraries? And when you say "run the program", are you running it from the \lib folder? Or from its corresponding \bin\Release folder? |
|
1d |
comment |
Garbage Collector won't free memory of some objects If you issue another GetImage, does it rise by another 10MB? And if so, how many times can you do that before it drops down again? |
|
1d |
revised |
SQL Server: How I create a horizontal table added 176 characters in body |
|
1d |
answered | SQL Server: How I create a horizontal table |
|
1d |
comment |
Finding circumcircle and incircle of a shape in c# It can even dump winforms controls, check out the MouseMove example here: dropbox.com/sh/qilllrupnp1d57h/zm0x81QDQ1 |
|
1d |
revised |
Finding circumcircle and incircle of a shape in c# added midpoint circle method, and full example |
|
1d |
revised |
Finding circumcircle and incircle of a shape in c# added illustration |
|
1d |
answered | Finding circumcircle and incircle of a shape in c# |
|
1d |
comment |
Null Reference Exeption openFileDialog Also, note that your parameter to pathSelected is labelled "path", yet, SafeFileName does not include the path, it will only return the filename and extension. |
|
1d |
comment |
Null Reference Exeption openFileDialog What is onPath? And did you try debugging and checking if onPath or openFileDialog1 has become null (last there is most unlikely). I'm going to guess that onPath is of type pathSelected, but you haven't assigned it a value yet, so it is null. |
|
2d |
comment |
SQL: Avoid duplicate data What rule do you use to pick one row from the first table over another, meaning: why did you pick the row with Salary revisions 100 over the one with 200 for the first person? Why? |
|
2d |
comment |
Visual Studio load test results repository is out of space If you figure out what to fix, you might want to write up an answer to your own question here, I'm sure someone else will have the same question at some point. |
|
2d |
comment |
Visual Studio load test results repository is out of space It appears you can create (or perhaps migrate/move?) that database on a real SQL Server instance, which would not have those limitations, and never express editions have a higher limit, I believe its 10GB now on the 2012 version (microsoft.com/en-us/sqlserver/editions/2012-editions/…), but I have no idea if you can use that database engine for your needs. I'm not familiar with the load test system at all unfortunately. |
|
2d |
comment |
Visual Studio load test results repository is out of space I have no idea, I just did a google search for visual studio load test repository space, and this page popped out: msdn.microsoft.com/en-us/library/vstudio/ms318550.aspx, it mentions that a SQL Server Express server is installed and a database is set up, and those can only become 4GB with that version apparently. See the topic "Load test results store considerations" on that page. That's all I know, but it might be enough to point you in the right direction. |
|
2d |
comment |
Convert Delphi Real48 to C# double @heinrich5991 Did you test the change? |
|
2d |
revised |
bool [,] - What does this syntax mean in c#? added 133 characters in body |
|
2d |
comment |
Can't create form in another thread C# Can't you recreate the problem on a computer with internet access? It's hard to help you without the code. |
|
2d |
comment |
Visual Studio load test results repository is out of space How big is the SQL server database that the load test system is using? |
|
2d |
comment |
Calculate drop rate of an item based on commonality If you mean, "pick an item randomly, where commonly dropped items drop more often, proportional to their 'commonality'"? Then this is a weighted random choice, see this question for more information. |