Saturday, May 26, 2012

%1% is not valid win32 application

Try this if it works for you 1) Go to Start>Run>type Sfc /PurgeCache (hit enter and let it complete) 2) Go to Start>Run>type Sfc /scannow (hit enter and let it complete) Restart machine.

Saturday, March 3, 2012

FIFO Avg Cost

http://www.accountingformanagement.com/average_costing_method_materials_costing.htm

Friday, January 27, 2012

Tab Slideout Menu

http://wpaoli.building58.com/2009/09/jquery-tab-slide-out-plugin/

http://www.building58.com/examples/tabSlideOut.html

http://www.roseindia.net/tutorial/jquery/TabSlideOut.html

Tuesday, January 10, 2012

sort stored procedure by modified date

SELECT name, create_date, modify_date,type
FROM sys.objects
WHERE type = 'P' order by modify_date desc

Friday, October 14, 2011

SSRS DB is properly working but SSRS webservice url is giving 500 error.

Check event view entry and if u find below entry:-

Message: The current identity (NT AUTHORITY\NETWORK SERVICE) does not have write access to 'C:\Program Files\Microsoft SQL Server\MSRS10.MSSQLSERVER\Reporting Services\RSTempFiles\'.

Solution :- Assign Full Control to NETWORK SERVICE user account for this folder C:\Program Files\Microsoft SQL Server\MSRS10.MSSQLSERVER\Reporting Services\RSTempFiles\

Friday, September 9, 2011

Fancy box and mvc's action result

Hi,

I faced issue with asp.net mvc. The images
I'm using are stored in a database. They are served from the server
using ASP.NET MVC 3. Therefore, my image links look like this:
<a href="/Photo/Image/4" rel="gallery"><img src="/Photo/Image/4"
alt="foo" /></a>

The fancybox script uses regex to determine if the link is an image.
Well, it fails on this, and winds up showing you the raw data in the
image file. I figured out what to do by reading the javascript. All I
needed to do was add 'type': 'image' to my options. My script looks
like this:
$(".gallery a").fancybox({
'zoomSpeedIn': 300,
'hideOnContentClick': true,
'zoomSpeedOut': 300,
'overlayOpacity': .8,
'type': 'image'
});