Report Builder 2.0 - Hide Series1
- Category: SQL Server Reporting Services
- Hits: 23252
- SQL Server 2008
- Report Builder 2.0
- BMC Service Desk Express 9.8
- Incident #
- Group Name
- Close Date & Time
- Assigned to Full Name
- Incident Type
If Then Else in Report Builder 2.0 Expressions
- Category: SQL Server Reporting Services
- Hits: 44240
Yes, well don't laugh, I could not find this on the WWW so I was obviously not using Google properly. Anyway here's just a quick note on how to do if else statements in Report Builder 2.0
I'm looking at the following if statement:
If (MyFieldName = 0) Then Return 1 Else Return MyFieldName
Can be expressed as:
IIf(Fields!MyFieldName.Value = 0, 1, Fields!MyFieldName.Value)
SSRS Report Builder 2.0 - Error during processing
- Category: SQL Server Reporting Services
- Hits: 19663
The Issue
After modifying a report and on running it, Report Builder 2.0 returns the following error:
An error occurred during local report processing.
An error has occurred during report processing.
Query execution failed for dataset 'DataSet1'.
The variable name '@GroupName' has already been declared. Variable names must be unique within a query batch or stored procedure.
AutoHotkey Ternary Operator
- Category: AutoHotkey
- Hits: 17542
Just a quick note for the moment on how to use ternary operators in AutoHotkey. A ternary operator for those who are unfamiliar with this is an "If...Then...Else..." statement written in a small amount of code, usually on one line, and exists in most programming languages.
For Example, the statement:
If (ThisCondition = true) ThisVar:=1 Else ThisVar:=2
Converted to Ternary this would look like:
ThisVar:=(ThisCondition = true) ? 1 : 2I'll add as there are a whole bunch of methods using the Ternary Operator in AutoHotkey (discussed on http://www.autohotkey.com/forum/topic29752.html) which I'll put in soon. I just needed something on my site now as I find myself looking for this bit of info every now and again.
Windows 7 Aero Features
- Category: Windows OS
- Hits: 29862
Thought I'd put something here as a lot of my clients and friends are all surprised by the Aero features and weren't aware that these existed in Windows Vista (and originally from Linux variants).
Sometimes you may only have partial Aero effects. This can be because Windows may not think your machine is powerful enough to run these effects without affecting performance.
If this is happening to you, and you don’t mind about a possible slight slow down on performance you can force enable them -
- Go to Control Panel -> System and Security -> System
- Click on advanced system settings on the left and then performance settings.
- Under the visual effects tab you should see that the option “ Let windows choose what’s best for my computer “ is by default checked.
- Below it you should see a list of visual effects, some of which will be unchecked if you are not experiencing the full range of Aero features.
- Select the custom option and then select all the effects from the list below it. Hit apply and ok and you should have all the Aero effects enabled.
Now what are these Aero effects?
Some milestones for a website project
- Category: Web-Development
- Hits: 15196
- The concept - typically drawings, words, models, code and basic prototypes that describe the nature, objectives and features of the website.
- Design document - a detailed plan of the website’s features and how it will display are generated from the concept and presented to potential publishers.
- Technology demo – a prototype that demonstrates the website’s technology, illustrating for example the presentation and registration services. This is produced for review so as to decide if concept is marketable.
- Browsable prototype or Vertical slice – normally a few sections of the website are produced with many of the website features in and working, this allows reviewers to get a feel for the site, the level of usability, the saleability of the product and technical risk involved in fully developing the website.
- ALPHA/BETA – these are the next major milestones that represent near completed websites, these are subject to extensive testing, compatibility and QA by both the developer and the publisher.
- Master – a completed, bug-free website approved by the customer and available online.
Another ASCII Extended Character Set for PC
- Category: Windows OS
- Hits: 7344
Typing an ASCII character
- In DOS:
- Hold down the <Alt> key while typing the decimal number on the keyboard keypad. (Example: <Alt>178)
- In Windows for a DOS character:
- Hold down <Alt> while typing the decimal on the keyboard keypad. (Example: <Alt>230)
- In Windows for a WIN character:
- Hold down <Alt> while typing "0" then the decimal number on the keyboard keypad. (Example: <Alt>0140)
Remove write-protect from USB pen in Windows
- Category: Windows OS
- Hits: 28149
I just had to put something here as I have been buying and returning failed/corrupt USB pens. In the past few months I have been trying to upgrade my 16Gb USB Integral Pen from Play.Com to a 32Gb equivalent. I use my USB pen as the "My Documents" folder on every computer I use. It was fine with my 16Gb one but my 32Gb ones have all failed at some point.
I went for a cheap one on Play.com (Verbatim 32Gb@£49.99 & Kingston DataTraveler@?) and an even cheaper one on Ebay.com (Leather 64Gb@£29.99). In hindsight, the Ebay one was obviously going to fail (faking the disk size).
I got badgered by my colleagues to splash out and get a worthwhile pen. Aside from some other failures, I decided to get the bulletproof, waterproof, fireproof, shockproof 32Gb USB Pretec Pen (as advertised by Gadget Show on Five.tv). Turns out this is an incredibly fragile pen. If files are being written to it and it gets nudged, this will corrupt the pen. BTW I don't use the "remove device safely" rubbish as my old pen never did and it was fine for over a year. The default setup in windows XP is that it doesn't need it.
Bulletproof, waterproof, fireproof, shockproof BUT NOT joe-proof! ...
Page 65 of 74
Credit where Credit is Due:
Feel free to copy, redistribute and share this information. All that we ask is that you attribute credit and possibly even a link back to this website as it really helps in our search engine rankings.
Disclaimer: Please note that the information provided on this website is intended for informational purposes only and does not represent a warranty. The opinions expressed are those of the author only. We recommend testing any solutions in a development environment before implementing them in production. The articles are based on our good faith efforts and were current at the time of writing, reflecting our practical experience in a commercial setting.
Thank you for visiting and, as always, we hope this website was of some use to you!
Kind Regards,
Joel Lipman
www.joellipman.com