Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
6answers
804 views

Bubble chart label placement algorithm? (preferably in JavaScript)

I'd like to automatically place 100-200 bubble labels so that the following requirements are met: Labels should not overlap Labels should preferably not overlap bubbles Label should be close to ...
6
votes
4answers
145 views

Where to 'locate' C# structs? / how to organize structs within a project

I'm trying to understand what the convention is for placement of C# and/or C++ structs within a project. In it's own source file? If yes, are there any conventions that I should make a habit of ...
6
votes
2answers
224 views

placement new and delete

What is the right method to delete all the memory allocated here? const char* charString = "Hello, World"; void *mem = ::operator new(sizeof(Buffer) + strlen(charString) + 1); Buffer* buf = ...
6
votes
3answers
472 views

Need Help Programming Battleship Location Selector/Checker

I am trying to develop a 1-sided Battleship game and I have nearly everything set up. I only need to incorporate an array which holds at this time, 5, Ships objects. The class I created for each ...
3
votes
3answers
57 views

How do I convert the .place() method in python to java?

I am trying to convert my Python Code to Java. I need a GUI that is similar to python where I can use widgetname.place(x,y) to place objects anywhere I want in the window. I want to be able to specify ...
3
votes
4answers
2k views

WPF ComboBox popup placement : Bottom and aligned to the right edge

I'm trying to create a ComboBox with a non-standard dropdown alignment. Basically, I want the dropdown to be below the ComboBox, but aligned with the right edge of the ComboBox instead of the left ...
3
votes
3answers
274 views

Find element position on screen

What I need is a function to retrieve the size of an element, be it a Java Applet window in a browser, text boxes in programs, applications window and so on. Now I don't know what this kind of ...
3
votes
2answers
584 views

Smart pie chart label placement algorithms?

I am building a custom chart library for my company. I'm having troubles finding / inventing a good algorithm to place the chart labels so that the following requirements are met: Labels should not ...
2
votes
0answers
36 views

Determine Popup placement relative to target

How can I determine the placement (PlacementMode) of a Popup control relative to it's target after it has been drawn to the screen? I am noticing that though I set the Placement of my Popup to Bottom, ...
2
votes
3answers
88 views

JavaScript defering

Is placing <script> tags in just before closing the <body> tag the same sa placing them in the <head> section and specifying a defer="defer" attribute? Thank you.
2
votes
1answer
571 views

jQuery Validate error placement

Unfortunately, I haven't had much success in finding a solution to this problem, so here goes again... Basically, i'm trying to target and replace the contents of my existing input [label] tag with ...
1
vote
2answers
36 views

Runing javascript in Rails

I guess this is really simple, but I can't get it to work. I have a script in my help.js in app/assets/javascript. This is loaded and if I add an alert() it is run, but when I try to call the ...
1
vote
1answer
67 views

How placement new can be done on stack

Consider the following codes: char mem[sizeof(char)]; void* p = mem; f = new(p) char; Since the memory for variable mem should be on stack So, why doesn't this piece of memory get collected ...
1
vote
2answers
51 views

Placement new to initialize inplace object

I recently came across a rather interesting serialization approach that utilized the transparency (common undefined behavior among compilers?) of uninitialized variables for "efficient" ...
1
vote
1answer
51 views

Tkinter button appears below other objects

I am very sorry if this is a horribly newbie question, but again, I'm very new to tkinter... When I use the place manager to put a button on the frame, it appears on top of the listbox, but when it ...
1
vote
3answers
129 views

How to fix the position of an object near to another one on a web page?

I would like to place the facebook button on the bottom-left of a flash movie that will be on screen. My problem is that when the screen is resized the swf position is changed (it keeps in the center ...
1
vote
1answer
345 views

Affecting node placement in GraphViz, when using the DOT engine

I am writing a software that's constructing a graph. In its most basic form, the graph will be described in a file like the string passed to agmemread in the following segment. This is the code that ...
1
vote
1answer
584 views

jquery validation, error placement

i'm using Bassasistance jQuery validation and so far it seems to be great! I've a quick question regarding the error placement. At the moment, as can be seen below, I am targetting the [small] tag, ...
1
vote
1answer
197 views

Regarding placement new in C++

I am having a problem with the placement new operator. I have two programs: Program1 (operator.cpp) and Program2 (main.cpp): Program1: operator.cpp void *operator new(size_t size) { void *p; ...
0
votes
0answers
13 views

Netbeans JFrame Code Placement

I'm creating a simple application using NetBeans, every thing is working fine, but I'm having a few issues with where exactly I should place code that is to be run when the window is run. I've ...
0
votes
1answer
32 views

Add new table column that's left aligned in table

We're developing a web application using the Vaadin framework. In this app I have an existing table with a range a columns. On a user action I want to remove some of the existing columns and add some ...
0
votes
0answers
28 views

latex: \setlength{\parskip}{10pt} after begin{document} messes my images between paragraphs positions [closed]

Cross posted on TeX: Why are my images not shown where I've inserted them in my .tex file? This is my document \documentclass[letterpaper]{article} \usepackage{graphicx} \usepackage{subfig} ...
0
votes
1answer
34 views

Place sprite in relation to point on screen, not on map

In Cocos2D, I would like a sprite placed on a screen coordinate, not a map coordinate. I thought I could get by using convertToNodeSpace, but it doesn't seem to do what I want. I thought this should ...
0
votes
1answer
67 views

Adobe Flash AS3 Mask Placement

I feel I should know this... Well I would love any help. So I've made a image slider Class and works fine up to the position of the mask. In my Home Class I make an instance of the image slider Class ...
0
votes
3answers
44 views

Header is showing up as footer, even though it's placed on the bottom

I have written a page that works perfectly on showing the data I need in question. The problem is my footer is showing up as my header... I don't know why. Can someone explain? I put it at the end of ...
0
votes
0answers
67 views

2D grid(array) placement algorithm

Data for the problem: 2D grid (lattice) of size N x N n nodes placed on the grid: node1, node2, … noden Each of nodes contain some data: a. nodei is presented by 3 parameters ( xi, yi, ti ) b. xi ...
0
votes
0answers
74 views

Triggering flash event from jquery

I'm really trying to get the hang of all of this, and it took me by surprise that to build a blog is essentially requiring me to learn PHP/JS/Jquery/MySQL/AS/etc. etc. The coding community is ...
0
votes
0answers
19 views

Is it appropriate to use multiple label placements for different forms in a single app?

I understand that different placement of labels on forms can achieve different results; that's a well-researched area that I'm familiar with. However, when you have a single web app, is it taboo to ...
0
votes
4answers
294 views

Left or right placement of interactive elements on a web page [closed]

I. Synopsis: What is the best placement of an interactive element (e.g. submission form) on a web page - left, right or it doesn't matter? II. The big picture: Our service is an online ...
0
votes
0answers
146 views

Silverlight 4 - How to detect the POPUP placement when it is inside a COMBOBOX

I have customized the visual of a combobox and need to know whether the combobox's popup was opened up or down. It seens to be very easy to do when I use a popup in an usercontrol, I can get its ...
0
votes
2answers
1k views

How to prevent image moving when resizing window

Im currently developing this site http://digitalgenesis.com.au/projects/sister/music.html What happens when i re-size screen is that it eventually collides with the div contents holding page title ...
0
votes
0answers
120 views

Adjust Mathematica Tooltip Placement?

I have a tooltip set to display a calendar, and it shows up just fine where I want it except the calendar for one ID# is showing up when you mouseover the ID# above it. Is there a way to knock it down ...
0
votes
1answer
31 views

Getting around moveTo and moveBy cross-domain

When I load a page from a different domain into a pop-up window, it seems that moveto and moveby are not possible. If I load the content in a div or other element within the pop-up will it be ...
0
votes
3answers
86 views

Objective-C object placement iPad

I have a GUI class extending UIViewController. In its function viewDidLoad, I would like to have a UITextField instance. I would like that instance not aligned as a simple CGRect, setting its offset ...
0
votes
1answer
366 views

Error placement with jquery validate plugin

my form is a table and input fields are in rows and several columns. I am trying to place error messages with the jquery validate plugin in the cell (same column, next row) which is located right ...
0
votes
1answer
181 views

window positioning algorithm

I need an algorithm that will find place a gadget window in the first availble space between other gadget windows already on the screen. Basically a screen will contain gadget windows of different ...
0
votes
4answers
79 views

CSS Layout places text right next to it instead of below

I have a problem with my CSS layout seen below: #wrapper { width: 80%; } #content { float: left; background: #FFFF00; height: 350px; width: 70%; display: inline; } #rightcolumn { ...
0
votes
4answers
112 views

javascript - events - where to place them?

I'm hopping that around the community of js developers we can have a consensus around this: Should we declare or onclick, onkeyup... etc... events inside or outside our HTML document? 1) I do prefer ...
0
votes
1answer
121 views

Java Grid Layout Direction Issue

Column Image please help. the following: private GridLayout columnHeaderLayout = new GridLayout(7,1); results in a vertical placement (image) instead of horizontal. what am i doing wrong? thank ...
0
votes
1answer
605 views

WPF ComboBox DropDown using PlacementTarget

I have a ContentControl comprised from left to right of a Button, partition and a ComboBox. I want the ComboBox dropdown to line up with the left side of the control as opposed to the left side of the ...
-1
votes
1answer
39 views

javascript - move to body tag? [closed]

Possible Duplicate: Where is the best place to put <script> tags in HTML markup? I read this article. Now I am wondering, should I move my Javascript links into the <body> tags ...
-1
votes
1answer
96 views

Simple div placement question

This is maybe a really simple question for some of you. But I would like to know how to place div in a smart way. Here the result i want to have So basically a user do a search of POI, and I select ...