Tagged Questions
The box tag has no wiki summary.
22
votes
3answers
13k views
Box-shadow only on one side
Many times i need to create a shadow of some block element but only (for example) on its right side. The way I do it is to wrap the inner element with box-shadow into an outer one with padding-right ...
11
votes
4answers
6k views
How to put the legend out of the plot
I have a series of 20 plots (not subplots) to be made in a single figure. I want the legend to be outside of the box. At the same time, I do not want to change the axes, as the size of the figure ...
7
votes
2answers
236 views
Swing component and jdk version issue
I have a combo box. After selecting an item in combo box new JDialog opens.
When i use JDK 1.6_06, I am able
to click on buttons in JDialog
properly.
When i use JDK 1.6_24,
then i need to click ...
6
votes
8answers
3k views
CSS box shadow on container div causes scrollbars
I have a website with the following setup:
<div id="container">
<div id="header"></div>
<div id="content"></div>
<div id="clearfooter"></div>
...
5
votes
3answers
981 views
Wordpress create a new post status?
In Wordpress you get the default post statuses: Published, Draft and Pending Review. Is it possible to add some more post types via registering them via the function.php file of the active theme?
...
5
votes
3answers
5k views
facebook like box stream height
How to control the facebook like box stream part height alone. Its normal to reduce height of whole box but if tries to control it fans images are not shown.
The css .fan_box .page_stream{ ...
4
votes
1answer
110 views
jQuery Box Prob
I am trying to solve a rectangle problem using jQuery. Basically, I have 3 square boxes which fix inside a larger box.
I know the larger box has a max-width of 500px. I do not know what the sizes of ...
4
votes
5answers
251 views
How can I properly center a JPanel ( FIXED SIZE ) inside a JFrame?
Hi all!
I'm trying to solve an -apparently- simple problem, but I cannot fix it.
I'm working on a sample application with Java/Swing libraries;
I have a JFrame and a JPanel.
I just want to achieve ...
4
votes
2answers
71 views
How can I have an image float next to a centered div?
How can I make a image float next to a centered box? What would be the correct HTML/CSS-code? Here's a outline of what I'm trying to make:
Thanks in advance.
4
votes
3answers
288 views
CSS 100% height layout
I know this is a sort of a common problem, and I looked up some solutions, but couldn't find exactly what I was looking for.
I would like to convert this to a tableless layout: ...
4
votes
2answers
723 views
How can I abort an evaluation in Clojure Box (Emacs)?
I've been caught up in long running computations lately thanks to Project Euler and I'd like to know how to abort an evaluation and return to the REPL prompt. I'm running the standard Clojure Box ...
4
votes
3answers
15k views
C# : How to save a picturebox control as a jpeg file after it's edited
Hi
I have a picture box on my windows forms.
I load a picture in it and I have enabled Paint Event on my code.It draws a rectangle.
Like this;
private void pictureBox1_Paint(object sender, ...
3
votes
2answers
47 views
trouble with double truncation and math in C
Im making a functions that fits balls into boxes. the code that computes the number of balls that can fit on each side of the box is below. Assume that the balls fit together as if they were cubes. I ...
3
votes
3answers
99 views
Making dialog boxes
I just want to ask is there a simple way in C++ to make dialog boxes (openfiledialog, savefiledialog) to be written like this:
' VB6 Example
'Setting up the "open file" dialog box.
...
3
votes
2answers
120 views
Search Box - how it open in code
is any way how I can start/open search box with codes or its possible just with click on search key?
3
votes
1answer
174 views
Multi Style Sheet with jQuery Cookies (Need help with pop up box)
$(function() {
$('#yes a').click(function() {
$.cookie('AutoPlayTrue', '1', {
expires: 999
});
$('.disableAutoPlay').hide('slow');
...
3
votes
1answer
61 views
Text contained in box shows up with top padding in browser, but not in fiddle
I have been witnessing this weird behavior since last night.
Here's the fiddle: http://jsfiddle.net/Gqndm/
and here is a screenshot of what I get in all the major browsers on my machine:
...
3
votes
1answer
371 views
What's wrong with this python image blur function?
EDIT: Thanks to Howard, I've corrected the code here and it seems to be working now.
EDIT2: I've updated the code to include a vertical blur as originally intended. Resulting sample output with ...
3
votes
2answers
135 views
How to automatically Scroll a text window on loading it
I have a html text box with scroll. Is it possible to get the box to scroll to a certain point on loading ?
3
votes
5answers
2k views
calling alert box from code behind java in jsf
I have a requirement to update the properties file based upon the input provided by the user in the jsf page. After updating the file, user session should be cleared and alert box should say ...
3
votes
3answers
1k views
JavaScript: Confirm dialog box that shows value from a text box
Is there a way to have a confirm dialog box display the value a user typed in a text box on a form? (For example, if the user types 100.00, I'd like the dialog box display a message something like, ...
3
votes
3answers
768 views
Java Box Class: Unsolvable: aligning components to the left or right
I have been trying to left align buttons contained in a Box to the left, with no success.
They align left alright, but for some reason dont shift all the way left as one would imagine.
I attach the ...
3
votes
3answers
5k views
Is there a CSS selector to select text (inline blocks) within a rectangular box?
Can a CSS rule select the portion of a box which contains text (or an inline block)?
For example, an HTML fragment like <p>The quick brown fox jumped over the lazy dog</p> might be laid ...
3
votes
3answers
4k views
how do I find the angle of rotation of the major axis of an ellipse given its bounding rectangle?
I have an ellipse centered at (0,0) and the bounding rectangle is x = [-5,5], y = [-6,6]. The ellipse intersects the rectangle at (-5,3),(-2.5,6),(2.5,-6),and (5,-3)
I know nothing else about the ...
2
votes
3answers
76 views
Is it possible to cast a Dictionary<string, string> to Dictionary<string, Object> in C#?
According to the Implicit converting Logic which enables something like:
string str = "something";
Object o = str ;
I was expecting that assigning a Dictionary<string, string> to ...
2
votes
4answers
44 views
Place div on top of a <li> and <a> without moving their position
I am trying to place a circlular div (border-radius:85) on top of a <li><a></a></li> to make something like this:
Now making it on only one box its kinda working although ...
2
votes
2answers
56 views
adding ButtonGroup to Box-layout object
When I try to put ButtonGroup object to my Box object, compiler returns the following error:
no method for such a type
Please help me, how can I add my ButtonGroup into Horizontal Box?
2
votes
1answer
259 views
HTML5 flexible box model height calculation
after researching the flexible box model for a whole day, I must say I really like it. It implements the functionality I implement in JavaScript in a fast and clean way. One thing however bugs me:
I ...
2
votes
0answers
117 views
Issue with Like Box not pulling current data
I have been using Like Box to show our company Facebook feeds on our company portal. The feeds stopped updating on March 24 but we have more current post. Everything seems to be working but current ...
2
votes
1answer
40 views
Is there a way to create a “header row” for a Winforms ComboBox?
Is there a way to create a "header row" for a winforms combo box?
So that's it's always displayed at the top?
2
votes
1answer
297 views
Like Box for Group
I would like the Like Box on our website. However creating this in combination with a group seems not possible.
Does anyone know how to create a Like Box for a group? Creating a page would make ...
2
votes
2answers
77 views
connect line between two boxes avoiding passing others
I have several boxes (x,y,width,height) randomly scattered around, and some of them need to be linked from point (x1,y1) in box1 to point (x2,y2) in box2 by drawing a line. I am trying to figure a way ...
2
votes
1answer
188 views
How to colour group box controls in Win32?
I am attempting to make the text colour and background of a group box control. I am using dialogs and Win32. To illustrate my problem I have created a project with the minimum code necessary to ...
2
votes
1answer
104 views
Getting boxes to same width in Firefox using -moz-box
I am using the following css to get three evenly spaced and sized boxes with a flexible width:
.box {
display: -moz-box;
display: -webkit-box;
display: box;
width: 100%;
...
2
votes
6answers
213 views
Adding a message box to a Java program that opens and closes at a certain point
I was able to figure out getting input from the user and displaying the final product by myself, but I would like to add a "busy" message that displays at a certain point and then closes at a certain ...
2
votes
1answer
995 views
using autocomplete box in silverlight?
i am currently displaying data in the radgrid controls of telerik, i want to add an autotextbox over the column named "Name". how can i do this?
my radgrid only displays data and i want that whenever ...
2
votes
1answer
57 views
CSS Width Beyond Specified
On this website my CSS is
.event_a {
width:220px;
float:left;
height:100%;
padding:5px 0px 0px 0px;
}
But the three '.event_a' boxes will not sit next to each other. When I inspect ...
2
votes
2answers
1k views
how to add comments box to iweb website?
is there a way to have comments box on a website made on Apple's iWeb.
I don't host my website with Apple MobileMe. I just think it is too expensive. I have been hosting it with Godaddy.
But ...
2
votes
2answers
222 views
Is there a “bounding box” function (slice with non-zero values) for a ndarray in NumPy?
I am dealing with arrays created via numpy.array(), and I need to draw points on a canvas simulating an image. Since there is a lot of zero values around the central part of the array which contains ...
2
votes
1answer
432 views
HTML + CSS fancy box planning
I've got box in PSD (not PNG) which looks like this:
I don't know how to crop it into box. I mean - it has to be class, because there'll be few types, with diffrent width (and of various heights of ...
2
votes
1answer
205 views
repl is not working(clojure box)
I want to use syntax highlighting for clojure in emacs + slime + clojure.
So I did following step.
run clojure box
M-x clojure-mode in slime-repl clojure
syntax highlighting is success.
But repl ...
2
votes
0answers
428 views
android Quick Search Box problem
i want to add a QSB in my activity which will show search result from a list of string variables with in my activity.Can anyone know how can i do this.
Thanks in advance....
2
votes
3answers
673 views
Change foreground/background color of Item in Listbox programmatically in WPF
How can i add different items with either background/foreground color different in WPF listbox?
2
votes
3answers
4k views
Custom css select boxes using jquery
I'm using this script
http://mondaybynoon.com/2009/02/23/creating-custom-form-elements-using-jquery-selects/
to create custom css select boxes in my page. Javascript code that is used to apply the ...
2
votes
0answers
399 views
How can I create a Multiple Value Combo box on an Unbound Form
I need your help on MS Access 2007.
I have a big problem with my MS Access Unbound Form.
How can I create a combo box i do not want bound to a table, show a multiple value List?
The Combo is named ...
2
votes
3answers
966 views
Import Picture from file to Picture Box… need help
In my project, I have a list box. When I click an item on the listbox, I want the PNG image from a file (stored in Global Varible, GV.dir) into the Picture Box named picBox... this is what I have...
...
2
votes
7answers
716 views
html text box that automatically adds characters
Hey guys I'm trying to make a HTML text box that:
1) only accepts numbers
2) after 3 digits, adds a '.'
3) after 6 digits, adds another '.'
So for example, by only typing numbers, you'll get
...
2
votes
1answer
388 views
How do I create an editable databound combo box in a DataGrid in WinForm?
I have a noob question.
I have a WinForm (.net 2.0 in VS 2008) on my form I have a DataGrid. One of the fields in that DataGrid is a combo box that is bound to a separate table. This works, but I am ...
2
votes
3answers
515 views
PHP MySQL Encoding Bug?
Heres my problem. I have a mysql table called quotes. In one of the rows, a quote contains the folloqing characters
‘ and ’
Now the row collation is utf8__unicode__ci
When using MySQL Query ...
2
votes
1answer
3k views
HTML textbox, auto highlighting text
How would I make a textbox, containing preexisting text, that when the user clicked within it all the text inside it would become highlighted. For example, the same way YouTube does the textboxes for ...