|
Using Microsoft SQL Server Reporting Services (SSRS), I'm trying to display a report that has hundreds of results. These results are 3 digits numbers and I don't want to have a 10 pages report. I want the display of the information to go Across, and the...
Started by Anfigo on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
For the row grouping use:
=ceiling(rownumber("Dataset")/x)
For the column grouping use:
=((rownumber("Dataset")-1) mod x)
I'm trying to display the report in SSRS .
Use a matrix/tablix where x is the number of columns you want .
|
|
In vb.net / winforms, how can a hashtable be bound to a drop down list or any other datasource-driven control?
Started by Jeffrey on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
This is that you can then get the data back out of the list as the original object (not just the value field.
|
|
I have an html select element which I would like to style for print so that it just looks like the selected text. How can I hide the drop down arrow?
Started by Tarquila on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
As those visual elements are not defined.
There is nothing in the standards to choose from, or how those options are shown.
Post/2009/07/28/reinventing-drop-down-with-css-jquery.aspx
You can't.
|
Ask your Facebook Friends
|
Hello, I am developing a 2d iphone game by using cocos2d. I need a countdown timer. Plz tell me, How can I create a count down Timer in cocos2d ?
Started by Nahid on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
NSTimer class reference.
Look at NSTimer, it can most likely provide any needed timer functionality.
|
|
How can I determine when the control key is held down during button click in a C# Windows program? I want one action to take place for Ctrl/Click and a different one for Click.
Thank you
Started by rp on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Assuming WinForms, use Control.ModifierKeys, eg:
private void button1_Click(object sender, EventArgs e) { MessageBox.Show(Control.ModifierKeys.ToString()); }
Assuming WPF, use Keyboard.Modifiers, eg:
private void Button_Click(object sender, RoutedEventArgs... .
|
|
Hi,
I have an array of raw rgb data on a 16 bit display with dimension of 320 * 480. The size of the array is 320*480*4 = 6144000.
I would like to know how can I scale this down (80 * 120) without losing image quality?
I found this link about scaling ...
Started by lucius on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
So, assuming you know how to split your color space up, you can now use a series without visible quality loosing....
There are plenty of methods of scaling down images, but none can guarantee not losing "quality possibilities .
|
|
A VB6 application is using the Interop Forms Toolkit to work with forms written in .NET. The documentation for the toolkit advises calling a method on the toolkit to advise the toolkit when the VB6 application is shutting down.
The VB6 application uses...
Started by hurcane on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
You can also check is shutting down, The terminate event on the class....
Its been a while since I wrote in VB6 but if I remember correctly you can use the Unload event to call your cleanup code (it similar to the closing event in .net).
|
|
Is there any way to increase the time a drop-down menu created stays on screen? The drop down menu just appears and disappears as I touch the cursor. The drop-down was created using Prototype.
Started by Terrific on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Use a different drop down menu:
Here's over 25 that might better suit your needs:
http://www.noupe.com/css/multilevel-drop-down-navigation-menus-examples-and-tutorials.html Or mention what drop down menu you are using so we can....
|
|
Hello, is there any way to add a JMenuItem to a JPanel so that I can create a button to show multiple options, like the latest news button in firefox, under the address bar?
I can only add JMenu and JMenuItems to a JMenuBar, JPopupMenu and other JMenus...
Started by Telcontar on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
A Swing drop down propositions
The above drop-down button ....
I believe this canA JMenuBar should only be added to a JFrame ( setMenuBar() ), not a JPanel .
An action pressing the button or show more actions pressing the down arrow.
|
|
I have a remote PC connected with Remote Desktop as administrator. It was infected by a virus and therefore I can't run task manager or command run.
How can I restart or shut down my remote PC? Please consider that I don't have access to the task manager...
Started by Am1rr3zA on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
Lastly, you ....
If that fails, you can close your remote desktop session through that method.
Right click (if you can) on the desktop -i" and you can set options from there.
Double-click.
The file, then rename it to something.bat.
|