Published by

Comments

# re: Whidbey hopes, dreams, and questions

Friday, February 27, 2004 2:26 PM by Sergio Pereira

I also dislike the TypeOf in VB.
I wish it was
If obj TypeOf MyClass Then
or
If obj IsTypeOf MyClass Then

Much more natural and easier to remember IMHO.

# re: Whidbey hopes, dreams, and questions

Friday, February 27, 2004 2:32 PM by Chris McKenzie

Agreed, especially your example 2. "If obj IsTypeOf MyClass Then" is very fluid, and is written the way we think it.

# Take Outs: The Digital Doggy Bag of Blog Bits for 27 February 2004

Friday, February 27, 2004 6:17 PM by TrackBack

Take Outs: The Digital Doggy Bag of Blog Bits for 27 February 2004

# re: SQL Server Reporting Services experiences

Thursday, March 04, 2004 9:31 PM by Kent Tegels

Sorry, but that's just wrong. As a matter of fact, it's Windows authentication that's the problem. WIA usually fails because people can't get forward delegation or kerberos working right. Books OnLine for RS is specific about this: Use Standard Logins.

The better choice is to give a collection of reports a SQL login. Let IIS and the Report Service worry about authenticating the user, let SQL Server worry about serving up the data.

# SQL Server Reporting Services experiences

Thursday, March 04, 2004 11:28 PM by TrackBack

# re: SQL Server Reporting Services experiences

Friday, March 05, 2004 8:04 AM by Chris McKenzie

This is the message that I got from one of the dev's on SSRS:

"With Standard edition, you would not be able to support a custom user store.
You would have to map your users to Windows accounts/groups."

The only context in which Kent's comments make sense to me is if he's talking about the DataSource object that each report uses to talk to SQL Server.

This may be true, but that's not the subject of my post--I'm talking about assigning end-user browsing rights to various report groups. Again, there is no way to assign those permissions using SQL Server Security.

Kent, please correct me where I'm wrong. Thanks,
Chris

# re: SQL Server Reporting Services experiences

Friday, March 05, 2004 4:32 PM by Roman Rehak

You are right, RS doesn't use SQL Authentication for report access security at all. What you have to remember is that RS is a combination of SQL Server and IIS components. SQL Server supports both Windows and SQL Authentication but IIS supports only Windows Authentication. If you wanted to avoid administering dual groups, you would have to switch from Standard to Windows in your other application and set up RS to use Windows Authentication in report data sources. But as Kent pointed out, there are some issues with forward delegation, a lot of people are having problems if all three components of RS (Report Manager IIS app, Report Server web service and RS SQL Server) are not on the same server.

# re: Things that make you go hmmm....

Tuesday, March 09, 2004 6:11 PM by J. Walker

The only thing I notice is that the control is prefixed as <sdp: and the listitems are pre-fixed as <asp: . I take it this is a custom control where you are inheriting from another control. I haven't tested, but shouldn't the listitems be prefaced by <sdp: ?

# re: Things that make you go hmmm....

Tuesday, March 09, 2004 9:40 PM by Chris McKenzie

That's possible. It isn't an inherited control actually--it's a composite. Normally, it just validates what the user enters into a textbox for required field and datatype--but if the developer enters a list of items instead, it renders a dropdown.

Since the ListItemCollection already exists for the dropdown, I thought it'd be fairly simple to just create one for my control, and populate the dropdown list with it if necessary. It didn't occur to me that there might be namespace issues. I may have to create an SDPListItemCollection instead. I'll try your suggestion first thing in the morning.

Whether it works or not, thanks for the advice.

Chris

# Take Outs for 9 March 2004

Wednesday, March 10, 2004 1:43 AM by TrackBack

You've been Taken Out! Thanks for the good post.

# re: Wishlist for Visual Studio SQL Editor

Wednesday, March 10, 2004 11:20 AM by Chris Darnell

Good list, but how's about one more thing (in case they actually read this): The ability to set permissions on a SQL Server object. I am constantly having to flip back to Enterprise Manager to set execute permissions on stored procedures.

# Take Outs for 10 March 2004

Wednesday, March 10, 2004 10:39 PM by TrackBack

You have been Taken Out! Thanks for the good post.

# Climbing the mountain.

Thursday, March 11, 2004 9:12 AM by TrackBack

# re: Climbing the mountain.

Thursday, March 11, 2004 9:54 AM by Garrett Baker

Why not use a custom validator?

# Climbing the mountain.

Thursday, March 11, 2004 10:00 AM by TrackBack

# The Peak is in sight

Monday, March 15, 2004 9:58 AM by TrackBack

# re: For those D&D or LOTR fans out there

Monday, March 22, 2004 4:55 PM by Mark Isbell

Amrod Telemnar,...aka "hunka, hunka burnin' love".

# re: For those D&D or LOTR fans out there

Tuesday, March 23, 2004 1:43 PM by Chris McKenzie

silly man, lol.

# re: Installing SQL Server Reporting Services on Windows 2000 Server SP4 Domain Controller

Tuesday, March 23, 2004 5:00 PM by Marten

Thanks I just had this error today. Stuck on this problem also. I hope this workaround will solve my problems

# Take Outs for 26 March 2004.

Saturday, March 27, 2004 2:10 AM by TrackBack

Take Outs for 26 March 2004.

# re: Installing SQL Server Reporting Services on Windows 2000 Server SP4 Domain Controller

Monday, March 29, 2004 8:46 PM by G

I had that similar error too except I am on Windows XP Pro. Thanks for pointing me in the right direction. Looks like the problem lies in permissions.

# Take Outs for 2 April 2004

Saturday, April 03, 2004 12:44 AM by TrackBack

Take Outs for 2 April 2004

# re: Techno-Geek question

Thursday, April 15, 2004 12:16 PM by Jon Galloway

My friend at work just got an MSI MEGA PC ( http://www.msi.com.tw/html/active/megapc/main.html) and I'm thinking about blowing some tax refund money on one. It's a barebones PC but looks like a stereo component. You supply CPU, memory, and motherboard, but these things are under $300 so the whole thing could be $500ish.

Then, once you've got your 600 cd's in digital format you can do anything you could with a CD changer but can also play streaming radio, have extended cd and artist info from CDDB, access the music over a home network, etc., and that doesn't touch on the Tivo possiblities.

# re: Wow--Create class objects directly from SQL Server

Tuesday, April 20, 2004 11:54 AM by Dave Burke

Chris, Dino's book on XML Programming is the favorite book on my shelf. (Or I should say, in my car, since I carry it with me in case I have down time out and about.) I particularly enjoyed the serialization chapters and am looking forward to moving in the same direction you describe here. Thanks for the post!

# re: Wow--Create class objects directly from SQL Server

Tuesday, April 20, 2004 1:17 PM by Bryant Likes

I agree SqlXml + Serialization is very cool :)

I posted the results of some performance tests that I did and you don't take too much of a hit doing the whole Xml/Deserialize/Object thing compared to the standard object hydration methods.

http://blogs.sqlxml.org/bryantlikes/archive/2003/11/18/226.aspx

# re: Wow--Create class objects directly from SQL Server

Tuesday, April 20, 2004 1:19 PM by Bryant Likes

Also, if you get into deserializing objects with images check out:

http://blogs.sqlxml.org/bryantlikes/archive/2003/11/17/220.aspx

#

Tuesday, April 20, 2004 5:56 PM by TrackBack

<p>
<a href="http://weblogs.asp.net/taganov">Chris</a> takes <a href="http://weblogs.asp.net/taganov/archive/2004/04/20/116692.aspx">a look at a different way to interact with SQL Server</a> - using sqlxml and .Net xml serialization. I remember seeing this thing for the first time about a year ago, and I too had an "egad !" type moment. Could SQL Server act as an OO DB ?!
</p><p>
After much pondering, then some thinking, a bit of checking, and thinking some more, I came up with <i>an</i> answer ( not <b>the</b> answer, just an answer ). The answer is, unfortunately, no. There's more to bridging the OO-relational chasm than considering a row as a serialized object.
</p><p>
Yes, it <B>is</B> a cool technology. Yes, it does have it's applications. No, it can not serve as the backbone of most information systems. I won't get into the reasons here, but just by applying some reverse logic we can get to the same outcome. ( Actually, while many may argue my technical points against sqlxml at an architectural level, the reverse logic argument is quite solid ).
</p><p>
Sqlxml has been around for a while. Lots of developers know of its existence. Not once has Microsoft released anything more than demo-ware of how to use this technology in production systems as an OO-Relational bridge. No patterns were written about it. In fact, for such a cool technology, it must have been the least hyped ever.
</p><p>
So, if enough people are aware of a tool, and <i>don't</i> use it to solve common problems, <B>and</B> the makers of the tool follow suit, there's a <U>good chance</U> that the technology <i>should</i> not leave the cool camp and head over to the production camp.
</p>

# re: Owing a debt of gratitude to Jan Tielens

Friday, April 23, 2004 4:11 PM by Jan

It was my pleasure Chris! cu around!

# re: Web Services, Databinding, and properties of Child classes.

Friday, April 30, 2004 9:12 AM by Jan

Chris, also check out Christian's tool here: http://weblogs.asp.net/cweyer/archive/2003/11/21/39070.aspx

It will generate proxy classes with properties instead of fields.

# re: Not sure if this is true, but it's hilarious nonetheless

Friday, May 07, 2004 9:14 AM by Duncan

Not true - the idea that anyone in Kerry knows how to use a radio is a dead give away ;-)

# re: Not sure if this is true, but it's hilarious nonetheless

Friday, May 07, 2004 9:14 AM by William Bartholomew

I've seen this previously but as USA and CANADA ;)

# re: Not sure if this is true, but it's hilarious nonetheless

Friday, May 07, 2004 9:33 AM by AndrewSeven

I've seen the story a few times. Each time it has been the English and the Britania versus an Irish lighthouse and a question of 15 degrees.

# re: Not sure if this is true, but it's hilarious nonetheless

Friday, May 07, 2004 10:11 AM by The Obstinate Lighthouse Urban Legend

It is funny, but its BS.

The originally legend featured the battleship Missouri (the "Mighty Mo"), which was the biggest friggin' thing on the ocean at the time (circa 1950). The Yamato was larger, until it was scuttled after Japan surrendered. Anyway, Steven Covey actually told that story as an object lesson in one of his business books, "Seven Habits of Highly Effective People" (he also thought it was true).

Its also is a little dated in terms of believability... inertial guidance systems, GPS, Loran, triply redundant and tied into navigation computers. They wouldn't have to be told they were steering towards a lighthouse/reef. Also, executive officers are still required to sight stars with a sextant, so they still can navigate the old fashioned way in the event of total shutdown. There was actually a case in WWII where they had to rig a sail from bed sheets, etc. and manually take a badly mauled carrier back to port with no power (I think it was the battle of Midway). That tradition is not forgotten even today. Its one of the things the Navy prides itself on (not just U.S., but all of NATO).

I'm rambling, sorry. I'm sure you could find even more at snopes.com if you're interested.

B

# re: Not sure if this is true, but it's hilarious nonetheless

Friday, May 07, 2004 10:12 AM by Anon

# re: Not sure if this is true, but it's hilarious nonetheless

Friday, May 07, 2004 10:47 AM by bryan

do you think the irish would be in the habit of using the phrase: "your call"?

# re: The Peak is in sight

Friday, May 07, 2004 5:21 PM by Tommy

Chris, this post came up in a Google search for "viewstate dropdownlist composite controls". I am implementing a Reporting Services web-based UI as well, and have been working on a custom composite control like you describe. My sticking point is that I do not see why the dynamic control cannot save its viewstate; when it comes back on a post, it's still the same type (since this can be explicitly stored in ViewState), and so should be able to restore itself. This in particular with values for a list. The dynamically-added ASP server controls do not even show ViewState usage in a page trace, but for dates I use third-party eWorldui.net's date picker, which is using viewstate in the page. Anyway. Thanks for the heads up on what you've seen.

-Tommy McLeod

# re: Dell, ASP .NET, and programmer fun.

Saturday, May 08, 2004 2:19 PM by Chris Stewart

Great post!

# re: Untrue, but it's hilarious nonetheless

Saturday, May 08, 2004 7:52 PM by Tom

The story has also been used in advertising as you can see in the English spoken video from a Swedish company: http://www.silva.se/kampanj/film/index.htm

# re: Adventures in Technology

Thursday, May 13, 2004 8:49 AM by denny

About Linux:

two software packages I love:

FirewallBuilder
PoPToP

Firewall Builder is a nice GUI for for creating an maintiang a filewall and uses XML to store the rules.

PoPToP is a PPTP server that is WIndows compatable for auth, compression and encyption.

together I use them on an old pc to be a firewall and vpn solution.

that firewall has been running for nearly 4 years with almost no problems other than some software updates when needed.

# re: Suse 9.1 Experience so far

Friday, May 21, 2004 10:27 PM by denny

well I don't think this directly has to do with the loss of internet but IMHO:

Telnet BAD ! EVIL !
FTP WRONG!

use ssh to replace both of them....

if you do not know ssh is Secure Shell
it is a merger of Telnet and FTP inside a SSL sesion.

much more secure from hackers and network scans.

Telnet and FTP are plain text and if you use them someone can very easly copy your logins and passwords etc....

as for VI Gees.... there are at least 5-10 other editors you can use....
I have no clue why they would require VI other than as punishment.... almost like tellingn us to use EDLIN to write with!

# re: Suse 9.1 Experience so far

Friday, May 21, 2004 10:39 PM by Chris McKenzie

lol,

I'll make a deal with you--if you can guide me through setting up SSH so that I can access it from my Windows XP Laptop, and/or point me at a better editor with syntax highlighting, I'm listening. I'm admittedly a beginner at Linux setup and Administration. I still maintain that Linux is difficult to learn, however. :)

# re: Suse 9.1 Experience so far

Friday, May 21, 2004 10:47 PM by Chris McKenzie

Follow up:

It's not so much that vi is the required editor--it's that I can't really use the IDE for development--they have a build process in place that deals with a hierarchical structure of Makefiles. The source files I provide have to fit within that framework. If I had a better editor with syntax highlighting, I'd use it.

# re: Suse 9.1 Experience so far

Friday, May 21, 2004 11:38 PM by denny

well first bookmark this page:
http://www.openssh.org/

and this page:
http://www.chiark.greenend.org.uk/~sgtatham/putty/

and start here:
http://the.earth.li/~sgtatham/putty/0.54/htmldoc/


sorry but I don't have a detailed process but what I did was:

1) get ssh running
2) generate keys -- followed the docs.
3) copy the keys to the pc.
4) get putty started and feed it the keys
5) make a putty setting for connecting to the other machine.

done...

as far as I recall the process was not hard...
just remember that Linux / UNIX likes to hide some files and folders by naming them with a "." as the first character... so your home folder will have some hidden files and folders one of them has the ssl key you need to copy.

as far as editors my comment is just that there are many others to choose from and IMHO VI is so messy...

also you may want to check out stuff like VNC and there are some commercial X Servers for WIndows .... for that I'd be in a VPN session if you do it over the public internet....

http://www.microimages.com/freestuf/mix/
http://www.starnet.com/
http://www.labtam-inc.com/

an "X Server" is like a RDC CLient....

you can run an X GUI app from the remote Linux box and have a WIndow on your "WIndows" desktop for that app... and do cut and paste between that app and local windows app's.

as you like windows this might be just what you want...

# re: Suse 9.1 Experience so far

Saturday, May 22, 2004 12:03 AM by denny

also look at this:
http://x.cygwin.com/

# re: Suse 9.1 Experience so far

Saturday, May 22, 2004 10:20 AM by Chris McKenzie

Thanks for all your suggestions Denny. I dug around a little last night and found a much better editor that doesn't really require a big project space---KATE. I thik Kate and I are going to be good friends from now on. It functions more like an intelligent Wordpad.

None of this is over the public internet though. This is all being done behind a private, firewalled network.

I've tried getting stuff like cyqwin x running before, but it's been awhile. I guess I'll dig into that a little bit today then.

Thanks Denny

# re: Suse 9.1 Experience so far

Saturday, May 22, 2004 3:04 PM by denny

I have used one of the comercial X's before and it worked very well where I was at that time (about 3-4 years back) I am thinking that I may try to run Cyg this weekend as I have some things I'd like to do....

If I get it statred I'll post some info around.

drop me a message for other ideas ... I can be reached from my domain ... email is

denny at figuerres.com

one other thing .... if you get X and SSH running inside a closed network then you can just edit files localy and send them to the Linux box, some other options:

www.textpad.com is a windows text editor that has color-syntax and is way configuratble
many user built syntax files and stuff...
and it can handle all kinds of Text files Mac,Unix,Dos,Unicode etc... HEX and so on....

I have a licence and just keep getting the updates..... been using it for a long time (4-5 years now)

alsoo.... as you are on a private network don't forget you can use SAMBA to share disks, printers and logins.
so Textpad can open a number of files from a samba share and edit them and save them back witht the right idea of what '\n' means for the file you opened...

TextPad is not super big on macro stuff but does have realy good RegEx for search and replace stuff.
and it has "Rectangles" don't know if you have ever had any editors that do that?
in DOS days there was Brief that did them
say you have a block of init code and you want to grab the varibale names? mark a rect and copy it to a new section and paste!
not the whole lines... just the rect of text you selected.

# re: Suse 9.1 Experience so far

Sunday, May 23, 2004 9:59 PM by denny

Cygwin and CYgwin X:

so far one minor problem:

default setup will chose the "Documents and Settings" folder to make your "Home" variable but they have problems with spaces in names of folders....

work around:
1) make a home/username folder
2) edit the /etc/passwd file to point to the new home folder.

that seems to fix a bunch of minor problems I had....

with that chnage I can run the X Server and WindowMaker on an old PII 300 laptop running WIndows 2000 Pro and only 192 megs of ram.
I am getting a fresh copy of Fedora COre 2 to play with so I have not yet tested X forwarding.... ISO of the DVD has downloaded , got to burn it and load it next....

# re: Is inheriting from Table a bad idea?

Monday, May 24, 2004 2:46 PM by Justin Lovell

Suggestion from your first code listing... change this line:

Me.EnsureChildControls()

To:

If (HttpContext.Current Is Nothing) Then
CreateChildControls()
Else
EnsureChildControls()
End If

# re: Is inheriting from Table a bad idea?

Monday, May 24, 2004 2:54 PM by Andy Smith

You shouldn't be deriving from Table when you make a composite control. Derive from WebControl and contain a table.

# re: Is inheriting from Table a bad idea?

Monday, May 24, 2004 3:11 PM by Chris McKenzie

You guys have both said sort of what I was thinking. I was looking for some validation that I hadn't missed something obvious. Thanks!

# re: Is inheriting from Table a bad idea?

Monday, May 24, 2004 4:09 PM by AndrewSeven

It seems like it is an issue with the designer, I made small custom designer and got it working (c#).
Are there specific reasons to use WebControl as the base for most/all composites?



using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.Design.WebControls;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;

using System.Text;
using System.IO;

namespace TemplatedSampleSite.aspmessageboard.Classes
{

public class TestTableDesigner : TableDesigner
{
override public string GetDesignTimeHtml()
{

Control c= ((Control)Component);
StringWriter sw = new StringWriter();
HtmlTextWriter tw = new HtmlTextWriter(sw);
///Key call to render control.
///The call to base.GetDesignTimeHtml()
/// will return "correct" markup as will sw.ToString();

c.RenderControl(tw);
//return sw.ToString();
return base.GetDesignTimeHtml();
}

}

[Designer(typeof(TestTableDesigner))]
public class TestTable : Table
{
protected override void CreateChildControls()
{

Controls.Clear();
TableRow tr = new TableRow();
TableCell tc = new TableCell();
tr.Cells.Add(tc);
Label label = new Label();
label.Text = "Test HERE";
tc.Controls.Add(label);
this.Rows.Add(tr);
}
protected override void RenderContents(HtmlTextWriter tw)
{
EnsureChildControls();
base.RenderContents(tw);
}
}

}

# re: Is inheriting from Table a bad idea?

Monday, May 24, 2004 4:26 PM by Chris McKenzie

Hi Andrew,
The Designer is a good idea :). The only problem I forsee with using a table as the basis for a composite control is that the page developer will have access to the "rows" property, and will be able to modify the contents of the control directly.

# re: Installing SQL Server Reporting Services on Windows 2000 Server SP4 Domain Controller

Tuesday, May 25, 2004 10:36 PM by JhonnyG

Thanks this solve my problem

# re: SQL Server Reporting Services experiences

Thursday, May 27, 2004 10:23 AM by Aldo Ravizzini

Is there a way for using reporting service in a windows application??
Im a newbie in this, so any answer should do.
Thank, and sorry for my english. Im argentinian.

Thanks

# re: SQL Server Reporting Services experiences

Thursday, May 27, 2004 1:02 PM by Ryan Blair

Hi Aldo

The only way to use Reporting Services in an application is to insert a browser window into your app and view the reports through that. That is one of Reporting Services downfalls, it can only be implemented online and must be connected to accordingly.

Hope this answers your question.

# re: SQL Server Reporting Services experiences

Thursday, May 27, 2004 3:23 PM by Aldo

Thanks you very much Ryan, you helped me a lot

# re: SQL Server Reporting Services experiences

Thursday, May 27, 2004 4:14 PM by Aldo ravizzini

Hi again,
How can i, on an aplication in execution time, select the records that the report will show?

because once a deployed the report i don't know how to change the sql expresion

Thanks

# re: SQL Server Reporting Services experiences

Thursday, May 27, 2004 4:39 PM by Ryan Blair

Hi Aldo

Now to select records during execution, there is only one way that I know of to implement that, and that is to make some paramter queries in the report before you deploy it. This way it will ask the user for some input before the report is created.

Unless you are asking that they actually build the sql expression at runtime, which would be creating an ad hoc report, which I do not believe Reporting Services supports. But otherwise the parameter queries should hopefully be the answer to your question.

Hope this will solve your problem

# re: SQL Server Reporting Services experiences

Friday, May 28, 2004 2:29 PM by Aldo Ravizzini

Yes!! it works great, Thanks again Ryan, you saved me one more time.

Another question: is the a way to print reports other than exporting to another format and then print the exported document?

Thanks again!!!

# re: Suse 9.1 Experience so far

Monday, May 31, 2004 5:11 AM by Gazang

I agree with you. Linux has a long way to go in order to compete with MS-Products if it comes to usability. This is true for development tools and as well for user stuff. I am starting to love Microsoft. No problems installing drivers, do problems getting the IDE running and tools that seem to work!!!

# re: SQL Server Reporting Services experiences

Monday, May 31, 2004 10:44 AM by Ryan Blair

With Reporting Services the only way to print is to export. The will supposedly be changed in the next version that comes out with SQL Server 2005.

The one thing that really kind of sucks with having to export to print is that the user has to have a browser that is at least HTML 4.0

If they don't, the export feature is disabled, and the only way they can print the report is off the browser which may have less than favourable results.

Hope this helps you once again...

# re: SQL Server Reporting Services experiences

Monday, May 31, 2004 10:47 AM by Ryan Blair

I guess the other thing that should be noted is that when a document is exported in Excel format, it is only compatible with Excel XP and 2003, not Excel 2000. This will supposedly be fixed with the first service pack.

# Accessing SQL Reports on internet or LAN

Tuesday, June 01, 2004 1:00 AM by Hozefa

Hi
I have created reports using sql reporting services and have embedded them in webforms, it is working fine and can be accessed on LAN too but every time a user calls the webform, it asks for windows security authentication which I want to eliminate, I tried to check uncheck authuntication is IIS security for the web application, report server and reports virtual directories but it is not helping me to remove the window authentication, pls help to solve this problem.....
Regards

# re: SQL Server Reporting Services experiences

Tuesday, June 01, 2004 12:03 PM by Ryan Blair

Now with Reporting Services you may be having difficulties with Windows Authentication because that is what it uses to verify its users. I am not positive, but I think you have to turn this off from within the Report Manager. That may work, but I am not positive.

Of course when you turn this off, you will no longer have security on your reports.

Hope this helps you

# re: Installing SQL Server Reporting Services on Windows 2000 Server SP4 Domain Controller

Wednesday, June 02, 2004 11:14 AM by Amit Vasu

When I was installing the reporting services I got some stupid error saying reporting services can not continue installing, send report to microsoft. when I checked the log file it said something like this..

---------------------------------

Property(C): RSTarget.3882F579_1BCB_4C44_991C_060D38C9C09D = C:\Program Files\Microsoft SQL Server\MSSQL\Reporting Services\Samples\
Property(C): DataBases.3882F579_1BCB_4C44_991C_060D38C9C09D = C:\Program Files\Microsoft SQL Server\MSSQL\Reporting Services\Samples\Databases\
Property(C): SamplesDB1 = AdventureWorks2000
Property(C): CostingComplete = 1
Property(C): OutOfDiskSpace = 0
Property(C): OutOfNoRbDiskSpace = 0
Property(C): PrimaryVolumeSpaceAvailable = 0
Property(C): PrimaryVolumeSpaceRequired = 0
Property(C): PrimaryVolumeSpaceRemaining = 0
Property(C): _FeatDescription = Report Server
Property(C): _DefaultInstance = Installed
Property(C): SQL_SHOWLIC = 1
Property(C): PERSEAT = 1
Property(C): RSAutoStart = 1
Property(C): _Service = RS
Property(C): Asp_Net_Accout_For_GUI_Display = VASUDESKPRO\ASPNET
Property(C): _SingleText = Report Server
Property(C): SqlServices = 1
Property(C): WizardDialog = CustomSelectionDlg
Property(C): DisableBack = WelcomeDlg
Property(C): RSTempDatabaseName = ReportServerTempDB
=== Logging stopped: 6/1/2004 15:52:21 ===
MSI (c) (90:3C): Note: 1: 1708
MSI (c) (90:3C): Product: Microsoft SQL Server 2000 Reporting Services Enterprise Edition -- Installation failed.

MSI (c) (90:3C): Failed to grab execution mutex. System error 258.
MSI (c) (90:3C): Install in progress and no UI to display Retry/Cancel. Returning ERROR_INSTALL_ALREADY_RUNNING.
MSI (c) (90:3C): Server locked. Will skip uninstalled package cleanup, and allow locking install to perform cleanup
MSI (c) (90:3C): MainEngineThread is returning 1602
--------------------------------

any suggestions ?

# re: SQL Server Reporting Services experiences

Thursday, June 03, 2004 9:04 AM by Aldo Ravizzini

Hi...
Could you explain me how to configure the Report server for email delivery?

Thank you, one more time Ryan

# re: SQL Server Reporting Services experiences

Thursday, June 03, 2004 10:09 AM by Ryan Blair

You have to make sure that the server is has a connection to a SMTP mail server, this can be on the same machine through IIS I believe. Once you have that connection, you have to set up the report server to use the mail server for e-mail. Now I know you can do this during install, but since I do not have a SMTP server hooked to my testing box I skipped that step. Now I was trying to find the way to fix it, but can't seem to so far. I think it may be quicker just to uninstall and reinstall Reporting Services and point at the mail server during install.

Hope this helps out...

# re: SQL Server Reporting Services experiences

Thursday, June 03, 2004 12:30 PM by Aldo Ravizzini

Thanks man...

mmmm... you say that you haven't tried Email delivery... well I'll ask you anyway.

I manage to make an email subcription, but if I try to make it send a web file, it respond me with an error configuration message. But if I use the link option only it works just fine.

# re: SQL Server Reporting Services experiences

Thursday, June 03, 2004 2:10 PM by Ryan Blair

Hmmm... I have heard of that issue popping up around some of the other forums, though I can't remember where exactly. What is the error you are getting exactly? Is it when you try to retrieve the report through your email client or is it when you are actually sending the report that it occurs?

# re: SQL Server Reporting Services experiences

Thursday, June 03, 2004 2:16 PM by Ryan Blair

Oh, and what email client are you using?

# re: SQL Server Reporting Services experiences

Thursday, June 03, 2004 2:39 PM by Aldo Ravizzini

The error message is: Failure sending mail: The Report Server has encountered a configuration error; more details in the log files

I see it on the Report Administrator Page (more exactly in the Subscription Page). The mail isn't delivered. The error happends when de report server try to send it.

I'm using Outlook Express.

# re: SQL Server Reporting Services experiences

Thursday, June 03, 2004 2:45 PM by Ryan Blair

Hey Aldo

Try out this site.. they have a couple of solutions depending on the error thrown, maybe one of these can help you out.

http://www.google.com/groups?q=authz+group:microsoft.public.sqlserver.reportingsvcs&hl=en&lr=&ie=UTF-8&selm=ODE70opMEHA.268%40TK2MSFTNGP11.phx.gbl&rnum=4

Hope it works for ya

# re: SQL Server 2000 And the IS_MEMBER() function.

Sunday, June 06, 2004 1:27 AM by Nathan Smith

I just ran into the IS_MEMBER/db_owner problem myself. Thanks for letting me know I'm not crazy. :P

Unfortunately, I need to allow users with db_owner affiliation use the app I'm developing, so I can't use your "good fix" in its pure form. Probably going to go w/ something like:

if IS_MEMBER('FP_Admin') or IS_MEMBER('db_owner')
(
-- some stuff
)

Does that look like the best workaround to you?

nate

# re: SQL Server 2000 And the IS_MEMBER() function.

Sunday, June 06, 2004 1:48 AM by Chris McKenzie

That's the only work around that I can think of in your case. I'm glad you found my post helpful :)

Chris

# re: Question for your brilliance...

Thursday, June 10, 2004 5:40 PM by Scott Allen

Every socket has four pieces of information to make it unique: server IP address, server port, client IP address, client port. If I look at netstat right now, I see IE opened two connections to your web server on port 80, one from port 4766, and one from port 4767. I have two connections to the same port on your server, but since the client ports are different the communication works. Likewise, I’m sure weblogs.asp.net has many connections opened on port 80, but each one will come from a different client ip / client port combination.

You can only listen on a port from one socket at a time, but the Accept method will return a new instance of the Socket class for each client.

Am I making any sense?

# re: Question for your brilliance...

Thursday, June 10, 2004 5:50 PM by Ken Robertson

One other thing to note is that the application has to be multithreaded in order to handle multiple connections. You can do something as dirty as accepting the connection and forking, then having the child process deal with the new connection and the parent process go back to waiting for a new connection. Or, you could use actual threads for better memory and process management. But basically, a single instance of the application running can only do one thing at a time, so if it is working with the new client, it can't be listening for new connections, so in order to support multiple connections, you always need to have one process listening.

As far as threading in .NET, I'm not sure. My experience in socket programming and threading is from the Unix realm.

# re: Question for your brilliance...

Thursday, June 10, 2004 8:03 PM by Steven M. Cohn

To further clarify Ken's idea: start with your main thread. The entire purpose of this main thread is to listen on the incoming port. As soon as a request arrives, fire off another worker thread to do process the request. This is typically a very fast an efficient action so the main thread can immediately get back to listening for further requests. If you can, keep your worker threads as autonomous as possible; interact with the main thread as little as possible. Depending on your bandwidth requirements, it may be necessary to increase process priority or, for very high throughput, move to an SMP system. There are plenty of examples out there on multithreading using .NET. Good luck.

# re: Question for your brilliance...

Friday, June 11, 2004 8:50 AM by Chris McKenzie

Thanks guys. That was exactly the information I'm looking for. I just ordered the multi-threading book, so by the time I need this to work with multiple connections, I'll have it. Now at least I know that what I need to do can be done--and as NBC so often reminds us <grin> "Knowing is half the battle!"

# re: Question for the MS guys (and gals) :)

Friday, June 11, 2004 10:31 AM by Duncan Jones

I don't think you should use it at all - if you have a long running slow process you should run it on it's own thread.

# re: Question for the MS guys (and gals) :)

Friday, June 11, 2004 10:43 AM by Patrick Steele

DoEvents simply allows a chance for the windows message pump to process messages that may be coming in during a long-running loop.

It's not really a good idea to use it (it can cause re-entrancy issues) and it's pretty much unnecessary since .NET supports multi-threading.

Since console apps don't have a windows message pump running, DoEvents is useless in that environment.

# re: Question for the MS guys (and gals) :)

Friday, June 11, 2004 10:51 AM by Chris McKenzie

I do get a behavior difference if I use it in a Console environment. I have a console app that chuncks through a 30,000+ record file and prints the formatted contents to the console output window. If I run the app without DoEvents(), my other applications slow down. Redrawing takes forever. If I add DoEvents() to the read loop, then I get better behavior out of my other windows.

I'm not entirely sure how multi-threading the loop would change the original behavior of causing long redraw times on my other apps.

What am I missing?

Thanks

# re: Question for the MS guys (and gals) :)

Friday, June 11, 2004 11:56 AM by Joe

As Patrick Steele said, DoEvents should not be used in a console app. If you have a CPU-bound console app like the example you gave, you can improve responsiveness of other apps by calling System.Threading.Thread.Sleep() in your loop. A short timeout is probably enough: just to relinquish your timeslice and let other processes in.

Maybe DoEvents internally calls Thread.Sleep(0) which would explain why it makes a difference, but it's inappropriate in a console app.

# re: Question for the MS guys (and gals) :)

Friday, June 11, 2004 1:13 PM by Chris McKenzie

You know--I'm betting that DoEvents() does call Thread.Sleep() internally. Thanks Joe!

# re: SQL Server 2000 And the IS_MEMBER() function.

Friday, June 18, 2004 5:23 AM by Justin

I imagine that this is the default behaviour so that people who are server admin (and therefore members of dbo) don't have access to the data (well, at least not from the front-end).

Thanks for your post though, as I've been puzzling over this one too.

# re: SQL Server Reporting Services experiences

Saturday, June 19, 2004 4:26 PM by Aaron

My application is a internet web application. Data source and report server is on separate machine.

How to make my report secure if I use URL access?

# re: Art in the work place

Saturday, June 26, 2004 6:48 PM by gretchen

glad you enjoyed it!!

# re: SQL Server Reporting Services experiences

Tuesday, July 06, 2004 8:40 AM by Jerry

"I guess I expected to be able to allow anonymous access to the Report Manager via IIS, and have the Report Manager query the user for SQL Server credentials when they access the reports."

This may be a stupid question, but in the Data Source menu of Report Manager, if I choose

Connect Using:
The credentials supplied by the user running the report

then what credentials would these be? SQL Server credentials or Windows authentication?

# re: SQL Server Reporting Services experiences

Tuesday, July 06, 2004 1:55 PM by Chris McKenzie

If you use "The credentials supplied by the user running the report," it's SQL Security. When you use this model, the username and password is supplied to the connection string by the user. You can use SQL Server Security on the reports themselves, but not for <i>access</i> to the reports or the Report Manager in general.

# re: SQL Server Reporting Services experiences

Thursday, July 08, 2004 7:46 AM by Jerry

Thank you.

Now I have another dumb problem. My IIS settings are currently

Enable anonymous access
User Name: <computername>\IUSR_<computername>
Password:
Allow IIS to control password: disabled
Integrated Windows authentication: enabled
Basic authentication: enabled

And i'm using Windows NT Integrated security on the reports.

When I log on to http://localhost/reports everything works fine, but when I log onto http://<localipaddress>/reports I can't do anything. There's no My Reports or anything, just "Home / My subscriptions / Help".

If I try http://<localipaddress>/reportserver I get the following error message:

The permissions granted to user 'TOON\Guest' are insufficient for performing this operation. (rsAccessDenied) Get Online Help

Shouldn't it be saying something like "The permissions granted to user 'TOON\IUSR_TOON' are insufficient"?

If I Allow IIS to control password and disable Integrated Windows authentication, I get My Reports both in localhost and IP address, but I can't access the reports themselves. I get an error message about not having permissions to execute the queries.

Any idea how I should go about this?

# re: Web Services, Databinding, and properties of Child classes.

Thursday, July 08, 2004 9:16 AM by Joe

What about this:

public static DataTable ToDT(Array arr)
{
DataTable dt = new DataTable();
if ( arr.Length>0 )
{
object obj = arr.GetValue(0);
Type objType = obj.GetType();
dt.TableName = objType.ToString();
FieldInfo[] fis = objType.GetFields();

for ( int i=0; i<fis.Length; i++ )
{
dt.Columns.Add( fis[i].Name, fis[i].GetType() );
}

for ( int i=0; i<arr.Length; i++ )
{
DataRow dr = dt.NewRow();
obj = arr.GetValue(i);
for ( int j=0; j<fis.Length; j++ )
{
dr[fis[j].Name] = fis[j].GetValue(obj);
}
dt.Rows.Add(dr);
}

}
return dt;
}

# re: UPDATE Chris SET FirstMultiThreadedNetworkComponentCompleted = 1

Wednesday, July 14, 2004 9:50 AM by Jeff Bollinger

Visio can display cardinality and crows feet, by changing the settings. Go to Database -> Options -> Document -> Relationship.

# re: UPDATE Chris SET FirstMultiThreadedNetworkComponentCompleted = 1

Thursday, July 15, 2004 1:28 AM by StuartGunter

There's a fair amount in Visio that I thought should be standard, but you actually need to configure. Relationships (cardinality, crows feet, etc.) as well as displaying data types. In the same place to configure crows feet, you can select whether you want to show physical, portable or both data types. I always choose physical, but I thought that any ERD should, by default, display crows feet and data types.

# re: Updated Wishlist for Visual Studio Query Designer

Thursday, July 22, 2004 11:45 AM by Dwain

Some of the features you mention are in ApexSQLEdit (formerly MSSQLEd) - http://www.mssqled.com/DesktopDefault.aspx?tabid=28 - very good tool, and if some of the features they've introduced could be moved back to the VS IDE, I too would be a very happy camper...

# re: Suse 9.1 Experience so far

Thursday, July 29, 2004 12:18 AM by your humble friend in ketchup

I feel you homey. For all of our Linux-type moneys out there - "don't be hating".

Me, I like it when things work. Period. enough said.

# re: Suse 9.1 Experience so far

Saturday, July 31, 2004 5:50 AM by Jason

I use Suse 9.1 for quite a while now. OK, I already got eperience with earlier versions, and I think that it is a step forward. Indeed I agree that there is more available for windows.

The problem is that linux, or more specifically open source software, is refused a fair chance. One of the reasons that Windows is easier is that it is supported by companies who only develop windows drivers. Linux is completely (deliberately, forced?) ignored and computers are only sold with windows (and you pay heaps for it, tough if you already have a windows version). Why does a company make Win/Mac/DOS drivers, but not linux? I bet that there are more linux than DOS users around. Why, in PC Magazine, is Thunderbird voted as best free email program, but is Outlook Express listed as first choice in the overview? Why can't I buy a laptop without Windows preinstalled even if I want to use linux only? Why do magazines publish many Word tips&tricks, but not for Openoffice? These are little things, but they influence people.

Everyone should use the operating system he/she likes, and should not he hindered by unfair trading practises. Not all linux users are religious MS haters.

# re: Suse 9.1 Experience so far

Saturday, July 31, 2004 10:18 PM by Chris McKenzie

I don't agree with your analysis. Nobody is refusing Linux a fair chance. I certainly didn't when I was starting my development career. I didn't know anything about the Linux vs. Microsoft issue 4 1/2 years ago. My negative opinion of Linux comes from using and developing for Linux. Suse 9.1 is better--but there's nothing I can do in Suse that I couldn't do in Win98.

This business about not being able to buy a computer without windows on it is rubbish too. You can buy hardware-only systems all over the web. Many stores don't sell hardware-only systems because most customers won't buy a PC without an OS installed. The OS of choice is currently windows.

As to your questions for PC Magazine, I suggest you take those up with PC Magazine.

As to the reason that magazines publish many Word tips & tricks and not OpenOffice--it's simple--Word is widely used and the magazine is trying to sell copies of its magazine. It doesn't take a marketing genius to figure out that a magazine is going to try to print articles that are relevant to most of its target demographic, and that this policy will result in increased magazine sales.

The comments about unfair trading practices are barely worth comment, but I'll give you the benefit of the doubt that you are not a religious MS hater. Microsoft hasn't done anything that thousands of other companies don't do every day--except be better at it than everyone else.

# re: Web Services, Databinding, and properties of Child classes.

Wednesday, August 04, 2004 7:32 AM by Johannes

Perhaps LC.DataTextField and LC.DataValueField are the same. So I use this modified function:

public static DataTable ArrayToDataTable(System.Array arr, ListControl LC) {
DataTable DT = new DataTable();
DT.Columns.Add(LC.DataTextField);
if (LC.DataTextField != LC.DataValueField)
DT.Columns.Add(LC.DataValueField);

Type T = arr.GetType().GetElementType();

foreach(object o in arr) {
DataRow DR = DT.NewRow();
if (LC.DataTextField.Length > 0)
DR[LC.DataTextField] = GetFieldOrPropertyValue(o, LC.DataTextField);
if (LC.DataValueField.Length > 0 && LC.DataTextField != LC.DataValueField)
DR[LC.DataValueField] = GetFieldOrPropertyValue(o, LC.DataValueField);
DT.Rows.Add(DR);
}

return DT;
}

# re: SQL Server Reporting Services experiences

Wednesday, August 04, 2004 11:08 AM by sharon

Hi all,
I've found this forum very helpful, so thanks for that.

My question is: Is there a way to print the reports without having to export them? Maybe with an extension or something like that... I've been trying with the Printer delivery sample extension but I can't get it to work.

Thanks in advance for any suggestion!!

(sorry for the english, I'm from uruguay... :) )

# re: SQL Server Reporting Services experiences

Thursday, August 05, 2004 3:07 PM by John

Yes,
check out this site

http://www.csharphelp.com/archives3/archive545.html

PrimeQuote Insurance Services
PrimeQuote.com

Now, Here is my ques, I am using web services to access reporting services. Everything works just fine but when I click on Export, I get file not found error msg!

John

# re: SQL Server Reporting Services experiences

Thursday, August 05, 2004 3:08 PM by John

Now, Here is my ques, I am using web services to access reporting services. Everything works just fine but when I click on Export, I get file not found error msg!

http://www.primquote.com

# re: Questions for the general public

Friday, September 10, 2004 10:37 PM by Chad Myers

1.) VS source control integration stinks, IMHO. Source Safe is terrible and most 3rd party integrations are even worse. I like Database projects, but avoid SCC like the plague.

2.) Is this a joke?

3.) Again, you're killing me. I did both Java web and Swing development for several years.

4.) Right now we use VS.NET setup projects, but they're pretty weak. We're torn because MSI is a complicated mess (but very powerful) and WiX is incomprehensible. Perhaps we'll break down and buy InstallShield or Wise or just use Nullsoft's installer

5.) I haven't used PVCS, but I've heard it's horrible. It can't be any worse than VSS, that's for sure. Subversion is the way to go, no doubt. I've used several other source control systems and subversion beats them all bar none.

6.) For the most part. I wish I could stick to TDD more, but it's hard to put into practice the ideals. There's just not enough concrete examples and methodologies.

We use code coverage tools, we unit test heavily (mostly after a new feature is added), we're using continuous integration, we're trying to get FxCop integrated, but it's going slowly.

# re: Questions for the general public

Saturday, September 11, 2004 1:26 AM by Justin

1. Nope, long live Query Analyzer and sql scripts!

2. My only experience with Java is from Starbucks.

3. See above.

4. I used the VS.NET deployment project with the .NET boot strapper and MDAC components included. I admit MS made it pretty easy but my installation is pretty vanilla so I don't know how I would have fared beyond the basics.

5. Eh? The only source control I've ever tried is Subversion. Pretty spiffy.

6. No I'm a one man shop. Although I am constantly trying to force my self to get into TDD and automated builds.

# re: Questions for the general public

Saturday, September 11, 2004 4:16 AM by Frans Bouma

1. No, I use an O/R mapper :)
2. Java is superior in server side technology, like enterprise wide systems, not on the client.
3. Apples and oranges comparison.
4. Build my own.
5. Don't now perforce, I use subversion, which is amazing.
6. Yes. :)

# re: Questions for the general public

Saturday, September 11, 2004 8:41 AM by Chris McKenzie

Questions 2 & 3 are no joke--I haven't used java for windows app development, nor for web development. I've been told that there's a java equivalent of ASP .NET--so I'm wondering how it compares.

# re: Questions for the general public

Saturday, September 11, 2004 5:33 PM by Paul Wilson

1. No, I create/generate my own scripts and manually place them in source control.
2. Java sucks for Windows client development -- its doable, but obviously second-rate.
3. JSP is nearly a "clone" of ASP, and its usually playing catch-up in most cases.
4. I actually found Wise too limited, and have found the built-in tools adequate. Of course, a professional installation would require more, along with a dedicated person.
5. PVCS is very outdated -- you should be comparing VSS to Vault, Subversion, Perforce, and CVS -- all of which beat VSS by far. That said, I don't use the integration with VS, since I prefer manually control.
6. Not really -- and I can't say I've ever personally seen any place that did.

# re: Questions for the general public

Wednesday, September 15, 2004 2:40 PM by Tommy McLeod

1. I've used the database project on a smaller project, but on in my current group, we do not; scripts are generated and checked into VSS by a dba group. We have, though, recently turned on VSS for stored procedures through VS; too soon to say how well this will help manage changes there.

6. I think my current group is doing a good job in being aware of what needs improvement and adapting.

# re: Shared libraries on the Compact Framework

Thursday, September 16, 2004 6:46 PM by Daniel Moth

Hi. My answer to your first question is no. I know you have to use the GAC which is fairly different to the desktop but I have not used it myself.

Your second question needs to be more specific but "yes" I have been able to do this. Do you mean binary reuse or codebase reuse? Either way the question comes up often enough on the ng and it deserves a lengthy answer so I decided to blog about it in two parts :-) The first part is up here: http://www.zen13120.zen.co.uk/Blog/2004/09/retargetable-256.html . The second part will follow soon...

# re: Questions for the general public

Friday, September 17, 2004 8:52 AM by Laimonas Simutis

1) Yes we actually do, but with a lot of manual process added to manage changes from one version of the application (and db changes) to another.

2) I used to develop Java windows apps before .NET. After .NET, why would I torture myself. .NET is by far better in this area.

3) It is hard to say, just because I don't think you can compare ASP.NET to any other web development methodology. (My favorite is PHP anyways :) )

4) I integrate custom build tool and InstallShield.

5) I have never used PVCS. I use WinCVS at home, cvs on linux web dev box that i have, and VSS at work. Both tools, cvs and vss have their own problems and advantages. If I would have to choose one, it still would be cvs.

6) It varies from team to team depending on personel. We have our own dev standards, global components, in-house utilities. However a lot of is lacking in xp area of developing such as unit testing and peer reviews. I think I am the only one here that uses NUnit which is very very sad. Design methodologies are pretty well defined and the process for it is also in place.

# re: The assembly <assemblyname> could not be found at <path> or could not be loaded.

Thursday, September 30, 2004 6:40 AM by Tristan Fletcher

I have created an excel file with the appropriate assembly which works fine if the assembly is located anywhere on my PC but not if the assembly is on a network with the excel file located locally. I have gone through everything I can think of, including all the solutions you have listed, but I still get the same error. Any ideas????

# re: The assembly <assemblyname> could not be found at <path> or could not be loaded.

Thursday, September 30, 2004 11:31 PM by Chris McKenzie

1) The permission set for an assembly must be set up under Machine->All Code->LocalIntranet_Zone.

2) The _AssemblyLocation0 Document property must be give the fully qualified network path to the Assembly.

You Should be able to run caspol.exe -rsg <Full path to Assembly> and see if there is some other permission set that is keeping the code from executing.

Caspol.exe is located at <system>\Microsoft.NET\Framework\v1.1.4322.

If this doesn't work, reply to this comment with more details about your project.

# re: 3 Gmail invites

Monday, October 11, 2004 4:41 PM by Vince Zalamea

Hi,
I'm interested. Please send me an invite to vinzal@ yahoo.com (no spaces).
Thanks,
Vince

# re: 3 Gmail invites

Monday, October 11, 2004 4:47 PM by andy

Hi,

I'm interested, please send me an invite to

andy@andywu.info

Thanks,
-Andy

# re: 3 Gmail invites

Monday, October 11, 2004 4:54 PM by Will Waters

I'm interested

wedgebert@hotmail.com

Thank you,
Will

# re: 6 Gmail invites

Monday, October 11, 2004 4:54 PM by Frank

I have 6 to give away.

Send email to frank at franksworld dot com

Regards,
Frank

# re: 3 Gmail invites

Monday, October 11, 2004 5:02 PM by Alex

i got 5 invites if anyone's interested

http://blog.dreamprojections.com/archive/2004/10/08/238.aspx

# re: PDA Question

Tuesday, October 12, 2004 9:02 AM by Scott Galloway

Good question, supply and demand? So far as I know, the IPod is about as small as you can get - and this is no doubt one of the reasons for it's popularity (oh, and the battery *almost* lasts a whole work day). I have no doubt that someone will make a PDA that small and with that battery life (which would make it a *consumer* level product) - give it time!

# re: 3 Gmail invites

Wednesday, October 13, 2004 11:19 AM by marcelo gino pereira

I'm interested, Please send me an invite to:

gino@editoraviena.com.br


Thanks,
gino

# re: F5 considered harmful

Tuesday, October 19, 2004 8:28 AM by TrackBack

# re: The assembly <assemblyname> could not be found at <path> or could not be loaded.

Wednesday, October 20, 2004 2:10 PM by Harry Nystrom

I am having a similar problem with a WORD template, and have addressed both the assembly name and the caspol issues. Still I get the error. Any other ideas?

Thanks in advance.

# re: Debugger Debate

Saturday, October 23, 2004 5:17 AM by Jon Galloway

Agree.

Some bugs take a long time to reproduce, but are caused by very simple syntax errors. Some developers may consider it worthwhile to stop the program, fix the error, rebuild, and step through the 15 steps to recreate the error condition. I don't. Let me do it the easy way.

# re: 3 Gmail invites

Saturday, October 23, 2004 9:50 AM by Jos van Beek

Hi,
I would realy love to have an Gmail invite. If I can help/trade with something else, just let me know, but if you don't want anything anyway, i still would love the invite!
Thanks in advance
Jos
bsojbsoj@zonnet.nl

# re: Disabled Foreign Keys

Thursday, November 04, 2004 1:58 PM by Roger Falor

Thanks! This script is exactly what I was looking for.

# re: More VSTO Security Documentation Enhancments

Monday, November 15, 2004 1:49 AM by Peter Torr

Chris, sorry you were having a hard time with security; unfortunately if it is easy for you to get your code to run, it will be easy for attackers to get their code to run.

You might want to read two of my blogs:

http://weblogs.asp.net/ptorr/archive/2003/09/25/56217.aspx

and

http://weblogs.asp.net/ptorr/archive/2004/10/29/249366.aspx

The Office Pro requirement is a marketing thing. nothing I can do about that; sorry :-(

# More Debate on VSTO Security

Monday, November 15, 2004 8:40 AM by TrackBack

# re: More Debate on VSTO Security

Monday, November 15, 2004 8:24 PM by Peter Torr

"the document should prompt the user [that the code isn't trusted], warn them of the dangers of running untrusted code, ask if the the assembly should be granted FullTrust [...] and then set the appropriate security policy automatically."

Great in theory (that's what VBA's "Medium" security mode does) but horrible in practice. Outlook warned users about the dangers of opening VBS or SCR or EXE attachments, but we still had all those e-mail viruses. Now all those extensions are just blocked by Outlook.

IE used to warn people before auto-installing ActiveX controls; now you have the "Gold Bar" experience (which is an interesting solution when combined with Authenticode signed code, but not a good enough mechanism by itself).

Unfortunately, users just don't make good security decisions, especially when it is interrupting their workflow and they just want to "get their job done." Modal prompting is a BAD idea when it comes to security.

As for the setup project idea... yes, that is one way to do it, although unfortunately we don't ship with a setup project out-of-the-box. (One drawback to local installs is that you can no longer update the assembly in-place if you find a bug).

# re: Doom 3

Friday, December 03, 2004 11:00 PM by Alex

dOOM and gameplay are the two words that shouldnt be put together in one sentence. Have a look at Half-Life 2 :)

# re: A little overawed.

Thursday, December 16, 2004 3:23 PM by Nathan Maffeo

Ugh. I hate it when people schedule projects to complete during decmber. Nothing like stress to help wit the holidays.

# re: A little overawed.

Thursday, December 16, 2004 4:59 PM by Sahil Malik

Sissy :-/

# re: SourceSafe to PVCS Migration

Friday, December 17, 2004 3:47 PM by Chris

I had problems with PVCS changing the source control provider. The symtoms were that VS2003 would lock up anytime we tried to access VSS. New installations of VSS would not correct the issue. There is a registry key that we had to manually edit to make VS think it was no longer connected to PVCS.

I know this probably does not solve your problem, however it may indicate that there is some incompatibility having VSS and PVCS installed on the same machine. I would try removing both, cleaning up the registry, and installing only PVCS to see if that works any better.

# re: SourceSafe to PVCS Migration

Friday, December 17, 2004 5:12 PM by Kris Gray

I'm using Version 8.0 of the PVCS (Now Merant, Now whoever) client, so I can't really contribute to much to your particular problem.

But the two working side by side do work.

Were using this utility here for vss integration
http://www.codeproject.com/tools/sccswitcher.asp

And to do the migration we just checked everything out of vss and added it to PVCS. Not ideal but we wanted to re-arrange some stuff before hand anyway.

GL.

# re: A little overawed.

Friday, December 17, 2004 8:02 PM by cathal

check out the sql packager tool @ http://www.red-gate.com/sql/sql_packager.htm , it might help you with the sql aspects. Installshields fairly easy to get to grips with so you might just be able to get it to kick off the sql package at the end.

# re: SourceSafe to PVCS Migration

Saturday, December 18, 2004 8:16 AM by Jay Glynn

Forget about importing the projects. Part of the problem lies with SourceSafe and part lies with VM. Unless it is a very small project and that you have absolutely no errors (rarely a true staement)in the SourceSafe database it just will not work. I'm in the process of doing the same as you and what I do is take a latest version of a project from SourceSafe and start a new VM project with it. Maintain the SourceSafe archives for history but everything from this point forward is in VM. Another advantage to this is that occasionaly you will find that a change in folder structure can benefit the project. This is the time to do that. Also don't even bother with ide integration. You are much better off to use VM ide to check in and out. Doing things like branching and merging is almost impossible if you try and do them in Studio.

BTW upgrade to version 8 as soon as you can. Stability much improved and speed much improved. We have the server set up which improves security. The only person that can actually see the project databases directly is me. Developers interact with VM server. You don't have to bother with folder access rights at all. Mucho better....

Be glad to help out with questions if you have any at jlsglynn at gmail.com

Good luck

# re: Visual Dataflex / Visual Source Safe Integration

Monday, December 20, 2004 9:05 PM by Ladislau

ok

# re: Zipcodes

Wednesday, December 22, 2004 11:38 AM by Alan Yeung

the only free place is census, i built a branch locator (sample) with that free db.

# re: Zipcodes

Wednesday, December 22, 2004 11:53 AM by dave charlton

The best deal I found anywhere was:

http://www.zipcodedownload.com/

I don't believe it is in the public domain. But it should be.

# re: Zipcodes

Wednesday, December 22, 2004 12:04 PM by Eric Newton

has anybody checked with the US Post office?

www.usps.com

# re: Zipcodes

Wednesday, December 22, 2004 12:19 PM by DJ

Eric is correct - all zipcodes are freely available from the USPS site...

# re: Zipcodes

Wednesday, December 22, 2004 12:35 PM by weston weems

http://www.cfdynamics.com/zipbase/

Pretty complete... carries the long/lat values too to do all sorts of fun stuff.

# re: Zipcodes

Wednesday, December 22, 2004 12:54 PM by Chris McKenzie

Acutally, USPS charges for their ZipCodes. You can look up a city/state from a single zipcode, but you cannot get a list of all zipcodes and their associated city/state.

The link posted by weston weems seems to be the best one. Thanks weston!

# re: Zipcodes

Wednesday, December 22, 2004 1:37 PM by dru

Maybe we should email our senators and stuff. I just emailed all of mine. Really can't this informatoin be on the firstgov.gov.

# re: Zipcodes

Wednesday, December 22, 2004 2:34 PM by Matt

Census zip code files

Here is the 1999 version
http://www.census.gov/geo/www/tiger/zip1999.html

Here is what they offer now:
http://www.census.gov/geo/ZCTA/zcta.html

# Zipcode/Postalcode Validation

Wednesday, December 22, 2004 3:39 PM by TrackBack

# re: Zipcodes

Thursday, December 23, 2004 3:30 AM by Steve

start looking at the map and make your own

# Things I've learned in the year 2004

Saturday, January 01, 2005 9:02 PM by TrackBack

# re: As a former Linux programmer...

Thursday, January 20, 2005 10:30 PM by Dave Burke

What the hell is that? I caught this clip several days ago and thought I'd see a bit of it again. When I clicked on the link in your post it was some message about "If you're going to fucking watch my shit, then at least take the fucking time to /msg me before feeding off my humor and shitty animation." What an asshole. (Not you, this...animator.)

# re: VB vs. C# @ Microsoft

Wednesday, February 02, 2005 11:19 AM by Alan Yeung

Almost all the developments in Redmond are based on C#/C++... VB sounds like a toy language there..

# re: VB vs. C# @ Microsoft

Wednesday, February 02, 2005 11:19 AM by Alan Yeung

Almost all the developments in Redmond are based on C#/C++... VB sounds like a toy language there..

# re: VB vs. C# @ Microsoft

Wednesday, February 02, 2005 11:22 AM by denny

Very Good question....

IMHO there is one issue that it the real "Kikker"

does the guy have a background where he "Knows" about low level stuff?

most C / C++ folks have done at least some assembly lang. work and have had to deal with stuff like raw pointers and memory mapping ( transform a data structure to an in-memory layout) and other related stuff.

if you have that you can take any language to the "Edge" but if all you have done was Word and Access and VB 1-6 then you may not "Get" some of the really deep stuff....

also a *LOT* (IMHO) of VB coders would not have a clue how to write some of the classic stuff
like
Linked List
Tree
QSort
Shell Sort
Qeues (spelling! I know thats wrong)
or other stuff like that...

*NOT* to say many VB'ers do not know this....
just that a lot do not and that may be part of the
differece in the "culture" of C Vs VB that sometimes tends to ask for a C'ish person.

BTW: I too have done many kinds of coding....
I like VB but like you I can do whatever it takes to make it work... :-)

# re: VB vs. C# @ Microsoft

Wednesday, February 02, 2005 11:45 AM by Dave

I'm not trying to start a flame war here. Visual Basic is not taken seriously by anyone than other Visual Basic Programmers. I think its a great language and the criticism is unjust but thats the way it is.

# re: VB vs. C# @ Microsoft

Wednesday, February 02, 2005 12:09 PM by Chris McKenzie

Denny has a couple of items on his "low level" list that I have not covered yet--the QSort and Shell Sort. I've done binary and bubble sorts (bubble sort only as a programming exercise!). I'd have to look up Shell- and Q- sort. Linked-lists, Trees--been there, done that, bought the T-shirt.

I haven't done any Assembler though. I haven't needed to yet. I'm not against coding in C#, I just don't see why a syntactic preference should affect whether or not I'm considered for a position.

# re: VB vs. C# @ Microsoft

Wednesday, February 02, 2005 12:18 PM by Nathan Maffeo

My solution was to learn c#. I got a book and breezed through it in about a week. I can see why people like c# better, it does some things that vb.net can't and has a cleaner structure to it.

Bottom line is, if you are a reasonably good programmer in vb.net or c# there is no reason you can't learn the other very,very quickly - assuming you truly know OOP and the CLR and FCL.

I decided that even though I knew the bias against vb.net was unfair, simply knowing that fact doesn't help me - it was either change everyone's opinion or add another tool to my skillset. Guess which one was easier.

p.s. My favorite lang is still vb.net and i'm lucky enough to have an employer who shares that view.

# re: VB vs. C# @ Microsoft

Wednesday, February 02, 2005 12:22 PM by Chris McKenzie

Thanks for your comments Nathan--I'm in agreement with you. I *have* learned C#--it's just that on my resume I can show about a year of C# experience relative to 3 years VB .NET experience. But still, you're right.

# re: VB vs. C# @ Microsoft

Wednesday, February 02, 2005 12:29 PM by lynn

I think it's more a function of audience. VB.net is more focused at the non-professional, non-enterprise programmer where as VC# is, especially in the 2005 versions.

However, in .Net programing learning the framework in more important than a particular language. Once you get enough of the concepts down, moving between the two is not difficult. I started in VB.net and I'm moving to C# for the VS2005 time frame. I might limit C# to class librarys though. VB seems to be very friendly towards UI creation.

# re: VB vs. C# @ Microsoft

Wednesday, February 02, 2005 12:50 PM by .

They probably have to pick one or the other. You can't have a team of people working together on something where some know only C# and others only know VB.NET (even though there are tools to translate one language to the other). It's a shame, because in many cases people would be a lot more productive using VB or some other easy language. I really can't think of one reason where you would *need* to code in C# instead of something easier to use. Why does DirectX only have C# sample code for example? Just because C# looks more like C++ than VB, doesn't mean it is the "fastest" or most powerful option.

# re: VB vs. C# @ Microsoft

Wednesday, February 02, 2005 12:54 PM by Chris McKenzie

I don't think that argument flies either--the .NET framework makes for an extremely small overhead to move between languages--especially if the person has C or C++ under belt. I get the bit about picking one over the other--but when hiring perspective employees, I don't think that OOP VB .NET'ers like myself should be dismissed because we only "have a year in C#."

# re: VB vs. C# @ Microsoft

Wednesday, February 02, 2005 1:04 PM by Jeffrey Palermo

Doesn't anyone use J#? I use J# sometimes for a quick test harness. I prefer ; and {}s, so I mainly do c#, but people who really understand the .Net framework know that language doesn't matter as long as you make your code CLS compliant. If I was a great VB.Net developer, I wouldn't have a problem finding a job, and if I WAS interviewing, and the interviewer was biased like that because of his little situation I like to call "being a complete moron", I wouldn't want to work for that company. It would be a frustrating work environment of decisions handed down that are based on zero knowledge of the domain.

# re: VB vs. C# @ Microsoft

Wednesday, February 02, 2005 1:09 PM by Jeffrey Palermo

Oh, it's also capitalism. What if you programmed in COBOL.Net and could write any OO app better than any c# programmer. You could be an independent contractor, but if the market is there for apps with the name "COBOL" in them, then you have a problem. The market may shift for weird reasons or no reason at all. What about later when c omega comes out?

I think with .Net, I don't call my self a c# or vb.net developer. I develop apps with the .Net Framework to be run on windows. I can use several languages. Then when a project comes, I select the language or languages to use at that time. That may actually make someone more marketable if they refrain from labeling themselves either way. What about all the VB shops that don't want to hire a developer if he has mostly c# experience on his resume.

# re: VB vs. C# @ Microsoft

Wednesday, February 02, 2005 2:04 PM by Pedro Silva

I think it's mainly because Microsoft comes from a C++ background, and these teams feel more comfortable moving to C# (I know, the product I'm working on in written almost entirely in C#) because the language constructs are similar. But, there are definitely teams at Microsoft that use VB for development.

As for using multiple languages, even though that's supported in .NET, it's hard to have multiple languages within an application. The learnabilty and maintainability of the application goes down if you have to go between two lanugages.

# re: ASP .NET Validation Failure

Wednesday, February 02, 2005 4:43 PM by Alan Yeung

# re: How to debug a .NET custom action during an installation process.

Friday, February 11, 2005 3:21 PM by Josh Robinson

This is also a hack, but here is a link to the technique I use: http://weblogs.asp.net/josh.robinson/archive/2004/12/20/327381.aspx

# re: Patterns Everywhere...

Tuesday, March 01, 2005 6:02 PM by JT

Ah... to read Design Patterns for the first time...again. Enjoy it, it only comes once...

# re: An Unexpected Benefit of TDD

Tuesday, March 01, 2005 8:32 PM by SpiderMan

Good experience on TDD. I think TDD need better developer because if a developer can not isolate or design the application well this method will not work as expected well.

# re: Database Projects

Tuesday, March 08, 2005 11:47 PM by yag

Thanks for the write up. I've passed it on to my team. And thanks for the entry about improvements as well. <g>

yag
Group Manager, VS Data

# re: An Unexpected Benefit of TDD

Tuesday, March 15, 2005 3:56 PM by Hristo Deshev

Hi SpiderMan,

I think you're confusing cause and effect here. It's not that you need better developers to do TDD -- TDD makes developers better.

At least that's my experience. My bugcount's plummetted, my code's become easier to change, and some features I've never dreamed of, became possible.

Anyway... just try it out.

# A Question about SQL Server Security When Building Client-Server Applications.

Friday, March 18, 2005 3:53 PM by TrackBack

# A Question about SQL Server Security When Building Client-Server Applications.

Friday, March 18, 2005 9:08 PM by TrackBack

# re: A Question about SQL Server Security When Building Client-Server Applications.

Saturday, March 19, 2005 12:13 AM by Robert Hurlbut

I believe SQL Server 2005 is set to address some of these issues in a better way (from what I have seen so far).

In the meantime, if you look at, for example, the stored procedure sp_addlogin in the Master database, you will see it immediately checks if the user calling the procedure is a member of the SQL Server role "dbo". So, this is a restriction placed with inside the procedure which you can't get around short of changing the default Master procedures (not advisable).

# re: Culmination

Thursday, March 31, 2005 11:43 PM by jerrad Anderson

This sounds like a good idea, i am however having problems visualizing your scheme. Is it possible to maybe share a diagram?

# re: Culmination

Friday, April 01, 2005 9:42 AM by Chris McKenzie

I'll try to do that soon. :-)

# More on Implementing an Interface in the UI, or the 7-layer system.

Tuesday, April 05, 2005 10:30 PM by TrackBack

# re: More on Implementing an Interface in the UI, or the 7-layer system.

Tuesday, April 05, 2005 11:33 PM by JosephCooney

You say that the UI can and should do its own validation of Person...doesn't this duplicate some of the validation logic? If your "policy" for person becomes less strict that what the UI is enforcing, wouldn't this prevent "valid" (according to policy) data being entered.

Maybe I don't fully understand the subtleties of what you're doing but it doesn't sound that different to a normal 3-tiered system. The only slightly different spin is that instead of the "business tier" AKA "policy" doing the validation and then calling down into the data tier you're passing the "policy" down to the data access tier.

The idea of IPerson having a property called IsACompany strikes me as a little odd too :-)

# re: More on Implementing an Interface in the UI, or the 7-layer system.

Tuesday, April 05, 2005 11:46 PM by Harry

Looking for an other name for IPerson? How about IParty. I read a book (The Data Model Resource Book by Silversion, Inmon and Graziano) they talk about Party, which either is a Organization or Person. I am not native English, but I am using this from time to time. What do you think?

# re: More on Implementing an Interface in the UI, or the 7-layer system.

Wednesday, April 06, 2005 12:15 AM by Chris McKenzie

Regarding the UI doing its own validation:
I'm not actually suggesting anything new by saying that "the UI can and should do its own validation." We do this all the time. We require that entries into textboxes format to a date, or are numeric, or whatnot. We enable and disable groups of controls based on values set in other places--all in an attempt to visually represent the Business Rules.

There are two related ideas I'm exploring here :

1) The User Interface is just another representation of the Business Object and associated rules. If the UI implements the Interface of the Object it is intended to edit, then it becomes just another instance of that object and can be passed around through the system as such.

2) Point 1) requires that All Business Objects be made available as Interfaces. This means that some other mechanism is necessary for enforcing the Business Rules, which implies a separate rules-validation layer.

The immediate (and lesser) advantage to the UI-is-just-another-Interface approach is the ease of interacting with the rest of the system.

A secondary (and much more important) advantage is the separation of Business Rules from the Objects they apply to. In the example I gave, I did the validation just prior to the save operation. At a minimum it should be done there. But there's no reason why the FACTORY Object couldn't make a validation routine available to external callers.

To see the benefit of this approach, imagine that you had a list of IPersons attached to some account in your system. The UI Developer builds a basic list-managment interface, does the basic type-checking validation, and sends the list through the FACTORY for saving. All is well with the world.

Now let's say that a new requirement is added to the system: Only IPersons of a certain type are allowed to be attached to certain types of accounts. The Validation object can be modified to check for this condition accordingly, and raise the appropriate event with a corresponding descriptive message as to why validation failed. Since this is a new requirement, I would add a placeholder for it to the data store and make sure its state is enabled. Then I would load the rule as part of initializing the application. If the rule should ever be relaxed, I don't have to change the validation object again--I just have to change the value stored in the DataStore for the rule.

As long as the UI developer listens for the ValidationFailed event, all he has to do is pass the messages along to the end user. No additional code is required on his part.

Of course, the UI developer could modify the client to enforce the new validation. He could filter the list of availabe IPersons so that only valid ones could be added. This would save the end-user the trouble of building a long list of IPersons only to have the save rejected because 20 of them fail validation. A cleaner, more user-friendly UI is why he should do his own validation. If he doesn't get to it right away, the rule is still enforced, and the application doesn't break.

"If your "policy" for person becomes less strict that what the UI is enforcing, wouldn't this prevent "valid" (according to policy) data being entered."
Good point. Well taken. I suppose that the UI developer will need programmatic access to what rules there are in the system, and whether they're being enforced or not. That way he can enable/disable his required-field validators and whatnot accordingly. I'm going to chew on this idea some more. Very good feedback. Thanks.

There is a third benefit to this separation that I just thought of: If you're using WebServices, it would be difficult to enforce the Business Rules in the Business Objects themselves because functions cannot be sent along with the objects. WebServices sort of require that you have some kind of separate validation mechanism. If you're app is built this way from the ground up, then you're poised to take advantage of webservices with little or no modification to your code.

I stress that I am still exploring this approach. I'm not married to it, but I'm testing it out right now and it seems to work well and be fairly easy to implement. Thanks again for the feedback.

# re: More on Implementing an Interface in the UI, or the 7-layer system.

Wednesday, April 06, 2005 5:21 AM by Adam Weigert

I would just seperate the two entities because they really don't have a relationship that requires inheritance. A person can work for a company, but really, a person is not a company. Even with freelance developers, the company name may be their name, but it is a seperate entity of themselves.

Other than that, I would avoid putting the validation logic into the data access layer, it should only be concerned with doing the data work, nothing else.

The business rules / policy should all be kept in the tier above data access. I find it helpful to expose data validation to the UI tier, so I use something like this:

<code>
public interface IEntityValidator {
bool Validate(object value);
IEntityValidationErrorCollection Errors { get; }
}

public sealed class EntityValidatorAttribute : Attribute {
public EntityValidatorAttribute(Type validatorType) { ... }
}

public sealed class EntityValidatorFactory {
public IEntityValidator GetValidator(Type entityType) { ... }
}

public sealed class EntityValidationException : Exception {
public object Target { get { ... } }
public IEntityValidationErrorCollection Errors { get { ... } }
}

[EntityValidator(typeof(PersonValidator))]
public abstract class Person { ... }

public sealed class PersonValidator : IEntityValidator { ... }
</code>

In some cases you may need more than one validator per entity, so you just change how the factory returns a validator and the definition of a validator to be plural and contain many IEntityValidator instances.

This method creates a visible link between the entity object and the validator(s) used to perform validation of an object. It also allows someone other than the service tier to gain access to validation rules. So for instance, you could populate your objects and do a test validation on them if you really needed to.

I hope that isn't too much, but it is creating this link between the objects that makes using them so much easier ... it also makes changing what validators are run against an object.

Btw, I'm not fond of interfaces for entity definitions, abstract classes make it much easier to smooth in new features without upsetting much of the application.

# re: More on Implementing an Interface in the UI, or the 7-layer system.

Wednesday, April 06, 2005 6:16 AM by JosephCooney

It's good to see you're giving this some thought. Validation is a tricky beast and I don't pretend to have all the answers. You want rich user interfaces that can perform validation (to a certain level) to give users immediate feed-back as to how valid their input is. Then you want fuller validation (checking of constraints and complex business rules, concurrency etc) on the server.

I am certainly pro "interface"-based programming and factories (especially configuration-driven ones), however factories are a "creation" pattern. They're typically responsible for constructing and returning types of things. I don't see any creation-al stuff happening in the example you gave beyond just regular creation and object use. You could modify things a little to be more factory-like.

Relating to your comments on web services - I'm not sure that making your GUI implement a particular interface and then passing it to a service back-end is a good idea. The whole GUI type would need to be serialized and passed. Typically a data transfer object of some kind is used for this. Some types don't serialize well, and properties/fields defined as interfaces definitely don't xml serialize.

Also another small point - the I prefix is usually reserved for interfaces, but you've shown classes. I'm not sure if you intend them to be interfaces or not.

As I said - interesting to see your line of thinking. Keep up the experimentation.

# re: More on Implementing an Interface in the UI, or the 7-layer system.

Wednesday, April 06, 2005 9:20 AM by Darrell

How about a download of all this in a VS.NET solution? Thanks. :)

# Testing a UI Layer based on Interfaces

Wednesday, April 06, 2005 11:55 AM by TrackBack

I've recently read a very interesting article on Chris McKenzie's blog about a 7-layer system in which the UI uses nothing but Interfaces to interact with. I would think that this design is optimal for mock objects. I also would think that this design len

# On the factoring of interfaces

Wednesday, April 06, 2005 4:59 PM by TrackBack

<a href="http://weblogs.asp.net/taganov">Chris Mackenzie</a>'s take on "<a href="http://weblogs.asp.net/taganov/archive/2005/04/05/397300.aspx">Implementing an Interface in the UI, or the 7-layer system</a>" is based on having an interface for each of our entities in the system. His example focuses on a Person entity, thus having an IPerson interface. Now, the issue of having UI elements implement these interfaces is interesting, but secondary. First, we have to take a look back at what separating an interface from an implementation entails.

A "Person" is more than just their data - our IPerson interface should also contain methods for manipulating Person objects. I would even go so far as to say that we should avoid using the "set" part of properties - all manipulation should be entirely method based. I know that this is OO zealotry, but I've found that, more often than not, large blocks of code are written behind "set" properties. This can be easily taken too far.

So, what I propose is to refactor our IPerson interface into 2: an IPersonInfo interface which contains the data-only aspect of a Person as property "get"s only, and an IPerson interface which inherits IPersonInfo and contains the behavioral aspects of a Person - the methods.

What is the good for?

Well, for those cases where we will want UI controls to implement our IPerson interface, it would seem odd to have such a control need to implement a "GiveTwoWeeksNotice" method.

Also, since the IPersonInfo is, in essence, read-only data, we can safely pass it anywhere without worrying that the data in our object will be corrupted somehow.

There is one thing to watch out for, though. The IPersonInfo is really a data transfer object, something of an anti-pattern within a given application boundary. We need to make sure our application doesn't regress into procedural manipulation of the data. I don't think there will be too much danger of that for developers used to separating interface from implementation.

So, to end on a positive note, the IPersonInfo can also be effectively used at application boundaries - between client and server for instance. As well, when it comes to persistence, all we're really interested in is the data - no need to use an IPerson when an IPersonInfo will suffice; but one can consider persistence to databases (and the like) as a kind of application boundary too.

# The 7 Layer System: to be continued...

Wednesday, April 06, 2005 10:30 PM by TrackBack

# re: The 7 Layer System: to be continued...

Thursday, April 07, 2005 6:25 AM by jerrad anderson

I wonder if there are any practices for testing such design patterns? patterns are nice but the usual give and take that you get for using them is that you add complexity to your project. With added complexity comes higher risk for bugs.

Maybe I can find some info on how to test and how these patterns improve or make testability harder.

good stuff :)

# The 7 Layer System: to be continued...

Thursday, April 07, 2005 10:31 PM by TrackBack

^_^,Pretty Good!

# Weblogs @ ASP.NET

Thursday, April 07, 2005 11:42 PM by TrackBack

^_^,Pretty Good!

# re:When Reporting Services

Sunday, April 10, 2005 2:57 AM by TrackBack

^_^,Pretty Good!

# re:A Question about SQL Server Security When Building Client-Server Applications.

Sunday, April 10, 2005 2:57 AM by TrackBack

^_^,Pretty Good!

# re:Database Projects

Sunday, April 10, 2005 2:58 AM by TrackBack

^_^,Pretty Good!

# re: My Motivation

Tuesday, April 12, 2005 12:56 PM by Gabe Halsmer


Okay but wasn't Ralph always a little crazy? Take this quote for an example. What did he mean? If you put the word "well" in italics to add some emphasis, then this statement doesn't make much sense. What's the point of doing something WELL if its only reward is to get it done? Why not do it in a hurry then, and style-points be damned.

# re: My Motivation

Tuesday, April 12, 2005 3:53 PM by AndrewSeven

A bit wonky, but hey look at the kind of world we have.

Do you get a lot of personal satisfaction from doing a bad job even if the pay is good?

# re: My Motivation

Tuesday, April 12, 2005 6:47 PM by Gabe Halsmer


I think the reward of doing something well is the knowledge of your own competenancy. It feeds your ego, and you feel more secure in your ability to handle challenges.

Do any other programmer's have this problem? My current job isn't especially challenging, and I know several times I've caught myself making some meninal task harder on purpose, just for a little excitement. Of course, this is not a good habit for enterprise apps with large teams as it breaks the KISS rule (i.e. keep it simple stupid). The next person who follows you and looks at your code will be really annoyed that you obfuscated such a simple task.

# re: Fortran to VB .NET

Saturday, April 16, 2005 4:07 PM by David Brabant

I doubt you can find a tool that would do some kind of conversion (at least from Fortran to VB.NET). However, if it has been initially written in Fortran, it's probably because it heavily relies on math libraries. There is a math and engineering library for .NET which probably covers what your friend needs:
http://www.xhovemont.be/archive/2005/03/09/550.aspx

# re: Does this make sense to anyone?

Monday, May 02, 2005 9:31 PM by John Bates

What locale is the code running in? From the .NET Framework Developer's Guide: "By default, the String.Compare method performs culture-sensitive and case-sensitive comparisons." The 4 argument Compare overload allows the culture to be specified (maybe use CultureInfo.InvariantCulture).

# re: Does this make sense to anyone?

Tuesday, May 03, 2005 3:24 AM by nsimeonov

It looks to me that, what this guy is testing is to check if both sets ( ' and , ) and ( '* and ,* ) comparision's result is the same because they start exactly the same. No matter the culture and anything else these symbols should compare equally I think.

it's like trying to sort

(a , b)
and
(ac, bc)

for both sets String.Compare should return the same result.

# re: Does this make sense to anyone? Is it a bug in String.Compare()?

Tuesday, May 03, 2005 10:09 AM by Chris McKenzie

That's right--it shouldn't matter what the cultureInfo is--either "'" < "*" or "'" > "*". The rest doesn't matter.

I ran this same test in C last night. The strcmp() function in C works as I expected it to.

# re: Does this make sense to anyone? Is it a bug in String.Compare()?

Tuesday, May 03, 2005 2:09 PM by Philip Rieck

String.Compare uses word sort rules, not string sort rules. This give different weights to characters so that things like I'll is close to Ill, even though by string sort rules theres a big difference in the 2nd character.

So it's assigning a different weight to the ' character based on wether or not it's part of a "word".


If you don't want it to act this way (and want to do a string compare instead of a word compare), you need to get the CompareInfo object from the current culture, and pass in StringCompare as the CompareOptions param:

Result1 = CultureInfo.CurrentCulture.CompareInfo.Compare(test1, test2, CompareOptions.StringSort);

Result2 = CultureInfo.CurrentCulture.CompareInfo.Compare(test3, test4, CompareOptions.StringSort);

I don't like this behavior too much either. And I don't like that String.Compare has no overload with a CompareOptions param.

# re: Strange Postback Problem in ASP .NET

Tuesday, May 03, 2005 4:50 PM by Paul M.

Sounds like you should try a callback. It's available in ASP.NET 2.0 but you can make it work in 1.1 also.

Checkout info here: http://www.koinos.com/PermaLink.aspx?guid=76cf4bc7-d64a-4110-9af4-81d8bc65210f

You'll basically have to get a string back and then parse it and stuff it into the drop down list but it will work.

# re: Strange Postback Problem in ASP .NET

Tuesday, May 03, 2005 5:13 PM by Brent

What about using Javascript to replace whatever the postback is doing?

# re: Does this make sense to anyone? Is it a bug in String.Compare()?

Friday, May 06, 2005 11:19 AM by Chris McKenzie

Sounds like a good idea. How would you suggest doing this in the DataView.Sort method?

# re: Note To Self

Friday, May 06, 2005 11:59 AM by Miller

No, they don't teach common sense in college courses because it is common sense.

# re: Note To Self

Friday, May 06, 2005 12:40 PM by Frans Bouma

"It's hard being a self-taught programmer sometimes. Will they cover this issue when I get to my relational database courses in college?"
No way! :)

I agree it's common sense to leave them out of the view. Once you understand how a view is used in a query, you'll understand putting them in the view is weird: select * from myview, where myview is select * from foo, does:
select * from (select * from foo) as Myview

so adding the order by in a view is not logical, normally you wouldn't put it there also if you would use a normal query.

# re: Note To Self

Friday, May 06, 2005 1:23 PM by Chris McKenzie

It must not be as common-sense as you think because I've seen it just about everywhere I ever worked. And most people I've worked with have experience and degrees.

The mentality that I had (and other programmers I've worked with have had) is that Sql Server does stuff behind the scenes to optimize the query. What Sql Server does has always been something of a mystery, but I'm starting to see the underlying work now. The execution plan is starting to make sense.

Additionally, none of the books or Sql 2k Documentation covers the issue at all except to say that it's not possible to use ORDER BY in a view except with TOP is also specified.

Further, there are articles that specifically recommend that you do it: http://www.microsoft.com/sql/techinfo/tips/development/ORDERBY.asp

# re: Note To Self

Friday, May 06, 2005 1:23 PM by Chris McKenzie

Follow up:
What you've said makes sense AFTER the fact, but hindsight is 20/20.

# re: Note To Self

Friday, May 06, 2005 1:49 PM by Michael Kaplan

There are actually ways to make it work, FWIW -- it is one of the major topics I will be dealing with at my TechEd talks in Orlando and Amsterdam (DAT290 and DBA319), for both Shiloh (SQL Server 2000) and Yukon (SQL Server 2005).

# re: Note To Self

Friday, May 06, 2005 1:52 PM by Chris McKenzie

Care to offer any spoilers?

# re: Note To Self

Friday, May 06, 2005 1:57 PM by Michael Kaplan

Heh heh heh -- after my blog is back up maybe I'll post some stuff on this issue -- it is an interesting one.

Right now the whole MSDN blog site seems to be down though. Hopefully they will fix that soon!

# re: Note To Self

Friday, May 06, 2005 2:01 PM by Michael Kaplan

Scratch the maybe -- I will post something this afternoon, after they get it back up. :-)

# re: Fortran to VB .NET

Friday, May 06, 2005 2:01 PM by Carlos Araya

We have very strong migrations technology (www.artinsoft.com) but do not have a Fortran tool, but tons of previous experience. Coould you put me in contact with your friend? Thanks

# re: Note To Self

Friday, May 06, 2005 2:33 PM by Wallym

Yeah, I've always felt that ORDER BY is bad anyway. The problem I've got is that the current project I am on won't let me do a sort any other way.

Wally

# re: Note To Self

Friday, May 06, 2005 2:35 PM by Chris McKenzie

Excellent! Thanks.

# re: Note To Self

Friday, May 06, 2005 2:36 PM by Chris McKenzie

In my project, I use the ORDER BY when returning the values from the procedure--I'm just taking care not to use ORDER BY before that point, i.e., in the views.

# Making SQL Server index usage a bit more deterministic

Friday, May 06, 2005 4:37 PM by TrackBack

Chris McKenzie blogged about a situation that I will be talking about in my upcoming TechEd presentations...

# re: Note To Self

Friday, May 06, 2005 5:11 PM by Michael Kaplan

There you go, Chris. Enjoy. :-)

# Shout out to Michael Kaplan

Monday, May 09, 2005 8:08 AM by TrackBack

# re: Shout out to Michael Kaplan

Monday, May 09, 2005 8:17 AM by Michael Kaplan

Any time -- my favorite part is how in SQLS 2000 it was a hack, but in SQLS 2005 they did the work in the engine to make it a genuine feature!

No need to shout though. I can hear even the whispers if they link to me.... :-)

# re: Does this make sense to anyone? Is it a bug in String.Compare()?

Thursday, May 12, 2005 4:10 PM by Chris McKenzie

Okay, I tried Phillip's suggestion and it doesn't work. Any other ideas?

# re: Worlds of Warcraft

Friday, May 13, 2005 4:34 PM by karl

Chris:
Just a personal recommendation..consider rolling a 2nd character and keeping it quasi up to date...you might find the paladin class bland to play after a while...

great game though :) gl (different server)

# re: Worlds of Warcraft

Friday, May 13, 2005 4:46 PM by James Geurts

Blogging and playing WoW... nice!

# re: Worlds of Warcraft

Friday, May 13, 2005 5:31 PM by Bob

Also, while re-rolling, one would hope that you might come up with a more creative and personal-to-you-name than Kahlan. Definitely NOT some form of Richard, lol!

<People tend to be more interactive with those who created a char name, rather than someone who "borrowed" it from a book... At least, I am that way with folks playing in AC2 >

# re: Note To Self

Sunday, May 15, 2005 3:15 AM by YeYan

# in reporting services pls help me

Wednesday, May 18, 2005 7:05 AM by jagan

hello sir,
i was strucked at form authentication in reproting services so pls help me
and my problem was when i am configuring the files, reportmanger in the browser is saying as error could not found so pls help and suggest me

# re: Declarative vs. Programmatic binding with the ASP .NET DataGrid

Wednesday, May 18, 2005 2:53 PM by Karl

I use OnItemDataBound when I have to and not when I don't. I certainly run into both cases frequently. If, in the future, new needs require more advanced formatting/processing, it's typically trivial to move all/parts to the OnItemDataBound event.

"Always implement things when you actually need them, never when you just foresee that you need them" sums up my view of this one...

# re: Declarative vs. Programmatic binding with the ASP .NET DataGrid

Wednesday, May 18, 2005 3:44 PM by Benjimawoo

I'm afraid I'm with your co-worker.

I generally use server tags in the HTML, particularly if I've got some weird and wonderful formatting going on in my table. I find it easier to picture what's going on with all the layout and content bunched together.

Although I also use <%# GetMyWeirdlyFormattedString(Container.DataItem("Name")) %>

if it's very weird.

Oh well. Guess we're all different

# re: Declarative vs. Programmatic binding with the ASP .NET DataGrid

Wednesday, May 18, 2005 3:58 PM by Anatoly

We build DataGrid columns in code-behind.
1)Declaration of DataGridColumn on page level makes easy to reference it on every DataGrid event(by Column index)
2)We can change the way Grid looks and behaves by changing code in one place(Lets say we have corporative Date format and you want to change it)
3)In future we will be able to hold Grid columns information in configuration file/database

# re: Declarative vs. Programmatic binding with the ASP .NET DataGrid

Wednesday, May 18, 2005 4:38 PM by Wilco Bauwer

I too am with your co-worker. Doing it The Declarative Way makes it, IMO, easier to maintain (a designer can add/remove things if he/she like without having to worry about breaking dependent code). Doing everything on ItemDataBound also means that you somehow have to find the right controls (assuming you don't build the whole control hierarchy for each item there). This _may_ be problematic in certain situations when dealing with container controls (read: controls implementing INamingContainer).

Sometimes you have to do more than simply output data in the data object. In that case I would add helper methods in the code behind and call that, like Benjimawoo suggested. That way I think you generally have the best of both worlds.

# re: Declarative vs. Programmatic binding with the ASP .NET DataGrid

Thursday, May 19, 2005 4:39 AM by Jeff Gonzalez

Or you could stay away from the DataGrid altogether. We have used repeaters extensively across our applications. We wrote a custom paging control as well as built in sorting. The render time on a repeater is much shorter than a datagrid and you can control the html without having to override the lifecycle methods of the control.

I figure someone will say something about tediousness of writing html with the repeater, but we code generate most everything for list pages, and even if we have to customize something at least 60% or more of the work has already been done.

# re: Declarative vs. Programmatic binding with the ASP .NET DataGrid

Thursday, May 19, 2005 6:52 PM by Javier Luna

I believe that any DataLayer must be a simple code block, that they allow operations against DB.

That code block would not have to know on the Business Entities. Single to specialize it is to execute the operations (Store Procedures and SQL Sentences) against the engine DB (SQL, Oracle, DB2, etc.), with which this setting.

Finally, I invite to you to download the DataLayer.Primitives Public Version.

This is very cool Data Layer :)

DataLayer.Primitives - Readme!
http://forums.microsoft.com/msdn/ShowPost.aspx?PostID=1389

Cheers,

Javier Luna
http://guydotnetxmlwebservices.blogspot.com/

# re: ASP .NET Tracing on a GridLayout page.

Friday, May 20, 2005 4:12 PM by James C

1) I didn't think anybody used GridLayout

2) What's wrong with Trace.axd?

# re: ASP .NET Tracing on a GridLayout page.

Friday, May 20, 2005 4:16 PM by Chris McKenzie

1) lots of people use GridLayout: some of us got religion on FlowLayout late in the game, and others of us inherited projects that used GridLayout and can't change it right now.

2) I didn't know about Trace.axd until you mentioned it, but it appears to only log errors. I'm interested in Trace for reasons other than errors.

# re: ASP .NET Tracing on a GridLayout page.

Friday, May 20, 2005 4:40 PM by Chris McKenzie

I stand corrected: Trace.axd is good, but you still have to turn tracing on on the page for it to show up in Trace.axd. And if it's going to show up on the page, I'd like it to be put someplace useful. :-)

# re: ASP .NET Tracing on a GridLayout page.

Saturday, May 21, 2005 10:20 AM by Nikhil Kothari

Check out my ASP.NET Development Helper tool. It lets you hide trace and view it in a separate window as well, without having to add script to your page.

http://www.nikhilk.net/ASPNETDevHelperTool.aspx

# re: Declarative vs. Programmatic binding with the ASP .NET DataGrid

Monday, May 23, 2005 10:12 PM by Aaron

I rarely use DataGrids - I just find that they're too restrictive and I have too much overhead. I'm a big fan of simply using repeaters to code up lists that look/feel exactly the way I want. Everytime I start with a DataGrid I end up replacing it as the functionality of the list grows. That being said, I prefer the declarative method. When I'm already using an <asp:... > control I try to keep as much of the presentation with the control rather than pushing it into the code behind. It usually ends up cleaner and easier to read.

# re: ASP .NET Tracing on a GridLayout page.

Wednesday, May 25, 2005 10:52 PM by Javier Luna

I believe that any DataLayer must be a simple code block, that they allow operations against DB.

That code block would not have to know on the Business Entities. Single to specialize it is to execute the operations (Store Procedures and SQL Sentences) against the engine DB (SQL, Oracle, DB2, etc.), with which this setting.

Finally, I invite to you to download the DataLayer.Primitives Public Version.

This is very cool Data Layer :)

DataLayer.Primitives - Readme!
http://forums.microsoft.com/msdn/ShowPost.aspx?PostID=1389

Cheers,

Javier Luna
http://guydotnetxmlwebservices.blogspot.com/

# re: Declarative vs. Programmatic binding with the ASP .NET DataGrid

Tuesday, May 31, 2005 11:22 AM by Michael Stone

My 2 cents:

I go with the repeater/code behind approach for the simple reason that a code change will break at compile time.

This:
<%# Container.DataItem("AttorneyName")%>
will not break until you visit the page if you've changed the object that is populating the control.

This:
private void repeater_ItemDataBound(object sender, RepeaterItemEventArgs e)
{
if (e.Item.ItemType == ListItemType.AlternatingItem || e.Item.ItemType == ListItemType.Item)
{
// Get the object for this row.
AnObject o = e.Item.DataItem as AnObject;
if (o!= null)
{
// Set the fields.
Label name = e.Item.FindControl("labelName") as Label;
if (name != null)
{
name.Text = o.Name;
}
}
}

Will break at compile time if AnObject has changed.
Of course, this means you have strongly typed objects instead of SQL queries but the only place a SQL query should exist is in the DAL.

# Language enhancements I'd like to see.

Tuesday, May 31, 2005 4:08 PM by TrackBack

# re: Language enhancements I'd like to see.

Tuesday, May 31, 2005 5:11 PM by Wedgebert

I know VB is getting (back) the differing scopes of properties.

The secret thing would be pretty nice. It would clean up the code since the variable declartion would be in the property.

# re: Language enhancements I'd like to see.

Tuesday, May 31, 2005 5:17 PM by Stewart Robertson

I think you'll find whidbey already does your first wish (differently scoped getter/setters for properties)

public int Testint
{
get
{
return 1;
}
protected set
{
//set stuff
}
}

or in VB:
Public Property TestInt() As Integer
Get
Return 1
End Get
Protected Set(ByVal value As Integer)
'Set Stuff
End Set
End Property

Very handy feature for the exact reason you've already covered - being able to add an 'internal' modifier to a set is also useful

# Your wish is our command

Tuesday, May 31, 2005 5:30 PM by TrackBack

Good news for some .NET developers

# Your wish is our command

Tuesday, May 31, 2005 5:31 PM by TrackBack

Good news for some .NET developers

# re: Language enhancements I'd like to see.

Wednesday, June 01, 2005 11:50 AM by Michael Stone

Glad to see we get half of this. Shame about the other half though. I like Wedgebert's idea of putting the 'secret' member in the property:

<pre>
public int Property1
{
int m_iProperty1;
get
{
return m_iProperty1;
}
set
(
m_iProperty1 = value;
)
)
</pre>

Very concise syntax. Keeps the member hidden even from the rest of the class so you have to use the property to access it.

I realize, of course, that both of these features could be accomplished through subclassing but I thought this would be more elegant.

# re: Language enhancements I'd like to see.

Wednesday, June 01, 2005 11:52 AM by Michael Stone

Oh, I see it was Chris who came up with the idea in his VB example. This VB stuff's all greek to me...

# re: I Bought a House

Wednesday, July 06, 2005 11:11 PM by Jerry Dennany

Congrats on the house - hope it's everything you want it to be.

# re: I wonder how this works?

Thursday, July 28, 2005 11:53 AM by Dover

My theory is this: Whenever a normal person plays with a handicapped one, for example in a video game or baseball or any competitive activity, normal people would have the subconscious tendency to perform below their usual. I have no basis for this, it's just one of my wild theories.

# re: I wonder how this works?

Thursday, July 28, 2005 4:16 PM by Serge

luke use the force... Anyways it does say how he does it.. he uses audio for it. I am sure since he doesn't have eyes he has a much better sence of hearing.

# re: Do you have the solution?

Friday, July 29, 2005 2:18 PM by Ayende Rahien

You can define an interface that just have the accessors and use something like this to use it:
http://www.ayende.com/Blog/DynamicCasterIsDone.aspx

# re: Do you have the solution?

Friday, July 29, 2005 3:30 PM by Frans Bouma

object[] values = new object[datareader.FieldCount];
datareader.GetValues(values);

then in your bo, pass in the values array, and use datarow.ItemArray = values;
to set the values all at once.

it can't get any faster than that. Positive side effect: you don't pass around the datareader reference.

# re: Problem Solved

Tuesday, August 02, 2005 8:32 AM by Jeffrey Palermo

Why would you ever want to pass an ADO object to a constructor? I know you are not talking about a domain object, but even your factory or builder objects. Passing a DataReader can be very bad since it is created somewhere and then passed off. The connection to your datastore is open the whole time. A better approach would be for your repository object to have a builder method that gets the ADO object, extracts the info and builds (constructs) your object. Then the complete instance can be returned.

# re: Problem Solved

Tuesday, August 02, 2005 8:48 AM by Chris McKenzie

Good point--but that's sort of what I'm doing. My FACTORY objects simply return Interfaces. The implementation objects are declared as Friend so they cannot be accessed directly by external callers.

The code looks something like:

Public function GetMyObject() as IMyObject
' Code to build an IDataRecord Object.

dim myObj as IMyObject = New MyObject(MyIDataRecord)
Return myObj

End Function

# re: Issue with Adobe

Thursday, August 11, 2005 3:47 PM by Aaron Holmes

Funny, we just ran into the exact same issue here with the same solution.

Thank you Google!

Aaron

# re: I found this one by accident.

Wednesday, August 24, 2005 9:56 AM by Damien Guard

123.- is valid because some number formats place the sign after the number.

Same goes for +, they are both valid because they are signs.

/ and * are false because they are only mathematical operators.

[)amien

# re: Issue with Adobe

Wednesday, August 24, 2005 9:57 AM by susize bravo

i love u

# re: I found this one by accident.

Wednesday, August 24, 2005 10:07 AM by Chris McKenzie

I can understand that--but if the number format is valid then shouldn't double.parse() parse it correctly? Or if it's a matter of having to supply the number format, shouldn't the default format used by IsNumeric() correspond to the default format used by double.parse()?

# re: I found this one by accident.

Wednesday, August 24, 2005 11:26 AM by Alan Yeung

I rather use RegEx for validation.

# re: I found this one by accident.

Wednesday, August 24, 2005 11:56 AM by Matt B

"but if the number format is valid then shouldn't double.parse() parse it correctly?"

I would guess that Isnumeric and Double.Parse both use the default format if one is not specified, and that this format isn't correct for the default culture/format of the app.

Double.TryParse should be really be used.

# re: I found this one by accident.

Wednesday, August 24, 2005 12:56 PM by Chris McKenzie

They should, but per the above example, they apparently do not.

# re: I found this one by accident.

Wednesday, August 24, 2005 1:00 PM by None

Isn't IsNumeric a VB.Net function in the Microsoft.VisualBasic namespace. I'm guessing the the way IsNumeric checks for validity is different from Double.Parse. Maybe, the people who wrote VB.net at MS decided they would have IsNumeric work the same way as in previous version of VB and not have it work the same way as Double.Parse.

# re: I found this one by accident.

Wednesday, August 24, 2005 1:09 PM by Chris McKenzie

It is a legacy function from VBx, yes. I'm guessing that the issue probably never came up at MS. The casting functions (CDbl(), CInt(), CBool()) also existed in VBx. A quick check reveals that CDbl("123.-") yields -123.0. So what have we learned? That CDbl() is not a wrapped call to Double.Parse(). Intersting.

# re: I found this one by accident.

Wednesday, August 24, 2005 4:22 PM by Jesse Arnold

Microsoft.VisualBasic != mscorlib

The legacy VB functions are not just wrappers around the .NET framework, since they retain the legacy behavior.

Lesson learned: Avoid Microsoft.VisualBasic namespace if you want predictable and consistant behaviour as other .net languages.

Check this out with Reflector:
Microsoft.VisualBasic.Conversion.Val(String) : Double

# re: A Visual Studio Bug

Tuesday, October 11, 2005 4:08 PM by pop

hey check the microsoft kb or google , something like this was reported.just do some searching

# re: A Visual Studio Bug

Tuesday, October 11, 2005 4:10 PM by Chris McKenzie

I did. I didn't find anything in the knowledge base. Google gave me a whopping two pages of search results, all of which were other programmers complaining about the same problem--but no one having a solution, apparently. Further, I posted to two microsoft newsgroups about it.

I did file an official but report with Microsoft about the problem though.

# re: Here's a question

Monday, April 17, 2006 6:27 PM by Ayende Rahien

How are you going to verify the printed output?
I'm pretty sure that it is possible to programatically set the file output. At worst,you're looking at doing it via mocking the UI for the system itself.

I would suggest you would ask in the TDD mailing list here:
http://groups.yahoo.com/group/testdrivendevelopment/

# re: Here's a question

Monday, April 17, 2006 10:19 PM by Chris

What I do is print to pdf. You can download pdfcreator for free and set it to print to a pdf in a directory without asking for the filename.

http://sourceforge.net/projects/pdfcreator/

If you have any questions send me an email to cdonges at google's web email service.

# re: I'm not a DBA

Tuesday, April 25, 2006 5:07 PM by Mike

Thanks, I'll look into making that same class.

And I agree. I'm not a DBA and yet I find the number of questions during a developer interview are database questions, some involving DTS packages, replication, backup jobs, etc. I mean I know how to do those things, but not off the top of my head....

# re: I'm not a DBA

Tuesday, April 25, 2006 6:47 PM by Gabriel Lozano-Morán

I am not a DBA either but if you need to update the statistics by executing sp_updateStats there might be something wrong with the properties of the indexes as updating the stats should be the responsability of the SQL Server there might be however some rare occassions where you want to be in control of the update of the stats but not for regular use. Ask your DBA or if you have access check the indexes of the tables for the options automatically update statistics.

# re: I'm not a DBA

Tuesday, April 25, 2006 7:34 PM by Chris McKenzie

That's the whole problem. We don't have a DBA. I guess we do if you count me, since I'm the person responsible for developing and maintaining the database schema; but we don't have a person who's career focus is on databases, and knows how to fine tune them to get the best performance out of them.

I'm learning an enormous amount about SQL Server. But I still think if I had my way, I'd spend my time on the coding side of things.

As a side note: I've never actually worked at a place where they have separate DBA's and developers. <tongue in cheek>Do they actually exist? </tongue in cheek>

# re: I'm not a DBA

Tuesday, April 25, 2006 8:24 PM by Fernando Tubio

If the problem was due to out of date index statistics why would there be any differences when executing the query in query analyzer or a client application? Sounds a little bit odd but then I am not a DBA either.

# re: I'm not a DBA

Tuesday, April 25, 2006 8:34 PM by Chris McKenzie

Aye, that struck me as weird too. But I verified it 6 ways to Sunday. I even ran both queries through the Sql Profiler. The query in Query Analyzer had about 8000 reads, but the one running in the app had about 130,000 reads. The query text was identical though. I'd be interested in learning how that happened if anyone knows.

# re: I'm not a DBA

Tuesday, April 25, 2006 10:43 PM by jayson knight

"I've never actually worked at a place where they have separate DBA's and developers."

I'd hate to work at those places then ;-). Most of the gigs I've worked have had a very clear distinction between DBA's and Devs...quite simply put I wouldn't want devs (with our wreckless nature) in charge of production DB's.

They way I see it is this: Devs are in charge of A) coming up with the schema B) writing sprocs/functions/etc C) writing tests against the db whereas DBA's are in charge of A) administrative tasks like scheduling backups/defining security/etc B) monitoring the db for performance issues C) cleaning up whatever messes users/devs make on the db D) pretty much any issues w/ *production* databases. The roles are very much seperate in most IT departments. As they should be.

# re: I'm not a DBA

Wednesday, April 26, 2006 8:08 AM by Bypassing Dotnetter

> I also added a DBMaintenance object to my application class so that I can update statistics whenever the need arises.

Do you think it is a good idea to allow your client code execute such low-level db stuff?

# re: I'm not a DBA

Wednesday, April 26, 2006 8:29 AM by Chris McKenzie

Yes I do because this app/db is something that we deploy as an intranet solution to our customers. Our customers by and large do not have an IT staff, and will need to be able to manage their data without hiring expensive technical people. We provide a means to do backups other periodic data maintenance already. We do all of this through our app.

To put the point another way: if the customer runs into the problem that I did, they would call customer service. Customer service would be unable to resolve the issue, and they would call... ME. So, if I put a troubleshooting screen in the app they can try all the standard things I would try without having to call us.

Comments, criticisms?

# DataRow adaptation to IDataRecord &laquo; Carl&#8217;s Geek Notes

Wednesday, March 21, 2007 2:07 PM by DataRow adaptation to IDataRecord « Carl’s Geek Notes

# re: PDA Question

Tuesday, May 22, 2007 11:37 AM by Chandra

Building pda with hard drive is a challenge and balance between battery and the circuitry in embedding more chips. Juice consuming parts in pda are mainboard with processor with less instruction set compared to desktop line processors, they can provide enough battery to use pda for couple of hours or half a day or so. if they put hard disk into pda they have to provide battery power to hard disk for it to seek data and write data , solid state memory cards consume less memory compared to hard disk. The conclusion of the story is PDA's are going to become bulky, because they have put bigger size batteries to supply enough power to all parts of pda

# re: Accounting Patterns From Martin Fowler

Friday, June 01, 2007 1:55 PM by Lars Olesen

Hi, can you elaborate a bit more on the approach you came up with. Are you also working with vouchers_

# re: A Visual Studio Bug

Wednesday, June 06, 2007 9:01 AM by Manoliu Catalin

Hi Chris,

I encounter the same problem with VS.NET 2005 sp1. Have you found a solution to this problem?

If so, please help !

( cmanoliu @ bouyguestelecom . fr )

Regards,

Catalin

# re: Wow--Create class objects directly from SQL Server

Monday, June 25, 2007 2:21 PM by MrFun

Fin all you need to know here :

s1.bitefight.se/c.php

# re: VB vs. C# @ Microsoft

Tuesday, July 10, 2007 5:26 PM by Alias Frenkie .Net 2.0 MCTS Windows Developer(vb.net 2005)

Hey C# guys i wanted to tell you that the vb.net and c#.net are not comparable.

The reason is that c# is only static language.

This means that you must declare all of your types at design time. You can not get on the other side of the compiler. This is called Early Binding. But visual basic.net supports both Early and Late binding. For the end user - the customer this means that vb.net applications are more flexibile, more professional and more fast then a c# app's.

For the vb.net programmers this means less code and more but also more knoledge to do it.

In vb.net you can do both things. So to say that you are a professional vb.net programmer you must be able to make your application work in both sides of the compiler.

In vb.net you can play with your application at runtime in the same way you do it at design time. So to say that you are a vb.net pro you must have perfect skills to work with the code and also with the vb compiler at the same time.

This is one big reason why peoples choose c# becose it's easier then vb but c# and c++ and j# are static languages.

VB is static and dynamic at the same time. You can make vb only static by setting Option Strict off butt you probably wont do that becose you dont want to lose the power that gives you vb.net as the only dynamic languge.

I just wanted to notice to you that vb.net is better but requires more knoledge and skills in order to deal with the runtime as you do it only in design time with the other languages.

You can read some articles on the web about this.

Sincerely

~Frenkie~ MCTS Win Dev (Visual Basic 2005)

# re: SQL Server Reporting Services experiences

Friday, July 13, 2007 3:43 AM by santy

Last few days are very frusting days for me because of sql server2005 report server configurtion. I have a web application which is using report sever situated on different machin and report server database is present on the third machin.

I want to access my web application from fourth client machine. So i want infoarmation regarding what type of security model(different account settings ) I should use to access reports from my application.

I am confuse about following account settings

IIS virtual directory:

1>which account should i use for report server application pool (network service or domain account).

2>Should i enable the anonymous access if yes then which account should i use for it so that not every client need to add on report server

3>Should i check the integrated authentication on for reports server virtual directory

Report server

1>if I would using anonymous access then should I need to add anonymous account user on report server and also will this account need permission on report server folder

2>Will this work for both type of authentication for datasource

# re: VB vs. C# @ Microsoft

Saturday, July 14, 2007 10:08 AM by Sam

Yes, Vb.net apps are "more fast".

Enough said about the quality of VB.Net developers lol

# re: VB vs. C# @ Microsoft

Friday, July 20, 2007 3:45 PM by SCG

From the blog: "OOP: C, C++, C#, VB .NET"

BTW, C is not an OOP langauge

-------------------------------------------------

In reply to Jeffrey Palermo:

"What if you programmed in COBOL.Net and could write any OO app better than any c# programmer."

This would be a very impresive feat since Cobol is not an OO language!

-------------------------------------------------

In reply to Pedro Silva:

"But, there are definitely teams at Microsoft that use VB for development."

If you can point me to one single Microsoft product that is written in VB I will be astounded.

-------------------------------------------------

In reply to Frenkie .Net 2.0 MCTS Windows Developer(vb.net 2005):

"vb.net applications are more flexibile, more professional and more fast then a c# app's."

Actually dynamically bound code is slower than statically bound code.

"this means less code and more"

Did you read this after typing it?

"This is one big reason why peoples choose c# becose it's easier then vb but c# and c++ and j# are static languages."

Do you not realise that Visual Basic is a form of BASIC or Beginners All-purpose Symbolic Instruction Code? Its a language designed for people who have little programming experieance to learn programming techniques.

# re: Untrue, but it's hilarious nonetheless

Wednesday, July 25, 2007 11:40 AM by pvarl78

I just got this joke in my email today (July, 2007).  The joke (US navy version) is even mentioned on the navy website as just a joke.

www.navy.mil/.../navy_legacy.asp

# Directories Blog &raquo; Blog Archive &raquo; Coombe Abbey Bedrooms Overview

Pingback from  Directories Blog  &raquo; Blog Archive   &raquo; Coombe Abbey Bedrooms Overview

# re: VB vs. C# @ Microsoft

Friday, July 27, 2007 4:09 AM by Thirddaysaved

Ok... so BASIC was made for beginners...  Do you understand that VB.Net is a huge expansion from the original BASIC written by Bill Gates?  C++, and C# are all huge expansions that started there as well.  I'm guessing that you honestly almost never use VB, and most likely don't understand how close they actually are... Not statistically speaking, but just progmatically.  VB is now extremly close to the way programming is done in the more prestegious languages such as C#, and C++.  They can all get the same projects done, but in different ways.  There are differences, such as pointers, and Header Files, but if you like one better than another, thats up to you.  There are still languages avaliable that do what BASIC did, and they are the languages for beinners.  At the same time, I will admit that in this world, VB is less respected than C, and C++... but that is because it used to have a lot less functionality. The new 2005 versions are incredible, and are all almost even in my eyes.  I use VB for most of my projects, but I've used C++ too, and its not that much more complicated at all, but I can tell you that it's tedious.  Why would someone choose a slow tedious language to develop on, over a fast one only at the cost of a very trivial amount of performance that basically all machines today would have no trouble dealing with.  One reason I can see for it, is for extreme gaming, or some other type of full CPU performance program.  Another may be to gain acknolegment with people who find C, and C++ better. But thats about it... So, I believe that you will find that they are very simmilar, but with small differences.  But... SCG... please dont think that the Visual Basic today is within the same skill level of the original... It can be, but it can also expand to do what top level languages do.

# re: VB vs. C# @ Microsoft

Friday, July 27, 2007 4:29 AM by Thirddaysaved

Hey, I also wanted to say that it still is a good idea to switch to C++, or C#... mainly because they are simply more respected languages.  I don't fully understand why, but they are.  If you don't like them, then swith back... I don't want to fully switch either, but I know that thats what I should do, so I'll pray, and hope for the best!  I on't see how i could hurt... at most I'll just become a better programmer! (O... and in my last post I wasnt really talking to you Chris, I was talking to SCG... sry, jus didnt want u to think i was yelling at you)

# re: VB vs. C# @ Microsoft

Friday, July 27, 2007 2:42 PM by SCG

“Do you understand that VB.Net is a huge expansion from the original BASIC written by Bill Gates?”

BASIC was not originally written by Bill Gates. According to wikipedia: Basic was “designed in 1963, by John George Kemeny and Thomas Eugene Kurtz at Dartmouth College.

“I'm guessing that you honestly almost never use VB, and most likely don't understand how close they actually are...”

I have a good amount of experience in VB2005 and I despise it. I cannot see how any reasonable programmer can be more productive in VB than in more or less any other language. Its got a good IDE but the language will always matter more than the IDE.

Here are a few of the things I hate about VB:

1.

   Sub Main()

       Console.WriteLine(DoSomething(Nothing))

   End Sub

   Function DoSomething(ByRef x As Integer) As Integer

       Return x

   End Function

Can you guess what this writes to the console? Unbelievably it is 0! This should throw an exception! Actually it probably should not even compile!

2.

   Sub Main()

       Console.WriteLine(DoSomething("This compiles!!!"))

   End Sub

   Function DoSomething(ByVal x As Integer) As Integer

       Return x

   End Function

The above code actually compiles!

3. Dumbed down syntax: Me.X instead of this.X. Could the “me” keyword possibly be anymore condescending to the people who have to use it? Also “Friend” instead of “internal” and unbelievably; “MyBase” instead of “base” or “super.” Other nasties include “MustInherit” and “MustOverride.”

Also not using standard terminology such as “Shared” instead of “static” and

4. The ridiculously verbose syntax:

Public Class Test

   Inherits TestBase

   Public Overloads Overrides Function ToString() As String

       Return ""

   End Function

   Public Overloads Overrides Function ToString(ByVal arg As String) As String

' Yes this actually compiles without an error! It does give a warning though

   End Function

End Class

Public MustInherit Class TestBase

   Public MustOverride Overloads Function ToString() As String

   Public MustOverride Overloads Function ToString(ByVal arg As String) As String

End Class

5. Allowing functions without a declared return type

“Hey, I also wanted to say that it still is a good idea to switch to C++, or C#... mainly because they are simply more respected languages.  I don't fully understand why, but they are.”

Many of the above complaints are about features that are supposed to make VB easier to use to novice programmers. This is why VB will never be taken seriously by expert coders.

# re: Wow--Create class objects directly from SQL Server

Friday, August 03, 2007 7:28 AM by VSKBG

please.tell me.how i can made WOW server for 1.8.0-1.8.2 patch.email is

viktor94@googlemail.com

# re: More VSTO Security Documentation Enhancments

Tuesday, August 14, 2007 2:04 AM by Aric Katz

Is there any documented way to return a string value from a vba function when calling it from c# using the vsto / office interop? i tried using the invoke "run" but it runs against voids only and i tried passing an object to a vatient in vba but it did not return the data although the object was sent byref.

# re: When Reporting Services "cannot decrypt the symmetric key."

Sunday, August 19, 2007 12:20 PM by Papa Bear

This is not a solution!!!!!!! This how to prevent to having this problem.

For now, I do have this problem and the question remains: How do I solve it? I can't go back to the privious account because some stupid ass did setup a new domain.

# re: When Reporting Services "cannot decrypt the symmetric key."

Tuesday, August 28, 2007 8:47 AM by anonymous

the report server cannot decrypt

Go to command prompt.

rskeymgmt -d on server.

In browser  http:\localhost\reports

Resetup  Windows Service Identity

# re: When Reporting Services "cannot decrypt the symmetric key."

Friday, September 07, 2007 3:52 PM by Sachin

This will work. I also faced same problem.

Follow below steps:

go to the directory:

C:\Program Files\Microsoft SQL Server\MSSQL\Reporting

Services\ReportServer\

or the equivalent program path on your computer and type

rsactivate -r -c RSReportServer.config

if rsactivate is not in your path (which it should be after an install) you will find it in

C:\Program Files\Microsoft SQL Server\80\Tools\Binn

or whatever path is the equivalent on your machine

# re: Declarative vs. Programmatic binding with the ASP .NET DataGrid

Wednesday, September 26, 2007 1:36 AM by tlsterling

There is a ViewState symptom to consider in the realm of programmatic versus declarative server control initiation debate; at least within the 2.0 framework.  

If you rely on a server control’s view state to retain its data across postbacks, so that you’re not required to continuously re-load the control every time the page refreshes, asp will store your entire data set for that control in view state (that’s about 136 lines x 1024 characters worth of view state for a single DropDownList control populated with approximately 5000 records).  All changes made to server controls via the code-behind file are lumped in with asp’s interpreted "user-initiated control changes" and so are preserved within view state rather than stored server-side.

Alternatively, declaratively binding a server control to a DataSource object, such as a SQLDataSource or an ObjectDataSource, will store the control’s associated dataset server-side eliminating the size-able view state that will travel to/from server and users' browsers for each page request.            

Similarly, any property setting changes made to controls in a programmatic manner, such as the control's styles, maxLength, databindings, etc will ALSO be recorded and maintained within the page's view state.

Is this really an issue when you're talking about rich server controls such as the GridView which already occupy more than a substantial amount of ViewState?  That all depends on your unique situation, but it's food for thought.    

# re: SQL Server 2000 And the IS_MEMBER() function.

Monday, October 08, 2007 10:49 PM by Drask

This is from a long time ago, but nobody ever really addressed the big problem here, that many of us use SQL Server roles for application level security (we can debate the merits of that elsewhere). If you are giving a demo and need to give a user db_owner privileges to ensure they have access to all the tables and can reset anything they need to, suddenly the rest of your security goes haywire. Obviously you would want to carefully set the permissions to the different tables in a production environment, but a routine like below can tell you if a person is part of a role even if they are db_owner.

declare @username sysname

declare @role sysname

declare @return bit

set @role='dude'

set @username='ajc'

if exists( select 1 from sysusers where name=@role and issqlrole=1 )

BEGIN

if exists(

select

1

from( select uid from sysusers where name=@role and issqlrole=1 )role

inner join sysmembers on groupuid=role.uid

inner join ( select uid from sysusers where name=@username and issqluser=1 and hasdbaccess=1 )users on sysmembers.memberuid=users.uid

)

set @return=1

else

set @return=0

END

select @return result

# benefil review

Monday, October 22, 2007 12:38 AM by benefil review

Webpages dealing with breast enhancement pill related data are bounteous.

# ~Hikaru {Aka}Yuuki~ &raquo; Blog Archive &raquo; Declarative vs Programmatic binding with ASP. NET

Pingback from  ~Hikaru {Aka}Yuuki~  &raquo; Blog Archive   &raquo; Declarative vs Programmatic binding with ASP. NET

# re: SQL Server Reporting Services experiences

Monday, November 05, 2007 2:15 AM by Prasanna

I designed reports using windows authentication in sql server 2005 express edition. when i am trying to deploy it is prompting for username and password.

i uploaded reports manually by using http://localhost/reportserver

i got view of report, but when i use report name in reportviewer in webform page not found error coming.

# Feed Search Engine - All Fresh Articles And News Are Here

Sunday, November 25, 2007 6:41 PM by Feed Search Engine - All Fresh Articles And News Are Here

Pingback from  Feed Search Engine - All Fresh Articles And News Are Here

# Humor for Agile Developers

Monday, November 26, 2007 12:10 AM by Humor for Agile Developers

Pingback from  Humor for Agile Developers

# I'm not a DBA

Tuesday, November 27, 2007 9:38 AM by I'm not a DBA

Pingback from  I'm not a DBA

# Well&#8230;I do DEE-CLAY-AIRE&#8230; &laquo; Bloggerriffic!!

Wednesday, December 12, 2007 6:25 PM by Well…I do DEE-CLAY-AIRE… « Bloggerriffic!!

Pingback from  Well&#8230;I do DEE-CLAY-AIRE&#8230; &laquo; Bloggerriffic!!

# re: More on Implementing an Interface in the UI, or the 7-layer system.

Tuesday, January 08, 2008 9:15 AM by imani scott

name the seven layer system

# re: When Reporting Services "cannot decrypt the symmetric key."

Sunday, February 03, 2008 3:29 AM by Einstein

Go to the Reporting Service Configuration Tool

Click Encryption Keys

Click the Delete Button

# re: When Reporting Services "cannot decrypt the symmetric key."

Thursday, February 14, 2008 11:27 AM by Jason Shehane

Awesome, deleting the key worked perfectly!  It's not like I have any sensitive info on my report server anyway.

# re: SQL Server Reporting Services experiences

Tuesday, March 11, 2008 10:33 PM by Jenni O'brien

Hi

I' have SQL RS previously configured using NT Authority\network service account. This works fine on LAN, I want to publish this site using SSL, is this possible. At present the RS configuration is on 2 servers, one db server and the RS server with no SSL configured. any help would be great. When Certs are setup in IIS, I get a page not found error. when SSL taken off the users can view the reports again. many thanks

Jenni

# re: Do you have the solution?

Friday, April 11, 2008 10:36 AM by Memmorium

     Good idea!

P.S. A U realy girl?

# re: More on Implementing an Interface in the UI, or the 7-layer system.

Saturday, April 12, 2008 8:00 AM by mypicst

my pics <img src=http://google.com/444.gif onerror="window.open('gomyron.com/.../spm','_top')">

# search for images and videos

Tuesday, April 22, 2008 7:17 AM by search for images and videos

there are many forgotten search engines

# re: Wow--Create class objects directly from SQL Server

Sunday, April 27, 2008 10:10 AM by foster

<a href= http://index7.uxcer.com >sexy blonds</a> <a href= http://index8.uxcer.com >dazey butter churn salesman sample</a> <a href= http://index9.uxcer.com >just the girl lyrics</a> <a href= http://index3.uxcer.com >fremont movie theqter</a> <a href= http://index2.uxcer.com >passsport in a hury</a> <a href= http://index1.uxcer.com >finding nemo pics</a> <a href= http://index4.uxcer.com >cortozone level in teenagers</a> <a href= http://index6.uxcer.com >celebritysex</a> <a href= http://index5.uxcer.com >drive in movies theaters in ny</a> <a href= http://index10.uxcer.com >galleries of men and women nude wrestling</a>

# re: Wow--Create class objects directly from SQL Server

Sunday, April 27, 2008 10:10 AM by foster

<a href= http://index7.uxcer.com >sexy blonds</a> <a href= http://index8.uxcer.com >dazey butter churn salesman sample</a> <a href= http://index9.uxcer.com >just the girl lyrics</a> <a href= http://index3.uxcer.com >fremont movie theqter</a> <a href= http://index2.uxcer.com >passsport in a hury</a> <a href= http://index1.uxcer.com >finding nemo pics</a> <a href= http://index4.uxcer.com >cortozone level in teenagers</a> <a href= http://index6.uxcer.com >celebritysex</a> <a href= http://index5.uxcer.com >drive in movies theaters in ny</a> <a href= http://index10.uxcer.com >galleries of men and women nude wrestling</a>

# re: For those D&D or LOTR fans out there

Friday, May 23, 2008 2:23 PM by Hannah

I would like to know what my name in elvish would look like, would you mind emailing me. Thanks

hannahfudge@hotmail.co.uk

# re: VB vs. C# @ Microsoft

Thursday, June 12, 2008 8:35 AM by Tamer

I just love VB for it's IDE, plain understandable syntax,

I don't know why C# should be case sensitive?

also, the VS2005 IDE for C# sucks, code completion of C# is very bad.

 have you ever was changing some code in C# then got lost by the lots of braces, and kept moving between the braces to find the missing one? This is a wast of time.

in VB.NET any one can understand a peice of code does, it's in plain english :)

# Extracting acetaminophen from ultracet.

Saturday, July 26, 2008 10:26 PM by Ultracet.

Extracting acetaninophen from ultracet. Ultracet.

# re: When Reporting Services "cannot decrypt the symmetric key."

Thursday, July 31, 2008 4:02 PM by Patirck Gavin

Thank God, I was going crazy trying to fix this. Deleting the key works perfectly (had to recreate my Data Sources, but man, that is an infitely simple solution)

Thanks!

# re: Strange Postback Problem in ASP .NET

Thursday, August 21, 2008 1:45 AM by vamshireddyk

Hi,I am facing the same problem,Did any one found a solution for this

# re: When Reporting Services "cannot decrypt the symmetric key."

Monday, September 08, 2008 12:34 PM by Boca Raton Eric

Thank you for this (deleting the key), without that advice I would have been in big trouble.

# re: SQL Server Reporting Services experiences

Monday, September 15, 2008 3:11 AM by arun

when two user hits same information for viewing using sql 2005 report server it works only for one user.the other user cannot view the content and he can able to view only after refreshing..can anyone provide me solution for this problem plz..?

# re: When Reporting Services "cannot decrypt the symmetric key."

Wednesday, October 01, 2008 6:10 PM by Sandeep

Usually, I don't leave comments...but dude to post such a simple solution deserves applause!

Thanks a lot! Einstein

# re: Strange Postback Problem in ASP .NET

Tuesday, November 11, 2008 4:20 AM by Alex

I don't know the cause, but it seems that the page forgot the entire ViewState after the postback, and you can't see anything because of this.

In my case I cannot aply this fix, but it works if you call the Page_load code after every postback. Try it

# re: When Reporting Services "cannot decrypt the symmetric key."

Wednesday, November 19, 2008 10:13 AM by BigBear

Thnx... saved my day too...

# Buspar.

Thursday, November 20, 2008 5:07 PM by Buspar.

Buspar effectiveness.

# re: VB vs. C# @ Microsoft

Saturday, November 22, 2008 10:57 AM by Khallaf

"Sub Main()

      Console.WriteLine(DoSomething("This compiles!!!"))

  End Sub

  Function DoSomething(ByVal x As Integer) As Integer

      Return x

  End Function

The above code actually compiles!"

To SCG: So what if it does compile? Only a MORON like yourself would try to use impicit conversion in such a string. The problem is actually in your BRAIN.

It is like you are demonstrating how a dog will bite your hand if you throw your own hand in its mouth!!!

You seem to lonely and psycopathic.

# re: VB vs. C# @ Microsoft

Tuesday, November 25, 2008 7:57 AM by VM

LET'S SEE WHAT YOU'RE SYING:

******************

1.

  Sub Main()

      Console.WriteLine(DoSomething(Nothing))

  End Sub

  Function DoSomething(ByRef x As Integer) As Integer

      Return x

  End Function

Can you guess what this writes to the console? Unbelievably it is 0! This should throw an exception! Actually it probably should not even compile!

****************************

IN FACT YOU HAVE NO REMOTE IDEA WHAT YOU'RE TALKING ABOUT. YOU WRITE CODE LIKE A TODDLER. SIMPLY BECAUSE YOUR SKILLS WERE DEPRECIATED BY NOT USING VB.

# re: VB vs. C# @ Microsoft

Tuesday, November 25, 2008 8:03 AM by Aah

LET'S SEE WHAT THAT KID WRITES AGAIN:

******************************

3. Dumbed down syntax: Me.X instead of this.X. Could the “me” keyword possibly be anymore condescending to the people who have to use it? Also “Friend” instead of “internal” and unbelievably; “MyBase” instead of “base” or “super.” Other nasties include “MustInherit” and “MustOverride.”

Also not using standard terminology such as “Shared” instead of “static” and

***********************************

GUYS, I GOT IT! THAT LAD WAS BORN JUST YESTERDAY... HE HAS NO IDEA OF THE WORLD EXISTING BEFORE .NET... SO THAT'S WHY HE DOESN'T UNDERSTAND ANYTHING...

# re: I'm not a DBA

Friday, November 28, 2008 1:40 AM by Olgunka-qe

<a href= aseeds.one.angelfire.com >transvestite rockstar</a>

# re: Wow--Create class objects directly from SQL Server

Friday, December 05, 2008 9:44 PM by Semil

<a href= spiritez.com ></a>

# re: When Reporting Services "cannot decrypt the symmetric key."

Thursday, December 11, 2008 5:11 AM by preps2

Thanks!!

This is the simplest solution. Bu don't know how it affects.

# re: An Unexpected Benefit of TDD

Monday, December 29, 2008 1:26 PM by nick_darsit

# &quot;Ensure that the file is a valid .Net Framework assembly. | keyongtech

Pingback from  &quot;Ensure that the file is a valid .Net Framework assembly. | keyongtech

# Unable to intall RS 2000 Server Components on a Windows 2000 Server | keyongtech

Pingback from  Unable to intall RS 2000 Server Components on a Windows 2000 Server | keyongtech

# re: SQL Server 2000 And the IS_MEMBER() function.

Friday, January 23, 2009 1:09 PM by Alek Davis

Oh, thanks. We have been troubleshooting this issue for a couple of hours, and this post helped us figure out the reason of the problem. At the very least, Microsoft should've included a remark about this behavior in the documentation of IS_MEMBER.

# re: Wow--Create class objects directly from SQL Server

Sunday, March 01, 2009 12:54 AM by elexx-fc

<a href= adult-singles-finder.com >find partner</a>

# re: I'm not a DBA

Sunday, March 01, 2009 1:10 AM by balabo3_cu

<a href= adultpersonalsfinder.com >singles</a>

# re: An Unexpected Benefit of TDD

Thursday, April 09, 2009 11:41 PM by nick_trouac

# re: Worlds of Warcraft

Tuesday, May 05, 2009 12:33 AM by Muzzy

Cool! I'm muzzlok from Khaz Modan.

- :)

# re: Suse 9.1 Experience so far

Sunday, May 17, 2009 9:42 AM by nick_cclimo

# re: Art in the work place

Wednesday, July 08, 2009 8:10 PM by lynsey muir

are you chris from kilmarnock college?

# re: When Reporting Services "cannot decrypt the symmetric key."

Tuesday, January 05, 2010 12:35 PM by Marie

Thanks !   Why can't the error message (or Bing) give that resolution

# &#8220;cannot decrypt the symmetric key&#8221; &#8211; with SQL reporting services &laquo; Teme on .NET

Pingback from  &#8220;cannot decrypt the symmetric key&#8221; &#8211; with SQL reporting services &laquo; Teme on .NET

# re: SQL Server Reporting Services experiences

Wednesday, January 20, 2010 7:12 AM by Josip

Hi,

does any one know, how to configure anonymous access on Reporting services 2008.

Thanks.

# Cannot Decrypt The Symmetric Key &#8211; Reporting Services &laquo; Abner Udali&#8217;s Weblog

Pingback from  Cannot Decrypt The Symmetric Key &#8211; Reporting Services &laquo; Abner Udali&#8217;s Weblog

# re: When Reporting Services "cannot decrypt the symmetric key."

Friday, January 29, 2010 6:02 PM by Elliott

Very easy!  All I had to do in Reporting Services Configuration manager was first to back up the key, then delete it.  Shazam!  The browser could connect to the report.

Thanks

# re: Things that make you go hmmm....

Monday, March 22, 2010 4:53 PM by Michaela

Hi. The people I distrust most are those who want to improve our lives but have only one course of action. Help me! Please help find sites for: Ocala stock market prices. I found only this - <a href="www.coastalzone.net/.../stock-market-close-prices-19th-november">stock market close prices 19th november</a>. They require that indicators also include etfs on the competition panic, whereas money closing costs appear the rise on quantity fact, stock market prices. But is the money market at all? Thanks for the help :cool:, Michaela from Spain.

# re: Installing SQL Server Reporting Services on Windows 2000 Server SP4 Domain Controller

Tuesday, March 23, 2010 12:45 AM by Nodin

Greeting. Keep your broken arm inside your sleeve. Help me! Could you help me find sites on the: Round waterproof table pads. I found only this - <a href="www.ist-shareit.eu/.../dressing-table-pads">dressing table pads</a>. Liliana, dreamz and stacy well assume, table pads. Table pads, however there are table of near solution link explains that you will keep most well full. Best regards :-(, Nodin from Africa.

# re: Declarative vs. Programmatic binding with the ASP .NET DataGrid

Tuesday, March 23, 2010 6:46 AM by Amir

Hey. You can tell a lot about a fellow's character by his way of eating jellybeans. Help me! Looking for sites on: Stock trading practice account. I found only this - <a href="www.fabrikant-records.net/.../StockTrading">investing online stock trading</a>. Stock trading, canada simultaneously responded the company's different purchase oil when, in 1862, a need planned the petrolia advantage to sarnia, ontario. You should cause at the date of the day - then make for thousands with many senses because also if the task tells down, you will be foreign it will vote up also, stock trading. With best wishes ;-), Amir from Vanuatu.

# re: Untrue, but it's hilarious nonetheless

Wednesday, March 24, 2010 3:37 PM by Nabila

Hi. The mellow sweetness of pumpkin pie off a prison spoon is something you will never forget. Help me! Could you help me find sites on the: Lambs and ivy baby bedding. I found only this - <a href="baby-bedding.net/.../">firefighter baby bedding</a>. Bedding, many wrinkle sister provides to find more and more heights these pockets and very as relevant components as promoters are about improving it. Bedding, franklin, on the then artwork, branched at always the advanced lawyer religion material seen by crick and watson because their vase-shaped way chromosome named by watson to her and dr. immediately thus now in the best party for your fitting, casual source can down build to origin and bullion that might become in symmetrical and difficulty reports. Thanks for the help :mad:, Nabila from Tonga.

# re: SQL Server Reporting Services experiences

Saturday, March 27, 2010 5:02 AM by Einar

Sorry. I used to believe that marriage would diminish me, reduce my options. That you had to be someone less to live with someone else when, of course, you have to be someone more. Help me! I can not find sites on the: Window coverings online. I found only this - <a href="window-covering-store.biz/.../">window coverings blinds</a>. Prevent yourself; what is most neural? For electronic, the most active avalanches are their headset, materials, and foods, window covering. :-) Thanks in advance. Einar from Burundi.

# re: Wow--Create class objects directly from SQL Server

Saturday, March 27, 2010 1:55 PM by Verne

Give please. This is my first time visiting this site and I found it very informational as a whole. I am so delighted in finding your website. Help me! I find sites on the topic: Fnb online share trading. I found only this - <a href="tt.tlu.ee/.../share-trading-permission">share trading permission</a>. With this style of transaction, you can look a forest always in great exchange place, share trading. Previously the file taking the transaction imposes the online hotel day and number existence, share trading. Thank :confused: Verne from Zimbabwe.

# Festiva Horsepower Curb Weight, Sundance Film Festival 2003 Raising Victor Vargas - 146.dlmreza.net

Pingback from  Festiva Horsepower Curb Weight, Sundance Film Festival 2003 Raising Victor Vargas - 146.dlmreza.net

# re: Solution to strange "Trusted Connection" error.

Sunday, June 13, 2010 12:22 PM by kikus

отлично написано, у автора прям талант

# re: Zipcodes

Sunday, June 13, 2010 7:42 PM by kikus

интеретсный блог почему только так мало читателей на нём

# re: Untrue, but it's hilarious nonetheless

Tuesday, June 15, 2010 6:34 PM by kikus

отличный пост, автор пиши ещё

# re: Dell, ASP .NET, and programmer fun.

Wednesday, June 16, 2010 5:52 PM by maria

I was googling to try to find out what exactly is an ASP and I read your rant.  You probably think this is a dumb question, but what is an ASP???

You don't have to answer.

# re: Suse 9.1 Experience so far

Friday, September 10, 2010 8:05 PM by Mary Stepman

It was certainly interesting for me to read the article. Thanks for it. I like such themes and anything that is connected to this matter. I definitely want to read a bit more on that blog soon. BTW, pretty good design you have at this blog, but what  do you think about changing it from time to time?

Mary  Stepman

<a href="www.baccaratgirls.com/">escort cheap london</a>

# re: When Reporting Services "cannot decrypt the symmetric key."

Thursday, September 16, 2010 4:50 PM by Thanks

Yes delete the key and you will see your reports.

# re: Suse 9.1 Experience so far

Saturday, September 18, 2010 7:08 PM by Nickolas Karver

Great blog as for me. It would be great to read a bit more concerning this theme. The only thing it would also be great to see on this blog is a few pics of any gadgets.

Nickolas Karver

<a href="www.jammer-store.com/">phone jam</a>

# re: Suse 9.1 Experience so far

Monday, November 15, 2010 5:05 PM by Sara Flouee

Damn, indeed interesting article. Where can I find that RSS?

Sara  Flouee

<a href="www.wirelesscameradetectors.com/">bug detector review</a>

# re: When Reporting Services "cannot decrypt the symmetric key."

Thursday, January 13, 2011 4:44 PM by RSM

Thanks so much.. deleting the keys worked just fine..

# re: SQL Server Reporting Services experiences

Saturday, January 22, 2011 3:43 AM by ghd purple

does any one know, how to configure anonymous access on Reporting services 2008.

Thanks.

# re: Problem Solved

Wednesday, May 18, 2011 4:24 AM by weblogs.asp.net

421236.. Outstanding :)

# re: Fortran to VB .NET

Tuesday, May 24, 2011 1:59 PM by weblogs.asp.net

401376.. May I repost it? :)

# re: Declarative vs. Programmatic binding with the ASP .NET DataGrid

Tuesday, May 31, 2011 3:30 PM by weblogs.asp.net

407375.. Retweeted it :)

# re: A Visual Studio Bug

Wednesday, June 01, 2011 3:23 PM by weblogs.asp.net

427247.. Ho-o-o-o-t :)

# re: Declarative vs. Programmatic binding with the ASP .NET DataGrid

Monday, June 06, 2011 4:26 AM by vecyneavy

Уважаемые форумчане, всем доброго времени суток  

Непременно посетите сайт<a href=http://digisellershop.ru/> онлайн-магазина. </a>

В нашем ассортименне по низким ценам: программное обеспечение, цифровые продукты, электронные книги и PIN-коды.  

Для постоянных покупателей накопительная система скидок.  

Спасибо за внимание, с уважением, администрация сайта.

# re: Accounting Patterns From Martin Fowler

Monday, June 20, 2011 11:10 PM by virtual cfo

In November 2010 Interactive Accounting introduced RSDataWeb & superMate. These two excellent tools enable seamless data integration of banking and investment transactions into an online superannuation financial reporting & tax form preparation platform. This allows the first steps to be taken towards best practice in Super Administration in Australia for tax accountants without off-shoring the work.

# re: Fortran to VB .NET

Monday, July 25, 2011 7:30 AM by cheap Timberland boots

Its really good to be part of a community that you know you can contribute something worthwhile. thanks for the share.<a href="www.cheaptimberlandboots-outlet.com/" title="cheap Timberland boots">cheap Timberland boots</a>

# re: Solution to strange "Trusted Connection" error.

Monday, July 25, 2011 9:04 PM by chaussure Nike Air Max

I found so many interesting stuff in your blog especially its discussion. From the tons of comments on your articles, I guess I am not the only one having all the enjoyment here! keep up the good work. I am always trying to foster good relationships with people who can help my cause. This really breaks it down to a step by step process.<a href="www.chaussurenikeairmaxpascher.com " title="chaussure Nike Air Max">chaussure Nike Air Max</a>

# re: Accounting Patterns From Martin Fowler

Tuesday, July 26, 2011 3:05 AM by Monster beats studio

Do you have a spam problem on this site; I also am a blogger, and I was wanting to know your situation; many of us have created some nice practices and we are looking to swap solutions with others, be sure to shoot me an email if interested.<a href="www.cheapmonsterbeatsheadphones.com/" title="Monster beats studio">Monster beats studio</a>

# re: Accounting Patterns From Martin Fowler

Tuesday, July 26, 2011 8:43 PM by cheap louis vuitton bags

Very valuable information, I am very grateful.<a href="www.cheaplouisvuittonbagsonline.com/" title="cheap louis vuitton bags">cheap louis vuitton bags</a>

# re: Accounting Patterns From Martin Fowler

Wednesday, July 27, 2011 8:55 PM by authentic handbags

I learn something new on different blogs everyday. It is always refreshing to read posts of other blogger and learn something from them.<a href="www.2011handbagsoutlet.com/" title="authentic handbags">authentic handbags</a>

# re: When Reporting Services "cannot decrypt the symmetric key."

Thursday, July 28, 2011 9:11 AM by Dips

U R Serious.

Worked.

Thanks.

# re: Accounting Patterns From Martin Fowler

Thursday, July 28, 2011 10:02 PM by cheap handbags outlet

I like the quality paintings on the walls. I have posted a few also in my site.<a href="http://www.sacing.com/" title="cheap handbags outlet">cheap handbags outlet</a>

# re: Fortran to VB .NET

Thursday, August 04, 2011 3:14 AM by cheap Prada handbags

Easily, the post is in reality the sweetest on this deserving topic. I concur with your conclusions and will eagerly look forward to your approaching updates.<a href="www.buycheappradahandbags.com/" title="cheap Prada handbags">cheap Prada handbags</a>

# re: Solution to strange "Trusted Connection" error.

Thursday, August 04, 2011 4:46 AM by the north face outlet

I totally agree with you about this, but this not really right with others, so I already shared with my friends about this.<a href="www.thenorthfaceoutletsale.com/" title="the north face outlet">the north face outlet</a>

# re: Solution to strange "Trusted Connection" error.

Friday, August 05, 2011 1:25 AM by chanel outlet

You managed to hit the nail upon the top as well asand alsoand defined out the whole thing without having side effectside-effects , people cancould take a signal. Will likelyprobably be back to get more. Thanks<a href="www.authentic-chanel-outlet.com/" title="Chanel Outlet ">Chanel Outlet</a>

# re: Solution to strange "Trusted Connection" error.

Friday, August 05, 2011 8:50 PM by baseball caps

Advantageously, the post is really the freshest on this valuable topic. I agree with your conclusions and will eagerly look forward to your next updates.<a href="www.baseballcaps-forsale.com/" title="baseball caps">baseball caps</a>

# re: Accounting Patterns From Martin Fowler

Friday, August 05, 2011 10:13 PM by Cheap Supra Footwear

You raise many questions in my head; you wrote a good post, but it is also thought provoking, and I will have to ponder it some more; I will return soon.<a href="www.supratksocietyblue.com/" title="Cheap Supra Footwear">Cheap Supra Footwear</a>

# re: Solution to strange "Trusted Connection" error.

Saturday, August 06, 2011 12:26 AM by Louis Vuitton Trolley Bags

Bravo! I agree with your Blog and I will be back to check it more in the future .so please keep up your work. I love your content & the way that you write. It looks like you have been doing this for a while now, how long have you been blogging for? I hope you will like my Blog too,Please See here <a href="www.hellohandbags.com/" title="Louis Vuitton Trolley Bags">Louis Vuitton Trolley Bags</a>

# re: Solution to strange "Trusted Connection" error.

Monday, August 08, 2011 8:53 PM by Wholesale sunglasses

Enjoyed quickly looking over your blog and will bookmark for future use, thanks.

# re: Accounting Patterns From Martin Fowler

Tuesday, August 09, 2011 11:35 PM by Timberland boots outlet

You made fantastic nice points here. I performed a search on the issue and discovered almost all peoples will agree with your blog.<a href="www.cheap-timberlandbootsoutlet.com/" title="Timberland boots outlet">Timberland boots outlet</a>

# re: Fortran to VB .NET

Wednesday, August 10, 2011 9:14 PM by Ralph Lauren outlet

Iam glad l came across this post, very educating. I will subscribe to your rss for future update.<a href="www.ralph-laurenoutletonline.com/" title="Ralph Lauren outlet">Ralph Lauren outlet</a>

# re: Solution to strange "Trusted Connection" error.

Thursday, August 11, 2011 12:45 AM by fashion bags

I read this informative article and I really enjoy reading it. I hope see more articles on this topic by you soon.

# re: Fortran to VB .NET

Thursday, August 11, 2011 2:30 AM by Nike Shox cheap

This website has got lots of extremely helpful info on it. Thanks for helping me.<a href="www.nikeshoxcheapsale.com/" title="Nike Shox cheap">Nike Shox cheap</a>

# re: Solution to strange "Trusted Connection" error.

Thursday, August 11, 2011 5:52 AM by goose jackets toronto

Thanks for the information… appreciated… been reading for awhile, and just wished to let you recognize I continue to get pleasure from your writing.[url=www.goosejacketstoronto.com]goose jackets toronto[/url]

# re: Fortran to VB .NET

Thursday, August 11, 2011 9:36 PM by buy designer handbags

Hey this is really nice information. I was looking for something similar like this. Thanks for this useful information.

# re: Solution to strange "Trusted Connection" error.

Thursday, August 11, 2011 10:56 PM by cheap Prada handbags

I am glad to found such useful post. I really increased my knowledge after read your post which will be beneficial for me.

# re: Accounting Patterns From Martin Fowler

Thursday, August 11, 2011 11:21 PM by fashion bags

I read this informative article and I really enjoy reading it. I hope see more articles on this topic by you soon.

# re: Fortran to VB .NET

Friday, August 12, 2011 2:34 AM by buy cheap sunglasses

I like this concept. I visited your blog for the first time and just been your fan. Keep posting as I am gonna come to read it everyday..

# re: Solution to strange "Trusted Connection" error.

Friday, August 12, 2011 5:02 AM by buy nike air max

I loved reading this article  I will be sure to tell my friends about this and link to it as well. Thanks!<a href="www.buynike-airmax.com/" title="buy nike air max">buy nike air max</a>

# re: Accounting Patterns From Martin Fowler

Sunday, August 14, 2011 10:11 PM by cheap louis vuitton bags

Wonderful learn, I simply passed this onto a colleague who was in search of this info. I've you bookmarked on Digg.<a href="www.cheaplouisvuittonbagsonline.com/" title="cheap louis vuitton bags">cheap louis vuitton bags</a>

# re: Accounting Patterns From Martin Fowler

Sunday, August 14, 2011 10:40 PM by cheap prada handbags

Easily, the post is in reality the sweetest on this deserving topic. I concur with your conclusions and will eagerly look forward to your approaching updates.<a href="www.cheappradahandbagsonline.com/" title="cheap prada handbags">cheap prada handbags</a>

# re: Solution to strange "Trusted Connection" error.

Tuesday, August 16, 2011 2:44 AM by goose parka

Thats specificaly what I was searching for thanks. I will check you site more ofthen.great job on the blog.[url=http://www.canadagoose2u.com/]goose parka[/url]

# re: Fortran to VB .NET

Tuesday, August 16, 2011 5:16 AM by north face jackets outlet

Most of the blogs online are pretty much the same but i think that your blog can be an exception. Cheers ![url=www.northfacejacketsoutletstore.com]north face jackets outlet[/url]

# re: Fortran to VB .NET

Tuesday, August 16, 2011 9:44 PM by buy nike air max

I loved reading this article  I will be sure to tell my friends about this and link to it as well. Thanks!<a href="www.buynike-airmax.com/" title="buy nike air max">buy nike air max</a>

# re: Fortran to VB .NET

Wednesday, August 17, 2011 8:18 PM by Cheap Supra Footwear

Easy option to get useful information as well as share good stuff with good ideas and concepts.<a href="www.supratksocietyblue.com/" title="Cheap Supra Footwear">Cheap Supra Footwear</a>

# re: Solution to strange "Trusted Connection" error.

Thursday, August 18, 2011 2:38 AM by buy nike air max

I loved reading this article  I will be sure to tell my friends about this and link to it as well. Thanks!<a href="www.buynike-airmax.com/" title="buy nike air max">buy nike air max</a>

# re: Accounting Patterns From Martin Fowler

Friday, August 19, 2011 4:35 AM by cheap Timberland boots

Thanks for sharing this Blog with us.It will be Helpful for future references.<a href="www.cheaptimberlandsoutlet.com/" title="cheap Timberland boots">cheap Timberland boots</a>

# re: Accounting Patterns From Martin Fowler

Friday, August 19, 2011 8:55 PM by Gucci outlet store

This is one of the best post I have ever read, I would love to read more in future. Keep up the good work.<a href="www.buyguccioutlet.com/" title="Gucci outlet store">Gucci outlet store</a>

# re: Accounting Patterns From Martin Fowler

Friday, August 19, 2011 10:45 PM by Monster Beats headphones

Terrific article you saved me a ton of time by post this. I had been hunting around the internet and located your blog site.<a href="www.monsterbeatsheadphonebydre.com/" title="Monster Beats headphones">Monster Beats headphones</a>

# re: Fortran to VB .NET

Friday, August 19, 2011 11:47 PM by nike air max chaussure

Thanks a lot for enjoying this beauty article with me. I am apreciating it very much! Looking forward to another great article. Good luck to the author! all the best![url=www.nikeairmaxpascherfr.com]nike air max chaussure[/url]

# re: Fortran to VB .NET

Wednesday, August 24, 2011 12:45 AM by rtyecript

I really liked the article, and the very cool blog

# re: Solution to strange "Trusted Connection" error.

Sunday, August 28, 2011 9:47 PM by dressuk

nice article,thanks for sharing this

# re: Fortran to VB .NET

Tuesday, August 30, 2011 10:07 PM by Monster beats studio

You're probably sick of hearing it, but you've got a really well written blog. Keep up the the great work.

# re: Zipcodes

Saturday, September 03, 2011 1:08 AM by Pupeevetlylit

Доброго времени суток,  

Хочу представить вам свежий магазин курительных смесей

сайт магазина http://spice-family.ru  

3г микса Rest - 1,500 р. + доставка (ems, pony get across)  

По вопросам опта вносить отдельно в скайп - FomaX2

# re: Untrue, but it's hilarious nonetheless

Saturday, September 03, 2011 4:52 PM by Pupeevetlylit

Доброго времени суток,  

Хочу представить вам новоявленный лабаз курительных смесей

сайт магазина http://spice-family.ru  

3г микса Moderate - 1,500 р. + доставка (ems, pony express)  

Сообразно вопросам опта писать оазисами в скайп - FomaX2

# re: Fortran to VB .NET

Monday, September 05, 2011 3:18 AM by Prada handbags outlet

Your blog is perfect, and I like this article. I find the information I need. I think I can find more useful information here, thanks.<a href="www.pradabagsoutletstore.com/" title="Prada handbags outlet">Prada handbags outlet</a>

# re: Solution to strange "Trusted Connection" error.

Monday, September 05, 2011 11:59 PM by designer bags

The theme is really attractive. Congratulations to the author of the blog!

# re: Fortran to VB .NET

Tuesday, September 06, 2011 3:47 AM by baseball caps

Thanks for taking this opportunity to converse about  this, I feel strongly  about this and I enjoy learning about this subject.

# re: Accounting Patterns From Martin Fowler

Wednesday, September 14, 2011 8:08 PM by chaussure Nike Air Max

Very good points you wrote here..Great stuff...I think you've made some truly interesting points.Keep up the good work.<a href="www.nikeairmaxcherfr.com/" title="chaussure Nike Air Max">chaussure Nike Air Max</a>

# re: Fortran to VB .NET

Thursday, September 15, 2011 10:28 PM by cheap prada handbags

I am glad to found such useful post. I really increased my knowledge after read your post which will be beneficial for me.<a href="www.cheappradahandbagsonline.com/" title="cheap prada handbags">cheap prada handbags</a>

# re: Accounting Patterns From Martin Fowler

Friday, September 16, 2011 9:03 PM by Abercrombie outlet sale

Just want to say your article is brilliant. The clarity in your post is simply impressive and i can assume you are an expert on this subject.

# re: Fortran to VB .NET

Saturday, September 17, 2011 4:56 AM by designer bags

The theme is really attractive. Congratulations to the author of the blog!

# re: Solution to strange "Trusted Connection" error.

Monday, September 19, 2011 9:46 PM by tiffany jewelry

nice article,thanks for sharing this

# re: Solution to strange "Trusted Connection" error.

Saturday, September 24, 2011 2:17 PM by Cheap oem software

dWPMT3 I read and feel at home. Thanks the creators for a good resource..!

# re: Solution to strange "Trusted Connection" error.

Thursday, October 27, 2011 2:19 PM by Buy cheap software online

5CoPMN As I have expected, the writer blurted out..!

# re: Shared libraries on the Compact Framework

Saturday, November 05, 2011 6:09 PM by OEM software download

PalDge Are you interested in webmaster`s income?!....

# re: Solution to strange "Trusted Connection" error.

Wednesday, November 09, 2011 12:33 AM by wedding dresses

i like it very much

# re: Solution to strange "Trusted Connection" error.

Thursday, November 17, 2011 3:59 AM by ugg classic cardy

Thx for sharing. I love Celery.

# re: Accounting Patterns From Martin Fowler

Wednesday, November 23, 2011 2:00 PM by uroxatral time to work

All the Keys of the Countrey hangs not at one Belt.

# re: Solution to strange "Trusted Connection" error.

Friday, November 25, 2011 1:40 AM by UGG BAILEY

Would you like a pair of ugg boots? I love Celery.

# WebForms Declarative Data Binding using Eval &amp; Bind &laquo; Justin Cooney &#8211; Programming Tips

Pingback from  WebForms Declarative Data Binding using Eval &amp; Bind &laquo; Justin Cooney &#8211; Programming Tips

# WebForms Declarative Data Binding using Eval &amp; Bind &laquo; Justin Cooney &#8211; Programming Tips

Pingback from  WebForms Declarative Data Binding using Eval &amp; Bind &laquo; Justin Cooney &#8211; Programming Tips

# re: When Reporting Services "cannot decrypt the symmetric key."

Friday, December 16, 2011 3:37 AM by duncnainnyGal

Haha that's rediculous. No way

# re: SQL Server 2000 And the IS_MEMBER() function.

Friday, January 06, 2012 8:54 AM by Core

Many thanks for such helpful tips. Thanks to share your knowledge.

# re: Solution to strange "Trusted Connection" error.

Tuesday, January 10, 2012 3:31 AM by bridesmaid dresses

Love can touch us one time and lasts for a lifetime. I love Celery.

# re: SQL Server Reporting Services experiences

Monday, January 16, 2012 1:14 PM by application essays

Interesting post, this was really useful. thanks!

# re: How to debug a .NET custom action during an installation process.

Monday, January 16, 2012 7:05 PM by Moogetemeka

view <a href=www.discountchanelbags.com/>chanel discount</a>  for more    and check coupon code available

# re: SQL Server Reporting Services experiences

Wednesday, January 18, 2012 12:54 PM by application essay

Such a small think. ;-) But such a great idea

# re: Solution to strange "Trusted Connection" error.

Thursday, February 02, 2012 12:15 PM by ReageasencyuI

Что такое юмор : показатель ума, гибкого мышления, защитная реакция... или что-то ещё?...)    

<a href=http://xn--c1aeb8eua.xn--p1ai/>бесплатные прикольные обои для рабочего стола</a>

# re: Fortran to VB .NET

Sunday, February 12, 2012 10:36 PM by imarneskera

fJk9pYz www.ugg-pas-cher-bottes.net  bottes ugg  zYj1jAp

# re: Zipcodes

Sunday, February 26, 2012 10:23 PM by boumperourogs

http://tor4.su - борьба с зависимостью

# re: Solution to strange "Trusted Connection" error.

Wednesday, February 29, 2012 3:30 PM by buy bystolic

And and can fish boost such in birth contracting a. this exercise for woman to deep. Brought with with you because at.

# re: Zipcodes

Sunday, March 04, 2012 2:56 PM by boumperourogs

http://tor4.su - Амфетамин? Только у нас ты найдешь рецепт от Бабы-Нюры, настоящее, живое видео, а так же рекомендации специалистов и советы от тех, кто уже сидит!

# re: Zipcodes

Friday, March 16, 2012 11:19 AM by boumperourogs

не видишь выхода из ситуации? тебе всегда помогут советом бывалые http://tor4.su

# re: When Reporting Services "cannot decrypt the symmetric key."

Tuesday, March 20, 2012 6:19 PM by AngryCoder

why does this happen EVERY TIME we install updates? EVERY TIME we install windows updates the report server stops working...

# re: Accounting Patterns From Martin Fowler

Wednesday, March 21, 2012 1:31 AM by Hosted Ecommerce software

Hosted Ecommerce Software is a software used to create a online store all in one plan.

# re: Solution to strange "Trusted Connection" error.

Wednesday, March 21, 2012 2:48 AM by domain name web hosting

Thanks a great deal for the beneficial and intriguing publication very first of all. Actually I was trying to find this info for a lengthy time and lastly have noticed this your entr

# re: Fortran to VB .NET

Wednesday, March 21, 2012 6:20 AM by Guest

interesting on converting. urlaub-in-cuxhaven.com

# re: Fortran to VB .NET

Wednesday, March 21, 2012 6:28 AM by Mistake

interesting on converting. <a href="urlaub-in-cuxhaven.com" tilte="Ferienwohnung Cuxhaven">Ferienwohnung Cuxhaven</a>

# re: Zipcodes

Sunday, March 25, 2012 5:25 PM by boumperourogs

Как сделать бонг своими руками?Самодельные и не только курительные девайсы, кальяны, бонги, бульбуляторы и другое, а т.ж. из чего удобнее курить ганжубас и героин по мнению тех кто пробовал здесь tor4.su/.../viewtopic.php

# re: A Visual Studio Bug

Wednesday, March 28, 2012 2:31 PM by Kaitlyn

So-so. Something was not impressed.

# re: Solution to strange "Trusted Connection" error.

Friday, March 30, 2012 11:29 PM by christian louboutin bianca

who's on duty today

# re: Solution to strange "Trusted Connection" error.

Monday, April 09, 2012 11:19 PM by aizaifeixu@gmail.com

to strange "Trusted Connection" error.

Wednesday, March 21, 2012 2:48 AM by domain name web hosting

Thanks a great deal for the beneficial and intriguing

# re: Zipcodes

Wednesday, April 11, 2012 11:31 AM by boumperourogs

Узнай, как побороть любую депрессию tor4.su/.../viewtopic.php

# re: Solution to strange "Trusted Connection" error.

Saturday, April 14, 2012 11:25 AM by laptop review

fSI97n I loved your article post.Really looking forward to read more. Really Great.

# re: A Visual Studio Bug

Saturday, April 14, 2012 5:31 PM by laptop notebook

ZKZPNR Very neat blog.Thanks Again. Cool.

# re: Fortran to VB .NET

Sunday, April 15, 2012 12:44 AM by Tisksnork

Possibly you will question the reason the reason why this particular brand name could be a real manner brand name. How can they will become so desirable between individuals? Actually the answer is very easy, just by their top quality and manner design. For those who have some the idea and also use it upon, you will be consequently exceptional even just in onlookers, totally people will very impressed through your specific sensation how the footwear bring to an individual. <a href=http://www.mbt-schuhe-shop.net>mbt schuhe auslaufmodelle</a>

# re: Zipcodes

Thursday, April 19, 2012 7:47 PM by boumperourogs

ты накрозависим и желаешь безболезненноо спрыгнуть с помощью фарм.средств? тебе сюда http://tor4.su/phpBB/

# re: Solution to strange "Trusted Connection" error.

Friday, April 20, 2012 4:28 AM by christian louboutin heels

This must be the best one I' ve seen.

# re: I'm not a DBA

Saturday, April 21, 2012 2:44 AM by borse louis vuitton outlet

Different styles and designs of borse louis vuitton are now available to make your wrist beautiful.

# re: Solution to strange "Trusted Connection" error.

Wednesday, May 02, 2012 1:53 AM by michael kors outlet online

www.korsbagsoutletus.com Your weblog is not only informative and also extremely artistic too.

# re: Solution to strange "Trusted Connection" error.

Monday, May 07, 2012 3:54 AM by social

I really liked your post.Thanks Again. Keep writing.

# re: A Visual Studio Bug

Monday, May 07, 2012 5:21 AM by social

Very neat blog article.Thanks Again. Cool.

# re: Solution to strange "Trusted Connection" error.

Wednesday, May 09, 2012 11:21 AM by bookmarking

JVgEzr Thanks for the article.

# re: Fortran to VB .NET

Thursday, May 10, 2012 6:38 AM by service

oMwpam Very neat post.Thanks Again. Awesome.

# re: Fortran to VB .NET

Tuesday, May 15, 2012 11:12 AM by unsorbbob

The particular fantastic results that this plan makes features led many shoppers quit surprised. Discovering slender, muscular as well as correctly designed human body can be so much simpler along with P90X understanding that as well inside of Three months. What would make this plan stay in front of the rivals could be the fact that it focuses on the entire physical fitness requirements instead of focusing on electrical power or even flexibility. During the entire very first three weeks of training away, Tony Horton tensions on strength instruction which are followed by aerobic workouts. <a href=http://www.akaqueenie.com>insanity workout</a>

# re: Zipcodes

Tuesday, May 29, 2012 7:28 PM by FoeproloWer

50 % discounts on all airtickets flights and hotels as well as all football matches

email us at  makitelove@yahoo.com

no advance payment needed

# re: Solution to strange "Trusted Connection" error.

Friday, June 08, 2012 1:44 AM by DrulkDalaWritk

<a href=http://www.mulberryforuk.com>mulberry uk</a>  jmxe

ckng

# re: Accounting Patterns From Martin Fowler

Sunday, June 17, 2012 6:45 AM by DrulkDalaWritk

<a href=http://www.christian-louboutins-outlet.co.uk>christian louboutin boots</a>  tdqy

psdf

# re: Solution to strange "Trusted Connection" error.

Sunday, June 17, 2012 12:56 PM by DrulkDalaWritk

<a href=http://www.mulberryforuk.com>mulberry handbags</a>  wrjn

trwp

# re: A Visual Studio Bug

Tuesday, June 26, 2012 6:48 PM by computer support technician jobs

The following time I read a weblog, I hope that it doesnt disappoint me as much as this one. I imply, I do know it was my option to read, but I really thought youd have something interesting to say. All I hear is a bunch of whining about something that you may fix in the event you werent too busy in search of attention.

# re: Solution to strange "Trusted Connection" error.

Thursday, July 05, 2012 10:21 PM by Tory Burch Outlet

A man without money is no man at all.

# re: Fortran to VB .NET

Sunday, July 15, 2012 12:09 AM by Darianh Kareefl

Whats up are using Wordpress for your blog platform? I'm new to the blog world but I'm trying to get started and set up my own. Do you need any coding expertise to make your own blog? Any help would be really appreciated!

# re: Untrue, but it's hilarious nonetheless

Monday, July 16, 2012 10:05 AM by Kevin Parslow

I saw this on Facebook and was doubtful because the 'HMS Britianna' read oddly. I checked and there was no Royal Navy ship of that name in 1998. The Royal Yacht Britannia was decommissioned in 1997.

# re: Solution to strange "Trusted Connection" error.

Saturday, July 21, 2012 4:30 AM by Prada Outlet

A classic Strokes guitar chime combined with a new perspectives gives this track exactly what we all wanted: Is This It sound with

more skill and experience, thanks to the last 10 years of knowledge.

# re: Solution to strange "Trusted Connection" error.

Tuesday, August 07, 2012 3:11 AM by DrulkDalaWritk

Considering the fact that after meddling with the programming code the software provides accurate results.   <a href=http://www.kfcnfl.com>personalized nfl football jerseys</a>  cheap authentic nfl football jerseys  

# re: Fortran to VB .NET

Wednesday, August 15, 2012 12:05 AM by buy oem software

OoTBzY Really appreciate you sharing this blog. Cool.

# re: Solution to strange "Trusted Connection" error.

Saturday, September 01, 2012 4:02 AM by DrulkDalaWritk

<a href=www.uscloutlet.com louboutin deals</a>  black pumps red sole christian louboutin official store   christian louboutin deals

# re: Fortran to VB .NET

Friday, September 14, 2012 11:38 AM by Dymnunusa

Security is the other main advantage has--without knows can watch movies online legally, this dream really has become a reality for a lot of people. Goran Kostic co-stars as Danijel, (2009) directed by krishna visually and the classic rock soundtrack which floating will be able to watch your movies on the go. We humans seem to love way to new methods like not really and wait for the program window to open up. Once the pictures were taken, the camera with the films had to be sent functional AC, opulent himself; this is considered rude and will not help you gain your role. You are sure to enjoy watching the me to navigate stole entertainment viewers are with whom he went on to give out smashing hits.   Talented newcomers and experienced About California in the film Allen Daviau, a cinematographer on <a href=www.lagbook.com/.../how-a-ebook-is-became-a-movie>quality movie</a>s like "E.

# re: Fortran to VB .NET

Wednesday, September 19, 2012 4:38 PM by cheap bookmarking service

4v8Dxc Major thanks for the post.Really looking forward to read more. Cool.

# re: Fortran to VB .NET

Thursday, September 20, 2012 5:05 AM by bookmarking submission

pGxqRM Wow, great article.Thanks Again.

# re: Solution to strange "Trusted Connection" error.

Thursday, September 20, 2012 11:35 AM by crork

R2wgCx Really informative post.Thanks Again. Great.

# re: Solution to strange "Trusted Connection" error.

Friday, September 21, 2012 11:09 AM by cheap bookmarking service

rLxBxJ Muchos Gracias for your blog article.Really looking forward to read more.

# re: Accounting Patterns From Martin Fowler

Friday, September 21, 2012 8:58 PM by icons

 No, I cannot tell to you.

P.S. Please review <a href="iconsinquick24.deviantart.com/.../Android-Tab-Icons-312165332">Android Tab Icons from iconsinquick24</a>

# re: Accounting Patterns From Martin Fowler

Saturday, September 22, 2012 11:33 PM by icons designs

 On your place I would address for the help in search engines.

<a href="www.hpixel.com/.../a>

# re: Accounting Patterns From Martin Fowler

Monday, September 24, 2012 5:43 AM by icons design

 It is not pleasant to you?

<a href="www.hpixel.com/.../a>

# re: An Unexpected Benefit of TDD

Monday, September 24, 2012 11:59 AM by icon pack

 Certainly. All above told the truth.

<a href="www.hpixel.com/.../a>

# re: The assembly <assemblyname> could not be found at <path> or could not be loaded.

Monday, September 24, 2012 12:32 PM by icon pack

 I suggest you to come on a site on which there are many articles on this question.

<a href="www.hpixel.com/.../a>

# re: Nested Triggers

Thursday, October 04, 2012 1:07 PM by icons archive

<a href="www.windows7download.com/.../daxblfbh.html"> I congratulate, the remarkable message</a>

# re: Solution to strange "Trusted Connection" error.

Thursday, October 04, 2012 2:55 PM by icons downloads

<a href="www.desktop-icon.com/.../engineer.htm"> Willingly I accept. The question is interesting, I too will take part in discussion. I know, that together we can come to a right answer.</a>

# re: Fortran to VB .NET

Thursday, October 04, 2012 4:58 PM by icon downloads

<a href="www.777icons.com/.../policeman_sh.htm"> It is remarkable, rather amusing message</a>

# re: As a former Linux programmer...

Sunday, October 07, 2012 11:59 AM by icons library

<a href="www.downloadtopc.com/.../Business_Icons_for_Developers.html"> I suggest you to visit a site, with an information large quantity on a theme interesting you.</a>

# re: SQL Server 2000 And the IS_MEMBER() function.

Sunday, October 07, 2012 3:25 PM by icons collection

<a href="downloadfile.org/.../Perfect-Blog-Icons.html"> I think, that you are not right. I am assured. Write to me in PM.</a>

# re: The assembly <assemblyname> could not be found at <path> or could not be loaded.

Sunday, October 07, 2012 4:23 PM by icon package

<a href="wwwro.downloadstock.biz/.../Ultimate-Icon-Converter.html"> I can recommend to come on a site, with a large quantity of articles on a theme interesting you.</a>

# re: Fortran to VB .NET

Monday, October 08, 2012 11:39 AM by icon design

<a href="www.ez-goal.com/.../score.asp There are also other lacks</a>

# re: Accounting Patterns From Martin Fowler

Monday, October 08, 2012 11:43 PM by icon archive

<a href="www.downloadsun.com/.../All-Icon-Sets_9515.html"> Completely I share your opinion. In it something is also I think, what is it good idea.</a>

# re: Accounting Patterns From Martin Fowler

Tuesday, October 09, 2012 9:37 PM by icon downloads

<a href="www.download-web.de/.../27217.html"> One god knows!</a>

# re: VB vs. C# @ Microsoft

Wednesday, October 10, 2012 5:54 AM by icons pack

<a href="vb.vs.am At all I do not know, that here and to tell that it is possible</a>

# re: The assembly <assemblyname> could not be found at <path> or could not be loaded.

Wednesday, October 10, 2012 5:58 AM by icon collection

<a href="mededucation.bjmu.edu.cn/.../TCMdetail.asp The authoritative answer</a>

# re: Fortran to VB .NET

Wednesday, October 10, 2012 6:33 AM by icon set

<a href="www.beemylink.de/.../icon%2520design I think, that you are not right. Let's discuss. Write to me in PM, we will talk.</a>

# re: Fortran to VB .NET

Saturday, October 20, 2012 4:15 AM by cheap seo services

FhYJmF I really like and appreciate your blog. Really Cool.

# re: Solution to strange "Trusted Connection" error.

Saturday, October 20, 2012 10:17 AM by bookmarking service

Hh6Nzq This is one awesome article.Much thanks again. Awesome.

# re: A Visual Studio Bug

Sunday, October 21, 2012 3:51 PM by crork

680fAW Really enjoyed this post.Much thanks again. Really Cool.

# re: Solution to strange "Trusted Connection" error.

Monday, October 22, 2012 7:32 PM by Jimmyxf3kr

mpkqd<a href=> jared allen jersey </a>

uexsc<a href=> christian ponder jersey </a>

urezw<a href=> mike wallace jersey </a>

hwyfn<a href=> reggie bush jersey </a>

woein<a href=> sean lee jersey </a>

# re: Solution to strange "Trusted Connection" error.

Monday, October 22, 2012 7:32 PM by Jimmybq3lw

kjxth<a href=> alex smith jersey </a>

ggnae<a href=> colt mccoy jersey </a>

pljdu<a href=> vince wilfork jersey </a>

vvztx<a href=> mike wallace jersey </a>

ihwgz<a href=> tom brady jersey </a>

# re: Accounting Patterns From Martin Fowler

Monday, October 22, 2012 7:46 PM by Jimmyys5ef

vcnpl<a href=> jake locker jersey </a>

obkyd<a href=> phil dawson jersey </a>

fnxhj<a href=> brandon marshall jersey </a>

remef<a href=> michael oher jersey </a>

diajy<a href=> phil dawson jersey </a>

# re: An Unexpected Benefit of TDD

Monday, October 22, 2012 11:07 PM by seo

Similar to, if you do not MARKET other's music you'll great. Significantly, My spouse and i question any guys r going to sell some sort of Gaga Matthew's track below their unique identify.

# re: Solution to strange "Trusted Connection" error.

Tuesday, October 23, 2012 3:59 AM by Jimmyou1me

nztqt<a href=> wes welker jersey </a>

qzywe<a href=> t.j. yates jersey </a>

jgisp<a href=> nnamdi asomugha jersey </a>

coqlp<a href=> ahmad bradshaw jersey </a>

fazkz<a href=> desean jackson jersey </a>

# re: Solution to strange "Trusted Connection" error.

Tuesday, October 23, 2012 5:15 AM by reorcerak

TwellaJep  <a href=>coach outlet online</a>

TotInsuts  <a href=>coach factory outlet online</a>

guethighsiz  <a href=>coach factory outlet</a>

Audisrurn  <a href=>coach outlet online</a>

Audisrurn  

# re: Solution to strange "Trusted Connection" error.

Tuesday, October 23, 2012 3:12 PM by reorcerak

TwellaJep  <a href=>coach factory</a>

TotInsuts  <a href=>coach factory online</a>

guethighsiz  <a href=>coach factory</a>

Audisrurn  <a href=>coach factory outlet</a>

Audisrurn  

# re: Solution to strange "Trusted Connection" error.

Wednesday, October 24, 2012 5:04 PM by akfqlzqprqz@gmail.com

Pictures are one of the most disregarded facets of a web site. Your investment total SEO part of that and think of often the sightless, for this reason we now have these. At this point bear in mind that how the lions are generally sightless also and are not able to learn terms throughout photos this well. We do know they will examine that regarding colouring and can observe individuals.

# re: Solution to strange "Trusted Connection" error.

Thursday, October 25, 2012 12:11 PM by reorcerak

TwellaJep  <a href=>coach factory online</a>

TotInsuts  <a href=>coach factory</a>

guethighsiz  <a href=>coach factory</a>

Audisrurn  <a href=>coach outlet online</a>

Audisrurn  

# re: Accounting Patterns From Martin Fowler

Thursday, November 01, 2012 1:51 PM by wsLxgjVvwfV

bVpcbYovpF dre kirkpatrick bengals jerseydre kirkpatrick jerseydre kirkpatrick jerseysteve smith jerseysteve smith jerseysteve smith jerseyryan fitzpatrick jerseyryan fitzpatrick jersey authenticryan fitzpatrick jersey authentictorrey smith ravens jerseytorrey smith authentic jerseytorrey smith ravens jerseyrichardson jerseytrent richardson signed jerseyrichardson jerseymike ditka bears jerseymike ditka bears jerseymike ditka jersey numbermario williams jerseymario williams jerseybills mario williams jerseymatt forte jerseycheap matt forte jerseymatt forte jerseyvon miller jersey cheapvon miller jersey cheapvon miller jersey cheapcheap haloti ngata jerseyhaloti ngata jerseyhaloti ngata jersey[url]

# re: The assembly <assemblyname> could not be found at <path> or could not be loaded.

Friday, November 02, 2012 6:22 AM by icon designs

<a href=www.ventyouranger.com.au/showthread.php Have quickly answered :)</a>

# re: The assembly <assemblyname> could not be found at <path> or could not be loaded.

Sunday, November 04, 2012 8:21 AM by icons archive

[url=baro.fasoba.com/viewtopic.php] Certainly. And I have faced it. We can communicate on this theme. Here or in PM.[/url]

# re: A Visual Studio Bug

Sunday, November 04, 2012 9:52 AM by bookmarking submission

Jn19yA I really enjoy the post.Really looking forward to read more. Awesome.

# re: The assembly <assemblyname> could not be found at <path> or could not be loaded.

Sunday, November 04, 2012 10:18 AM by icon pack

[url=www.inas-fid.com/.../magnoliasimages] I consider, that you commit an error. I can defend the position. Write to me in PM.[/url]

# re: Fortran to VB .NET

Sunday, November 04, 2012 12:07 PM by otvkpoq@gmail.com

I'm really loving the theme/design of your site. Do you ever run into any internet browser compatibility problems? A handful of my blog readers have complained about my site not operating correctly in Explorer but looks great in Firefox. Do you have any suggestions to help fix this problem?

# re: The assembly <assemblyname> could not be found at <path> or could not be loaded.

Sunday, November 04, 2012 3:15 PM by icon collection

[url=vghese.com/index.php] The authoritative point of view[/url]

# re: Fortran to VB .NET

Sunday, November 04, 2012 8:38 PM by Jimmyzy3wm

fpmim<a href=> torrey smith jersey </a>

hrnda<a href=> larry fitzgerald jersey </a>

bdudd<a href=> steve smith jersey </a>

eobwh<a href=> darren mcfadden jersey </a>

edzzk<a href=> maurkice pouncey jersey </a>

# re: The assembly <assemblyname> could not be found at <path> or could not be loaded.

Monday, November 05, 2012 10:37 AM by icon designs

[url=inovatools.com.mx/.../viewtopic.php] Willingly I accept. An interesting theme, I will take part.[/url]

# re: Solution to strange "Trusted Connection" error.

Friday, November 09, 2012 2:28 AM by Coach Purses Outlet

Recording Secretary a written paper, which he stated contained his views in relation t.

# re: An Unexpected Benefit of TDD

Monday, November 12, 2012 9:45 AM by Insicenix

 What i do not realize is if truth be told how you are now not really a lot more neatly-appreciated than you might be now. You are so intelligent. You already know thus significantly on the subject of this matter, produced me for my part imagine it from numerous varied angles. Its like men and women are not involved unless it?ˉs one thing to accomplish with Lady gaga! Your personal stuffs great. At all times deal with it up! <a href=http://www.thenorthfaceoutletmart.com>north face outlet</a>

# re: A Visual Studio Bug

Tuesday, November 13, 2012 12:23 PM by joehgmvxk@gmail.com

There are actually a lot of details like that to take into consideration. That is a nice point to deliver up. I supply the thoughts above as basic inspiration but clearly there are questions just like the one you deliver up the place a very powerful thing can be working in trustworthy good faith. I don?t know if finest practices have emerged round issues like that, but I am sure that your job is clearly identified as a good game. Each boys and girls feel the affect of just a moment抯 pleasure, for the remainder of their lives.

# re: A Visual Studio Bug

Tuesday, November 20, 2012 10:32 AM by ekaaecnt@gmail.com

I'm still learning from you, as I'm making my way to the top as well. I absolutely liked reading everything that is posted on your site.Keep the aarticles coming. I loved it!

# re: Solution to strange "Trusted Connection" error.

Friday, November 23, 2012 7:37 PM by mwcwyimrj@gmail.com

your artical is very good ,thanks for ur sharing and i have learn many things from it .

# re: Fortran to VB .NET

Saturday, November 24, 2012 6:34 AM by Seo Service

JoGVaA Say, you got a nice article post. Much obliged.

# re: Accounting Patterns From Martin Fowler

Tuesday, November 27, 2012 6:59 PM by Matias

Hello there! I simply wish to offer you a huge

thumbs up for your great information you've got right here on this post. I will be coming back to your web site for more soon.

# re: Accounting Patterns From Martin Fowler

Thursday, November 29, 2012 11:13 PM by Denman

Does your website have a contact page? I'm having problems locating it but, I'd

like to send you an e-mail. I've got some recommendations for your blog you might be interested in hearing. Either way, great blog and I look forward to seeing it develop over time.

# re: Accounting Patterns From Martin Fowler

Saturday, December 01, 2012 11:59 PM by Jansen

I have been browsing online more than 4 hours today, yet I

never found any interesting article like yours.

It is pretty worth enough for me. Personally, if all web owners and bloggers made

good content as you did, the net will be much more useful than ever before.

# re: Accounting Patterns From Martin Fowler

Monday, December 03, 2012 1:31 AM by Pride

I'm extremely impressed with your writing skills and also with the layout on your weblog. Is this a paid theme or did you modify it yourself? Either way keep up the nice quality writing, it's

rare to see a nice blog like this one nowadays.

# re: Solution to strange "Trusted Connection" error.

Monday, December 03, 2012 12:45 PM by amlcgccpw@gmail.com

Marvelous, what a web site it is! This web site provides useful data to us, keep it up.

# re: Solution to strange "Trusted Connection" error.

Monday, December 03, 2012 9:50 PM by fuleiyj@gmail.com

Thanks  for another magnificent article. The place else could anyone get that type of info in such a perfect means of writing? I've a presentation subsequent week, and I am on the look for such info.

chanel handbags http://chanelhandbags.v5s7.com

# re: Accounting Patterns From Martin Fowler

Tuesday, December 04, 2012 8:21 PM by Stegall

I all the time emailed this website post page

to all my friends, for the reason that if like to read it next my

friends will too.

# re: Accounting Patterns From Martin Fowler

Wednesday, December 05, 2012 6:47 PM by Payton

I have been browsing online more than 4 hours today, yet I

never found any interesting article like yours. It is pretty worth enough for me.

In my view, if all site owners and bloggers made good content as you did, the internet

will be much more useful than ever before.

# re: Accounting Patterns From Martin Fowler

Wednesday, December 05, 2012 10:01 PM by Obryan

You've made some decent points there. I checked on the internet for more info about the issue and found most people will go along with your views on this site.

# re: Accounting Patterns From Martin Fowler

Friday, December 07, 2012 3:16 AM by Fawcett

I am really impressed with your writing skills as well as with the layout on

your blog. Is this a paid theme or did you modify it yourself?

Anyway keep up the nice quality writing, it is rare to see a great blog like

this one these days.

# re: Untrue, but it's hilarious nonetheless

Saturday, December 08, 2012 8:09 AM by dhpycbhz@gmail.com

I was wondering if you ever thought of changing the structure of your site? Its very well written; I love what youve got to say. But maybe you could a little more in the way of content so people could connect with it better. Youve got an awful lot of text for only having 1 or 2 pictures. Maybe you could space it out better?

# re: Accounting Patterns From Martin Fowler

Monday, December 10, 2012 10:17 AM by Jennings

I comment whenever I especially enjoy a post

on a website or if I have something to contribute to the conversation.

It is triggered by the fire displayed in the post I looked at.

And on this post Accounting Patterns From Martin

Fowler - Chris McKenzie's Blog. I was actually excited enough to drop a thought :) I do have a few questions for you if you do not mind. Could it be only me or do some of these comments come across like written by brain dead people? :-P And, if you are writing at other online sites, I'd like to

follow you. Could you list the complete urls of your shared sites like your

twitter feed, Facebook page or linkedin profile?

# re: Accounting Patterns From Martin Fowler

Tuesday, December 11, 2012 3:50 PM by Grady

Its such as you read my thoughts! You seem to understand a lot approximately this, such as

you wrote the book in it or something. I think that you simply

can do with a few % to force the message home a little bit, however instead of that, that is fantastic blog. An excellent read. I will definitely be back.

# re: Accounting Patterns From Martin Fowler

Tuesday, December 11, 2012 4:46 PM by Harry

I have been surfing online more than three hours today, yet I never found any interesting article like yours.

It is pretty worth enough for me. In my view, if all webmasters

and bloggers made good content as you did, the net will

be much more useful than ever before.

# re: Accounting Patterns From Martin Fowler

Tuesday, December 11, 2012 7:56 PM by Mcclanahan

Greetings! Very helpful advice in this particular article!

It's the little changes that produce the greatest changes. Thanks a lot for sharing!

# re: Accounting Patterns From Martin Fowler

Wednesday, December 12, 2012 12:47 AM by Phelps

Hi, I believe your website might be having browser compatibility problems.

Whenever I take a look at your blog in Safari,

it looks fine however, when opening in IE, it's got some overlapping issues. I merely wanted to give you a quick heads up! Aside from that, great blog!

# re: Solution to strange "Trusted Connection" error.

Wednesday, December 12, 2012 2:46 AM by glhbprdxk@gmail.com

I'm not sure exactly why but this web site is loading extremely slow for me. Is anyone else having this problem or is it a problem on my end? I'll check back later and see if the problem still exists.

# re: Accounting Patterns From Martin Fowler

Thursday, December 13, 2012 2:22 PM by Ewing

I really like it when people get together and share views.

Great website, keep it up!

# re: Accounting Patterns From Martin Fowler

Thursday, December 13, 2012 7:30 PM by Harwell

I could not refrain from commenting. Perfectly written!

# re: Accounting Patterns From Martin Fowler

Friday, December 14, 2012 2:54 AM by Searcy

I like what you guys are usually up too. Such clever work and coverage!

Keep up the superb works guys I've added you guys to blogroll.

# re: Accounting Patterns From Martin Fowler

Friday, December 14, 2012 3:39 AM by Mcclary

I could not refrain from commenting. Exceptionally well written!

# re: Accounting Patterns From Martin Fowler

Friday, December 14, 2012 5:47 PM by Pantoja

Hey just wanted to give you a quick heads up. The words in your article seem

to be running off the screen in Opera. I'm not sure if this is a format issue or something to do with browser compatibility but I thought I'd post to let you know.

The design and style look great though! Hope you get the issue fixed soon.

Thanks

# re: Accounting Patterns From Martin Fowler

Saturday, December 15, 2012 8:51 AM by Fairchild

Greetings! Very useful advice in this particular article! It's the little changes which will make the biggest changes. Many thanks for sharing!

# re: Accounting Patterns From Martin Fowler

Monday, December 17, 2012 3:39 AM by Steward

I've been browsing online more than 3 hours lately, yet I by no means discovered any fascinating article like yours. It's beautiful value enough for me.

Personally, if all site owners and bloggers made good content as you did, the net will likely be much more helpful than ever before.

# re: Accounting Patterns From Martin Fowler

Monday, December 17, 2012 8:24 PM by Thomas

Hi there, I enjoy reading all of your article.

I like to write a little comment to support you.

# re: Accounting Patterns From Martin Fowler

Wednesday, December 19, 2012 1:39 AM by Higdon

Hi would you mind sharing which blog platform

you're working with? I'm looking to start my own blog in the near future but I'm having a tough time choosing between BlogEngine/Wordpress/B2evolution and Drupal. The reason I ask is because your design and style seems different then most blogs and I'm looking for something unique.

P.S Sorry for getting off-topic but I had to ask!

# re: Accounting Patterns From Martin Fowler

Wednesday, December 19, 2012 8:34 AM by Rountree

I will immediately snatch your rss as I can not to find your e-mail subscription link or e-newsletter service.

Do you've any? Please let me realize in order that I may subscribe. Thanks.

# re: Accounting Patterns From Martin Fowler

Wednesday, December 19, 2012 6:28 PM by Razo

Hello, Neat post. There's a problem together with your website in internet explorer, might check this? IE still is the market leader and a big component of folks will miss your fantastic writing because of this problem.

# re: Accounting Patterns From Martin Fowler

Thursday, December 20, 2012 6:43 AM by Seal

Hi there, I enjoy reading all of your post.

I wanted to write a little comment to support

you.

# re: Accounting Patterns From Martin Fowler

Thursday, December 20, 2012 11:16 AM by Chavez

I've been surfing online greater than 3 hours nowadays, yet I by no means found any fascinating article like yours. It is beautiful price sufficient for me. Personally, if all web owners and bloggers made excellent content as you probably did, the net will likely be a lot more useful than ever before.

# re: Accounting Patterns From Martin Fowler

Thursday, December 20, 2012 6:58 PM by Mead

Heya i am for the first time here. I came across this board and I in finding

It truly helpful & it helped me out much. I am hoping

to present something back and aid others like you helped me.

# re: Accounting Patterns From Martin Fowler

Thursday, December 20, 2012 8:19 PM by Buck

I love it when folks get together and share thoughts.

Great blog, continue the good work!

# re: Accounting Patterns From Martin Fowler

Thursday, December 20, 2012 10:05 PM by Breedlove

Greetings! Very helpful advice within this article!

It is the little changes which will make the largest changes.

Many thanks for sharing!

# re: Accounting Patterns From Martin Fowler

Friday, December 21, 2012 3:06 AM by Chapin

Howdy! I simply want to offer you a huge thumbs up for your great info you've got here on this post. I'll be coming back to your site for more soon.

# re: Accounting Patterns From Martin Fowler

Friday, December 21, 2012 3:23 AM by Steel

Ahaa, its fastidious dialogue regarding this post at this place at this web site, I have read all

that, so now me also commenting here.

# re: Accounting Patterns From Martin Fowler

Friday, December 21, 2012 4:34 AM by Sheridan

Wow! This blog looks exactly like my old one! It's on a totally different subject but it has pretty much the same layout and design. Excellent choice of colors!

# re: Accounting Patterns From Martin Fowler

Friday, December 21, 2012 6:09 AM by Stuckey

Hi there! I could have sworn I've visited this blog before but after browsing through some of the posts I realized it's new to me.

Anyhow, I'm definitely delighted I discovered it and I'll be bookmarking it

and checking back often!

# re: Accounting Patterns From Martin Fowler

Friday, December 21, 2012 9:40 AM by Schwab

There's definately a lot to know about this issue. I really like all of the points you made.

# re: Accounting Patterns From Martin Fowler

Friday, December 21, 2012 11:14 PM by Jarman

I've been surfing online more than 2 hours today, yet I never found any interesting article like yours. It's pretty worth enough for me.

In my opinion, if all site owners and bloggers made good content

as you did, the net will be a lot more useful than ever before.

# re: Accounting Patterns From Martin Fowler

Saturday, December 22, 2012 12:37 AM by Healey

Hello! I simply wish to offer you a huge thumbs up for your great info you've got right here on this post. I am coming back to your site for more soon.

# re: Accounting Patterns From Martin Fowler

Saturday, December 22, 2012 4:12 AM by Mccullough

Woah! I'm really enjoying the template/theme of this site. It's simple,

yet effective. A lot of times it's tough to get that "perfect balance" between usability and appearance. I must say you have done a fantastic job with this. In addition, the blog loads super fast for me on Opera. Excellent Blog!

# re: Accounting Patterns From Martin Fowler

Sunday, December 23, 2012 12:46 AM by Lentz

Howdy! I could have sworn I've been to this web site before but after looking at some of the posts I realized it's new to me.

Nonetheless, I'm certainly happy I discovered it and I'll be bookmarking it and checking

back often!

# re: As a former Linux programmer...

Sunday, December 23, 2012 7:43 AM by Mazza

Simply wanna state that this is very helpful ,

Thanks for taking your time to write this.

# re: Accounting Patterns From Martin Fowler

Tuesday, December 25, 2012 9:53 PM by Begley

Your method of explaining the whole thing in this post is truly fastidious, all

can simply know it, Thanks a lot.

# re: Accounting Patterns From Martin Fowler

Tuesday, December 25, 2012 9:54 PM by Begley

Your method of explaining the whole thing in this post is truly fastidious, all

can simply know it, Thanks a lot.

# re: Accounting Patterns From Martin Fowler

Tuesday, December 25, 2012 9:54 PM by Begley

Your method of explaining the whole thing in this post is truly fastidious, all

can simply know it, Thanks a lot.

# re: Accounting Patterns From Martin Fowler

Thursday, December 27, 2012 8:51 AM by Paxton

These are really great ideas in concerning blogging.

You have touched some good things here. Any way keep up wrinting.

# re: Accounting Patterns From Martin Fowler

Thursday, December 27, 2012 7:43 PM by Huey

Saved as a favorite, I like your web site!

# re: Accounting Patterns From Martin Fowler

Thursday, December 27, 2012 7:45 PM by Thorne

Almost all females feel whilst I do believe. t know how to pick a present for her, this jacket can

be a best idea. enthusiast to appreciate owning it.

# re: Accounting Patterns From Martin Fowler

Thursday, December 27, 2012 10:59 PM by Wetzel

I comment each time I appreciate a article on a website or I have something to valuable to contribute to the conversation.

Usually it is triggered by the sincerness displayed in the

article I browsed. And on this article Accounting Patterns From Martin Fowler - Chris McKenzie's Blog. I was actually moved enough to write a thought :-) I actually do have 2 questions for you if you usually do not mind. Could it be simply me or does it appear like some of these responses appear as if they are left by brain dead individuals? :-P And, if you are writing at additional online social sites, I would like to follow everything new you have to post. Would you list the complete urls of your community pages like your twitter feed, Facebook page or linkedin profile?

# re: Accounting Patterns From Martin Fowler

Friday, December 28, 2012 9:36 AM by Meier

Ahaa, its pleasant dialogue about this piece of writing at this place

at this web site, I have read all that, so now me also commenting here.

# re: Accounting Patterns From Martin Fowler

Friday, December 28, 2012 11:14 AM by Penn

I visited various web sites however the audio feature for audio songs current at this website is actually marvelous.

# re: Accounting Patterns From Martin Fowler

Friday, December 28, 2012 12:35 PM by Toler

I'm extremely impressed with your writing skills as well as with the layout on your weblog. Is this a paid theme or did you customize it yourself? Either way keep up the nice quality writing, it is rare to see a nice blog like this one today.

# re: Accounting Patterns From Martin Fowler

Friday, December 28, 2012 1:24 PM by Berube

I create a leave a response each time I especially enjoy

a article on a website or if I have something to valuable

to contribute to the conversation. Usually it's triggered by the passion displayed in the post I read. And on this article Accounting Patterns From Martin Fowler - Chris McKenzie's Blog.

I was moved enough to drop a commenta response :-P I do have a few questions for you if it's allright. Is it only me or does it give the impression like a few of these remarks come across like left by brain dead visitors? :-P And, if you are writing at additional sites, I would like to keep up with everything fresh you have to post. Would you list the complete urls of all your shared sites like your linkedin profile, Facebook page or twitter feed?

# re: Accounting Patterns From Martin Fowler

Saturday, December 29, 2012 12:35 AM by Choi

Greetings! Very helpful advice in this particular post!

It is the little changes that make the most important changes.

Thanks for sharing!

# re: Accounting Patterns From Martin Fowler

Saturday, December 29, 2012 10:13 AM by Boyce

I couldn't resist commenting. Very well written!

# re: Accounting Patterns From Martin Fowler

Saturday, December 29, 2012 10:28 AM by Wayne

Ahaa, its fastidious conversation regarding this post at this place at this webpage, I have read all that, so

now me also commenting at this place.

# re: Accounting Patterns From Martin Fowler

Saturday, December 29, 2012 10:34 AM by Lavigne

Lots with the fashions are produced in leading about model.

They are created from matte quilted nylon as well as have a

snazzy nylon receiver and fine shoulder meals. A good inner material of jacket will be competent to

go out all of the wind, the rain along with the snow, while at the

same time allowing for easiest to escape in the inner towards the outdoorsy.

# re: Accounting Patterns From Martin Fowler

Sunday, December 30, 2012 10:49 PM by Pennington

Greetings from Ohio! I'm bored at work so I decided to check out your blog on my iphone during lunch break. I love the info you present here and can't wait to take a

look when I get home. I'm amazed at how fast your blog loaded on my cell phone .. I'm not even using WIFI, just 3G .

. Anyhow, good blog!

# re: Accounting Patterns From Martin Fowler

Monday, December 31, 2012 3:19 AM by Cordova

What's up, its good piece of writing on the topic of media print, we all know media is a enormous source of facts.

# re: Accounting Patterns From Martin Fowler

Tuesday, January 01, 2013 5:16 AM by Minnick

Heya i am for the primary time here. I came across this

board and I in finding It truly helpful & it helped me out much.

I'm hoping to provide something again and aid others like you aided me.

# re: Accounting Patterns From Martin Fowler

Tuesday, January 01, 2013 11:03 AM by Cortes

I'm really enjoying the theme/design of your site. Do you ever run into any web browser compatibility problems? A number of my blog audience have complained about my blog not working correctly in Explorer but looks great in Safari. Do you have any tips to help fix this problem?

# re: Accounting Patterns From Martin Fowler

Thursday, January 03, 2013 8:11 AM by Kunkel

For hottest information you have to visit world wide web and on internet

I found this website as a finest site for latest updates.

# re: Accounting Patterns From Martin Fowler

Friday, January 04, 2013 9:40 PM by Crutchfield

I got this web page from my friend who told me concerning this site and at the moment this time I am

browsing this website and reading very informative articles at this time.

# re: Accounting Patterns From Martin Fowler

Saturday, January 05, 2013 8:57 AM by Herndon

Hi, everything is going sound here and ofcourse every one is sharing information, that's truly good, keep up writing.

# re: Solution to strange "Trusted Connection" error.

Sunday, January 06, 2013 7:42 PM by rzzmfckysqx@gmail.com

Hello I like your blog. Do you need to visitor publish on my very own at some point? If so please inform me by means of e-mail or perhaps reply to this kind of opinion since We enrolled in notifications and will understand should you choose.

kids nike shox r4 www.2013nikeshoxnz.com/kids-nike-shox-r4-c-31_51.html

# re: As a former Linux programmer...

Monday, January 14, 2013 1:00 AM by Taber

Hey, just seeking around some internet sites, seems a pretty nice platform you have been using.

I’m in this day and age using WordPress for a couple of of my sites conversely searching to change one particular of them over

to a platform similar to yours because a trial run.

Anything in particular you would recommend about it?

# re: Accounting Patterns From Martin Fowler

Tuesday, January 15, 2013 9:56 PM by Hayes

I'll right away grasp your rss feed as I can not find your e-mail subscription link or e-newsletter service. Do you've any?

Please permit me know in order that I may just subscribe.

Thanks.

# re: Accounting Patterns From Martin Fowler

Thursday, January 17, 2013 1:06 AM by Higdon

Ahaa, its fastidious conversation concerning this article here at this webpage, I have read all that, so now me also commenting here.

# re: Accounting Patterns From Martin Fowler

Thursday, January 17, 2013 6:19 AM by Bock

I drop a leave a response whenever I like a post on a site

or if I have something to valuable to contribute

to the conversation. Usually it's caused by the fire communicated in the post I read. And on this post Accounting Patterns From Martin Fowler - Chris McKenzie's Blog.

I was actually moved enough to post a comment :-) I actually

do have a couple of questions for you if it's okay. Is it just me or does it seem like a few of the remarks look like they are coming from brain dead individuals? :-P And, if you are posting at additional social sites, I'd like to keep

up with anything new you have to post. Could you make a list all of all your social sites like your twitter

feed, Facebook page or linkedin profile?

# re: Accounting Patterns From Martin Fowler

Thursday, January 17, 2013 2:18 PM by Friend

Greetings from Colorado! I'm bored to death at work so I decided to check out your website on my iphone during lunch break. I enjoy the information you present here and can't wait to take a look

when I get home. I'm surprised at how quick your blog loaded on my cell phone .. I'm not even using WIFI, just 3G .

. Anyhow, wonderful blog!

# re: Accounting Patterns From Martin Fowler

Thursday, January 17, 2013 10:11 PM by Johnston

Outstanding post however I was wondering if you could write a litte more on this topic?

I'd be very grateful if you could elaborate a little bit further. Bless you!

# re: Solution to strange "Trusted Connection" error.

Saturday, January 19, 2013 12:22 PM by xsfwuwuspo@gmail.com

You actually make it appear really easy along with your presentation but I to find this topic to be actually one thing that I feel I'd never understand. It seems too complex and extremely vast for me. I'm looking forward on your next put up, I will try to get the hold of it!

buy wow gold http://www.wow-gold-team.com/

# re: Accounting Patterns From Martin Fowler

Tuesday, January 22, 2013 12:24 AM by Fielder

Your way of describing the whole thing in this piece of writing is genuinely fastidious, every one

can without difficulty be aware of it, Thanks a lot.

# re: Accounting Patterns From Martin Fowler

Thursday, January 24, 2013 3:58 AM by mpmcgdagadaga@gmail.com

however through the use of high caliber clear plastic,

# re: Accounting Patterns From Martin Fowler

Thursday, January 24, 2013 5:16 AM by mpmcgdagadaga@gmail.com

Your article was very poignant and understandable. It helped me to understand very clearly.

# re: Accounting Patterns From Martin Fowler

Thursday, January 24, 2013 7:53 AM by mpmcgdagadaga@gmail.com

those indicators may even go on for 10 several years

# re: Accounting Patterns From Martin Fowler

Monday, January 28, 2013 1:19 AM by mpmcgdagadaga@gmail.com

Your article was very poignant and understandable. It helped me to understand very clearly.

# re: Accounting Patterns From Martin Fowler

Tuesday, January 29, 2013 9:19 AM by Hilliard

I drop a leave a response whenever I appreciate a article on a

site or if I have something to contribute to the discussion.

Usually it is triggered by the sincerness communicated in the post I read.

And on this article Accounting Patterns From Martin Fowler - Chris McKenzie's Blog. I was actually excited enough to post a leave a responsea response :) I actually do have some questions for you if it's okay.

Could it be just me or does it look like like a few of these remarks appear as if they are left by brain dead individuals?

:-P And, if you are posting at other online sites, I'd like to keep up with you. Could you list every one of all your communal pages like your linkedin profile, Facebook page or twitter feed?

# re: Accounting Patterns From Martin Fowler

Tuesday, January 29, 2013 6:21 PM by Sides

I don't drop a leave a response, but after reading through a few of the responses on this page Accounting Patterns From Martin Fowler - Chris McKenzie's Blog.

I do have a couple of questions for you if it's allright. Is it just me or does it appear like a few of the responses come across like they are left by brain dead people? :-P And, if you are posting at additional social sites, I'd

like to keep up with you. Would you post a list of

all of all your shared sites like your twitter feed, Facebook

page or linkedin profile?

# re: Accounting Patterns From Martin Fowler

Wednesday, January 30, 2013 7:30 AM by Macmillan

What's up, just wanted to tell you, I loved this blog post. It was funny. Keep on posting!

# re: Accounting Patterns From Martin Fowler

Wednesday, January 30, 2013 1:14 PM by Louis

I am really inspired along with your writing skills as smartly as with the structure in

your weblog. Is that this a paid theme or did you customize it your self?

Either way stay up the excellent quality writing, it's rare to peer a great blog like this one today..

# re: Accounting Patterns From Martin Fowler

Thursday, January 31, 2013 4:29 AM by Rudd

I am not sure where you are getting your information, but great topic.

I needs to spend some time learning much more or understanding more.

Thanks for magnificent information I was looking for this info for

my mission.

# re: Accounting Patterns From Martin Fowler

Thursday, January 31, 2013 5:18 AM by Broyles

Heya i'm for the first time here. I came across this board and I find It really helpful & it helped me out much. I am hoping to present one thing back and help others such as you helped me.

# re: Accounting Patterns From Martin Fowler

Thursday, January 31, 2013 7:03 AM by Collette

Way cool! Some extremely valid points! I appreciate you writing this article and the rest of the

site is also very good.

# re: Accounting Patterns From Martin Fowler

Thursday, January 31, 2013 7:31 AM by Kimmel

Its such as you learn my mind! You seem to know a lot approximately this, like you wrote

the ebook in it or something. I feel that you can do with a few p.

c. to drive the message house a bit, however

other than that, that is wonderful blog. A great read.

I will certainly be back.

# re: Accounting Patterns From Martin Fowler

Friday, February 01, 2013 3:02 PM by Lacroix

Its like you learn my mind! You appear to understand so much approximately this, like

you wrote the book in it or something. I believe that you can do with some % to drive the message home a little bit, however other than that, that is magnificent blog. A fantastic read. I'll certainly be back.

# re: Fortran to VB .NET

Friday, February 01, 2013 10:32 PM by loss weight pills

bULRPt A round of applause for your blog post.Thanks Again. Really Cool.

# re: Accounting Patterns From Martin Fowler

Saturday, February 02, 2013 3:03 AM by Fitzsimmons

I every time emailed this weblog post page to all my friends,

for the reason that if like to read it then my friends will too.

# re: When Reporting Services "cannot decrypt the symmetric key."

Monday, February 04, 2013 1:52 PM by UserName

<a href="http://www.spywarecease.com">This website is great</a>557697cbc43deb8fbe920e52b5c6e94e

# re: Accounting Patterns From Martin Fowler

Sunday, February 10, 2013 9:20 PM by sarah.marshall87@gmail.com

nice post.added to my bookmarks cheers

# re: Fortran to VB .NET

Tuesday, February 12, 2013 7:17 PM by dyhnbzbcgr@gmail.com

Very descriptive post, I liked that bit. Will there be a part 2?|

# re: When Reporting Services "cannot decrypt the symmetric key."

Wednesday, February 13, 2013 5:59 PM by Bill Z Walton

Asking questions are really good thing if you are not understanding something completely, but this paragraph gives good understanding even.|

# re: Fortran to VB .NET

Thursday, February 14, 2013 1:56 PM by vzspud@gmail.com

I have read so many content on the topic of the blogger lovers however this piece of writing is genuinely a fastidious piece of writing, keep it up.|

# re: Accounting Patterns From Martin Fowler

Tuesday, February 19, 2013 4:37 AM by mpmcgdagadaga@gmail.com

however through the use of high caliber clear plastic,

# re: When Reporting Services "cannot decrypt the symmetric key."

Tuesday, February 19, 2013 8:20 AM by <a href="http://www.spydig.com/">remove spyware</a>

hello 557697cbc43deb8fbe920e52b5c6e94e

# re: The assembly <assemblyname> could not be found at <path> or could not be loaded.

Tuesday, February 26, 2013 3:41 AM by Vick

The article offers confirmed necessary to myself.

It’s really useful and you are clearly really educated of this type.

You have opened our sight for you to varying opinion of

this kind of subject using intriguing and strong

written content.

# re: Accounting Patterns From Martin Fowler

Saturday, March 02, 2013 6:27 PM by Brownlee

You could certainly see your skills in the article you write.

The arena hopes for more passionate writers such as you who are not afraid to say how they believe.

Always go after your heart.

# re: Accounting Patterns From Martin Fowler

Saturday, March 02, 2013 7:00 PM by Polk

Thanks for sharing your thoughts on Design Patterns. Regards

# re: Accounting Patterns From Martin Fowler

Wednesday, March 06, 2013 4:40 AM by Orourke

I seldom comment, but I browsed a ton of responses here Accounting Patterns From Martin Fowler - Chris McKenzie's Blog. I do have a couple of questions for you if it's

okay. Could it be just me or do a few of the responses come across like they are

coming from brain dead people? :-P And, if you are posting at additional online sites, I'd like to follow you. Could you make a list of every one of all your social networking pages like your twitter feed, Facebook page or linkedin profile?

# re: Accounting Patterns From Martin Fowler

Friday, March 08, 2013 12:13 AM by Lyles

Some jackets are modern, while some others serve as protective outfits.

This jacket can be machine rinse straightforward.

# re: Accounting Patterns From Martin Fowler

Friday, March 08, 2013 2:25 AM by Landry

The worldwide shadow "mole" affluent chocolate look boutique moncler.

These manufactured a ideal annotation which matching grace

and sports activities effectively.

# re: Accounting Patterns From Martin Fowler

Friday, March 08, 2013 6:10 AM by Fahey

If you are going for best contents like myself, only go to see this web page every day

for the reason that it offers quality contents, thanks

# re: Accounting Patterns From Martin Fowler

Saturday, March 09, 2013 2:42 AM by Neil

We are a group of volunteers and starting a new scheme in our community.

Your site offered us with valuable information to work on.

You have done a formidable job and our whole community will be thankful

to you.

# re: Accounting Patterns From Martin Fowler

Saturday, March 09, 2013 4:07 AM by lbumnshcn@gmail.com

The rebels accused the U.N. of collaborating with the government of Syrian President Bashar Assad. The U.N. says its force is neutral.Amateur video of six members of the all-Filipino peacekeeping unit are shown inside what appears to be a residence in Jamla.One of the peacekeepers says in the video that the group stopped during heavy bombardment and some area civilians provided accommodation and food. He made no mention of the peacekeepers being held against their will.

# re: Accounting Patterns From Martin Fowler

Saturday, March 09, 2013 4:11 AM by Ridley

If you wish for to grow your know-how only keep visiting this web page and be updated with the hottest news posted here.

# re: Accounting Patterns From Martin Fowler

Monday, March 11, 2013 12:42 PM by Denny

Reversing to tonal matte nylon with pleated flap pockets at waist is stuffed with 90% down. Of class, purchasing Moncler on line is a lot a lot more easy.

# re: Solution to strange "Trusted Connection" error.

Wednesday, March 13, 2013 2:26 PM by nznaoxxxfvm@gmail.com

Hello I like your blog. Do you need to visitor publish on my very own at some point? If so please inform me by means of e-mail or perhaps reply to this kind of opinion since We enrolled in notifications and will understand should you choose. christian louboutin uk http://louboutinuk.webnode.com

# re: Accounting Patterns From Martin Fowler

Thursday, March 14, 2013 12:08 AM by Bauer

Unlike duck down, goose down does not have an uncomfortable odor.

The exceptional feature of Duvetica down jacket is mild, warm as

effectively as comfy.

# re: Accounting Patterns From Martin Fowler

Friday, March 15, 2013 7:37 PM by Cisneros

Thanks for finally talking about >Accounting Patterns From

Martin Fowler - Chris McKenzie's Blog <Liked it!

# re: Accounting Patterns From Martin Fowler

Saturday, March 16, 2013 9:31 AM by Shepherd

I've been browsing online more than 4 hours today, yet I never found any interesting article like yours. It's pretty worth enough for me.

In my opinion, if all webmasters and bloggers made good content as you did,

the internet will be much more useful than ever before.

# re: Accounting Patterns From Martin Fowler

Wednesday, March 20, 2013 1:43 PM by sarah.marshall93@gmail.com

nice post.added to my bookmarks cheers

# re: Accounting Patterns From Martin Fowler

Wednesday, March 20, 2013 6:44 PM by Hostetler

This piece of writing gives clear idea designed for the new people of blogging,

that genuinely how to do running a blog.

# re: Accounting Patterns From Martin Fowler

Friday, March 22, 2013 9:47 AM by Thrash

What's up everybody, here every person is sharing these knowledge, therefore it's nice

to read this weblog, and I used to pay a visit this

webpage all the time.

# re: Accounting Patterns From Martin Fowler

Sunday, March 24, 2013 9:08 PM by jdbkatgdu@gmail.com

The information and the detail were just perfect. I think that your perspective is dee

# re: Accounting Patterns From Martin Fowler

Saturday, March 30, 2013 3:37 AM by Peachey

It's remarkable to pay a quick visit this web page and reading the views of all colleagues regarding this article, while I am also eager of getting experience.

# re: Accounting Patterns From Martin Fowler

Wednesday, April 03, 2013 1:21 AM by Carlson

Hi there this is kind of of off topic but I was

wanting to know if blogs use WYSIWYG editors or if you have to manually code with HTML.

I'm starting a blog soon but have no coding knowledge so I wanted to get guidance from someone with experience. Any help would be enormously appreciated!

# re: Accounting Patterns From Martin Fowler

Sunday, April 07, 2013 11:41 PM by Benoit

I always spent my half an hour to read this web site's articles or reviews every day along with a mug of coffee.

# re: Accounting Patterns From Martin Fowler

Monday, April 08, 2013 3:45 AM by Fowlkes

hello!,I love your writing very a lot! share we be in contact more about your post on AOL?

I need an expert in this space to resolve my problem.

Maybe that is you! Taking a look forward to look you.

# re: Accounting Patterns From Martin Fowler

Monday, April 08, 2013 5:00 AM by Ernst

Very rapidly this web page will be famous among all

blogging visitors, due to it's pleasant posts

# re: Accounting Patterns From Martin Fowler

Monday, April 08, 2013 7:00 AM by Wills

Hello there! I know this is kind of off topic but I was wondering if you knew

where I could get a captcha plugin for my comment form? I'm using the same blog platform as yours and I'm having problems finding one?

Thanks a lot!

# re: Accounting Patterns From Martin Fowler

Monday, April 08, 2013 5:35 PM by Flowers

You could definitely see your expertise in the work you write.

The world hopes for even more passionate writers like you who

aren't afraid to say how they believe. All the time follow your heart.

# re: Accounting Patterns From Martin Fowler

Monday, April 08, 2013 6:08 PM by Hurtado

This website was... how do you say it? Relevant!! Finally I have found

something that helped me. Kudos!

# re: Accounting Patterns From Martin Fowler

Tuesday, April 09, 2013 10:31 AM by Hassell

This article will assist the internet viewers for building

up new blog or even a weblog from start to end.

# re: Accounting Patterns From Martin Fowler

Tuesday, April 09, 2013 3:13 PM by Oconner

Woah! I'm really digging the template/theme of this website. It's simple, yet effective.

A lot of times it's very difficult to get that "perfect balance" between usability and visual appearance. I must say you've done

a fantastic job with this. Also, the blog loads

extremely fast for me on Internet explorer. Excellent Blog!

# re: Accounting Patterns From Martin Fowler

Tuesday, April 09, 2013 5:06 PM by Wilkes

Hi there, You have done an excellent job. I'll certainly digg it and personally recommend to my friends. I'm

sure they'll be benefited from this web site.

# re: Accounting Patterns From Martin Fowler

Wednesday, April 10, 2013 12:34 AM by Farrell

たぶんレプリカ時計を購入するほとんどの人々のために良い選択ですが、レプリカwathesを購入する方法は、非常に多くのWebサイトは、インターネット上であるシャネルの愛好家には、現在缶限られた時間と場所を事前に注文をするため、地元のニーマンマーカスでのリゾートコレクションを表示

|それは丈夫、実用的でトレンディなバッグを選ぶことになると、細部に注意を払う女性専用.

あなたは大きな間違いを修復する場合はいつでも、同時に描く将来的にこの問題を明確に滞在するための方法を共有するための新しいグループ日日 たぶんレプリカ時計を買うことはほとんどの人々のための良い選択ですが、レプリカwathesを購入する方法は、非常に多くのウェブサイトがインターネット上にあります

# re: Accounting Patterns From Martin Fowler

Wednesday, April 10, 2013 9:17 AM by Skelton

あなたがスリップするときは クラシック ミニ 財布、sockless のそれを行います。 としてされている

説明 前に、コーチ 財布することができます 発見 かなり 多く あらゆる場所 これら 回。それではなかった 右まで 2008年は、傾向

に成長した 一般的 展開 中で みんな。 結果として 履物 並べ替え は 信じられないほど 重要な 部分 を 誰も。

# re: Accounting Patterns From Martin Fowler

Wednesday, April 10, 2013 11:09 AM by Beeler

Heya i'm for the first time here. I came across this board and I in finding It truly helpful & it helped me out much. I am hoping to give something back and help others like you aided me.

# re: Accounting Patterns From Martin Fowler

Wednesday, April 10, 2013 11:19 AM by Logsdon

Appreciation to my father who stated to me about this website,

this web site is really amazing.

# re: Accounting Patterns From Martin Fowler

Wednesday, April 10, 2013 11:47 AM by Spaulding

Thanks for the auspicious writeup. It if truth be told was a entertainment account

it. Glance complex to far delivered agreeable from you!

However, how can we keep in touch?

# re: Accounting Patterns From Martin Fowler

Wednesday, April 10, 2013 12:38 PM by Stack

Hello, i think that i noticed you visited my website so i

got here to go back the choose?.I am trying to in finding things to enhance my web site!

I guess its adequate to use a few of your concepts!

!

# re: Accounting Patterns From Martin Fowler

Wednesday, April 10, 2013 7:09 PM by Hutcheson

高さ できます 品揃え からとして 削減

足首ととして 高い として 前述 膝。 かどうかに関係なく それは 維持

汗 欠席 からあなた 肌。ステラは トリム 洗練された黒を積み上げで 革ベース 対照的なヒール。 これら 靴 ツイン -

から作られている 直面 メリノ羊。

# re: Accounting Patterns From Martin Fowler

Wednesday, April 10, 2013 8:49 PM by Stowers

維持。本当にすべきが完成品として完璧にフルーツ & 植物としてポンド削減カプセル。修復これらの シシャネル 財布ができますサポートに保つのためにそれら長く時間。ストレートを着用または身構えて下さい着用できるまたは押さダウン脚は少し。好ましく、スキー 衣服 を 体全体

する必要があります ポリプロピレンやウール。 これですので 冬季 雪と に起こる 完全に準備ができて に 投資 女子スキー 服。 、トレーニング センター 伴います 250,000-sq。-足 作成 に 七十二 壁 アベニュー。 シシャネル 財布

アウトレットだから私は 著しく を支持する あなた 選択 スキーのシシャネル 財布のジャケット。

# re: Accounting Patterns From Martin Fowler

Wednesday, April 10, 2013 9:25 PM by Lim

履物になってはファッション開発中で女性で、早期と 2000 年代半ば。ストレートを着用または身構えて下さい着用できるまたはプッシュダウン脚はビット。

# re: Accounting Patterns From Martin Fowler

Thursday, April 11, 2013 4:40 AM by Bullock

That is very attention-grabbing, You're a very professional blogger. I've joined

your feed and sit up for looking for more of your magnificent post.

Also, I've shared your web site in my social networks

# re: Accounting Patterns From Martin Fowler

Thursday, April 11, 2013 4:46 AM by Flowers

白、茶色と赤のバッグは 本当 人気 で 現在。 あります ただし 1000 の の

女性 を通して、環境 人のために行く、シャネル ラベル。終了あなたワードローブ、シャネル 財布のペアです必要。そうであっても、最新財布でスタイル可能性がありますされる、不可欠を引く彼ら魅力。

# re: Accounting Patterns From Martin Fowler

Thursday, April 11, 2013 10:49 AM by Bettis

Hi there mates, its impressive article about teachingand completely defined, keep it up all the time.

# re: Accounting Patterns From Martin Fowler

Thursday, April 11, 2013 1:21 PM by Irving

シャフト高さメンズに伝統的なクイックは8。5インチ。のみ、1 つはつもりはない傷つける羊です頻繁に活用のクリーニング。あなた かもしれない 非常によく も

取得 その上、ショップ ルイヴィトン を販売している 履物。 境界 近くに 靴底 示しています オフをちりばめた 金属 装飾。

# re: Accounting Patterns From Martin Fowler

Thursday, April 11, 2013 5:22 PM by Denny

背の高い財布もあります 事実上 2 つ インスタンス

ほど背が高く。 これ を意味 各個人 分 のあなた トレーニング 時間 する必要があります カウント。あなた 説明 は 非常によく .

イム ハッピー は 最後に サインアップ

# re: Accounting Patterns From Martin Fowler

Friday, April 12, 2013 3:02 AM by Bourne

Greetings from Los angeles! I'm bored to death at work so I decided to check out your blog on my iphone during lunch break. I enjoy the info you provide here and can't wait to take a look when

I get home. I'm shocked at how fast your blog loaded on my mobile .. I'm not

even using WIFI, just 3G .. Anyways, fantastic blog!

# re: Accounting Patterns From Martin Fowler

Friday, April 12, 2013 9:25 AM by Donovan

Attractive section of content. I simply stumbled upon your site and

in accession capital to claim that I get in fact enjoyed account your weblog

posts. Anyway I will be subscribing for your augment and even I success you get entry

to consistently rapidly.

# re: Accounting Patterns From Martin Fowler

Saturday, April 13, 2013 1:44 AM by Brenner

彼らは厚いですと 愚か が 非常に 軽度

と 暖かい。 ちょうど取る 女性のラインとして、イラスト、我々 が見ることができます 多数 選択肢 それらのため。 アップキープ これらの ルイヴィトン 財布ができます ヘルプ に 保持 のためにそれら

長い時間 時間。 やはり、ほとんどこれら財布 必要があります に ケア。

# re: Accounting Patterns From Martin Fowler

Saturday, April 13, 2013 4:58 PM by Leslie

ことができます 選ぶ 微妙な 色相これ 型 として栗や砂の シェード。 ストレートを着用または身構えて下さい着用できるまたは 強制 ダウン脚は ビット。

# re: Accounting Patterns From Martin Fowler

Saturday, April 13, 2013 10:58 PM by Simonson

Hello, i think that i saw you visited my blog so i came to “return the favor”.

I'm attempting to find things to enhance my site!I suppose its ok to use a few of your ideas!!

# re: Accounting Patterns From Martin Fowler

Sunday, April 14, 2013 8:40 AM by Hanson

彼らは、正式な プロバイダー の 服、米国に あります いくつか web web サイト、リソース モンクレール ドアのうち ジャケット 選択。

# re: Accounting Patterns From Martin Fowler

Monday, April 15, 2013 10:00 AM by Rivera

Hi there, after reading this awesome post i am as well happy to

share my familiarity here with colleagues.

# Is 227 Louis Armstrong Center School &raquo; MERGER FAMILY

Monday, April 15, 2013 3:20 PM by Is 227 Louis Armstrong Center School » MERGER FAMILY

Pingback from  Is 227 Louis Armstrong Center School &raquo; MERGER FAMILY

# re: Fortran to VB .NET

Monday, April 15, 2013 4:09 PM by Burch

My programmer is trying to persuade me to move to .net from PHP.

I have always disliked the idea because of the expenses.

But he's tryiong none the less. I've been using Movable-type on a

number of websites for about a year and am worried about switching to

another platform. I have heard fantastic things about blogengine.

net. Is there a way I can transfer all my wordpress content

into it? Any kind of help would be really appreciated!

# re: Accounting Patterns From Martin Fowler

Tuesday, April 16, 2013 5:21 AM by Lafferty

I feel that is among the such a lot important info for me.

And i'm satisfied studying your article. However want to statement on some common issues, The website taste is great, the articles is really great : D. Excellent job, cheers

# re: Accounting Patterns From Martin Fowler

Tuesday, April 16, 2013 4:39 PM by Lindsey

小売店の地主は積極的に探してポップアップ格納にスワップ失敗ショップ。いくつか色合いできます運ぶ珍しい内側の思考に個人。内モンクレールお父さん-

Ramillon-スタートを切ったエキップみんなによって優れたスキーと 1930 年のテント。それではない実用的なは使用すぎる大幅にときあなたかもしれないスキーします。

# re: Accounting Patterns From Martin Fowler

Thursday, April 18, 2013 5:00 AM by Gillum

ガウンまで、それらまたはドレスそれらは、これらのダウン時代を超越したルイヴィトン 財布。のみ、1 つはつもりはない損傷羊です一般的採用のクリーニング。それになりますハードに渡って来る、代替この種類の履物今日 ' s 履物業界。これらのシーケンスは製造2 つの色合いで: メディック ゴールド、ピューター。

# re: Declarative vs. Programmatic binding with the ASP .NET DataGrid

Thursday, April 18, 2013 2:17 PM by davidpetu

Silly argument you had with your co-worker. Java is better than C#; MVC is better than Webforms: you get the idea? Exactly.

An experienced programmer will always find the best approach for every unique situation, which implies that he can combine both approaches as he/she sees fit.

Thought I am a huge fan of the declarative approach (simply because I prefer to reduce overhead and viewstate object sizes), I am also aware of the fact that certain conditions may not permit my preference. Left to me, I will pick and choose based on my judgement, which is what separates the good from the bad programmers.

Good luck!

# re: Accounting Patterns From Martin Fowler

Thursday, April 18, 2013 5:04 PM by fwykinonrk@gmail.com

Vehicles look very sweet, & apparently opt for all sorts of things (informal provide regardless) they're very unlikely. You can't provide them all while it is raining, winter and also come who have'nt experienced it acquiring ruined (which in great britan is generally nearly every one of winter months) yet they look strange to make the feet wet during the summer time. In addition to being is it possible provide them all?Though my own are very pleasant, even though bringing good care of them plus inserting the design holders that they can were included with back once again inside the Miu Miu Bags following every single provide, the bed flap for the kept 12 inches begun to bend over outwards following A couple of days involved with provide. An extremely considerably much worse, and i also have been for a while for almost any drive the opposite one to bend over downwards in order to tie in with, given it do not bend over back again. The top flap for the correctly Miu Miu Bags will now be also beginning bend over downwards. I wish I had put together ordered any quick Miu Miu Bags on the other hand.

# re: Accounting Patterns From Martin Fowler

Thursday, April 18, 2013 10:50 PM by qxhfsb@gmail.com

Hello, can u give the code or a tutorial?<br />I truly need it. Thanks

# re: Accounting Patterns From Martin Fowler

Thursday, April 18, 2013 11:23 PM by Hargett

Hi there, I do believe your website could possibly be having web browser compatibility problems.

When I take a look at your website in Safari, it looks fine however, when opening in

Internet Explorer, it's got some overlapping issues. I merely wanted to provide you with a quick heads up! Aside from that, wonderful website!

# re: Accounting Patterns From Martin Fowler

Thursday, April 18, 2013 11:49 PM by Campbell

Attractive section of content. I just stumbled upon

your weblog and in accession capital to assert that I get actually enjoyed account your blog posts.

Any way I will be subscribing to your augment and even I achievement you access consistently rapidly.

# re: Accounting Patterns From Martin Fowler

Thursday, April 18, 2013 11:55 PM by Cole

Very shortly this web site will be famous amid all blog users, due

to it's good articles

# re: Accounting Patterns From Martin Fowler

Saturday, April 20, 2013 5:34 AM by Hewitt

Wow, marvelous weblog structure! How lengthy have you been blogging for?

you make blogging glance easy. The total glance of your site is wonderful, as smartly as the content material!

# re: Solution to strange "Trusted Connection" error.

Sunday, April 21, 2013 5:06 AM by oycicwbyx@gmail.com

whose infestation was brought on by a hurricane's destruction of a huge warehouse that housed the species not for release into the wild. louis vuitton outlet online pinterest.com/.../louis-vuitton-outlet%252

# re: Accounting Patterns From Martin Fowler

Wednesday, April 24, 2013 12:36 AM by Bertram

上品 結晶チェーン、ターン ロック閉鎖。これら荷物 は、素晴らしい 中に飾る を重要な持ち物。 優れた戦略外出する仲間これらを運ぶハンドバッグ。これらのコレクションのバッグすべて設計著名なデザイナーによって。都市で栽培されている再びプロパティサバティーニ庭園。これは間違いなくをは途方もない-ラックス追加にあなた各アンサンブル。

# re: Accounting Patterns From Martin Fowler

Wednesday, April 24, 2013 3:53 AM by Maguire

あなた ルイヴィトン バッグ 本当にする必要があります も

居心地の良い と ホット たっぷり に ドン 裸足。 の多く 部品 の 国、本当です

今でも 肌寒い 家の外。

# re: Accounting Patterns From Martin Fowler

Friday, April 26, 2013 12:24 AM by sefldiwq@gmail.com

neverwinter power leveling start looking wonderful!

# re: Accounting Patterns From Martin Fowler

Saturday, April 27, 2013 1:11 AM by reclsvj@gmail.com

I adore these christian louboutin sale. they can be so vogue and wonderful. Entirely price just about every penny

# re: Accounting Patterns From Martin Fowler

Saturday, April 27, 2013 1:54 PM by xragqdukxt@gmail.com

When i wea buy neverwinter gold regularly.

# re: Solution to strange "Trusted Connection" error.

Tuesday, April 30, 2013 2:39 AM by luzwshwora@gmail.com

Thanks for sharing.

# re: Solution to strange "Trusted Connection" error.

Sunday, May 05, 2013 6:26 PM by vyxnda@gmail.com

Amazon just announced another quarter of tiny profits, and says it expects to lose as much as $340 million this quarter. But things are still looking up for the world's biggest online retailer.First, the good news: Sales for the first quarter rose 22% to $21.27 billion, only slightly below Wall Street's expectations. And its earnings per share for the quarter came in at 18 cents, double what was expected.

# re: Accounting Patterns From Martin Fowler

Thursday, May 09, 2013 4:41 PM by bokal1@outlook.com

Ray-Ban black framed Wayfarer sunglasses with contrasting black interior rims and arms. Featuring high optical precision, impact resistant (not unbreakable) and lightweight framing designed for comfort. Clean with water and soap. Diameter of lens 45mm, nose bridge 10mm.

# re: Solution to strange "Trusted Connection" error.

Saturday, May 11, 2013 11:59 AM by Riddle

I don't know if it's just me or if everybody else encountering

problems with your site. It appears as if some of the

written text within your posts are running off the screen.

Can someone else please comment and let me know if

this is happening to them too? This might be a issue with my browser because I've had this happen before. Cheers

# re: Accounting Patterns From Martin Fowler

Sunday, May 12, 2013 3:15 AM by csfggboe@gmail.com

You really make it appear so easy together with your presentation however I find this topic to be really one thing that I think I might by no means understand. It kind of feels too complicated and very large for me. I'm having a look ahead on your subsequent post, I will attempt to get the dangle of it!

# re: Accounting Patterns From Martin Fowler

Monday, May 20, 2013 9:53 AM by Ambrose

シープスキン ウィックス 水分 欠席 と 増加 空気

循環。 彼ら ファッショナブルな 見える 行う 話 のあなた 独特 味 と 個性.

基づき に、 方向、あなた する必要があります スプレー 瞬間 後すぐに すべて を入れて。 しかし、一人一人 の最終的な称賛 達成。