Tagged Questions
The setbounds tag has no wiki summary.
4
votes
1answer
1k views
setbounds on google maps api v3
I'm trying to set the bounds of a map
fitbounds doesnt work because it puts some space around the bounds therefore doing
{{{map.fitBounds(map.getBounds())}}}
a few times will quickly zoom the map ...
1
vote
1answer
261 views
How do I do boundCenterBottom with setBounds in android?
I'm making an app that sets a pin down on a certain location. I would like the location to be at the bottom center of the image. I'm using the setBounds method to create the bound but I'm not sure how ...
1
vote
1answer
356 views
Is it possible to set bounds for the view before it is shown
-(void)CallingView2{
SettingsViewController *aSettingsView = [[SettingsViewController alloc] initWithNibName:@"Settings" bundle:nil];
[self setSettingsViewController:aSettingsView];
...
0
votes
1answer
20 views
Change bounds origin + cropping an image
I am a newbie to Cocoa, I have a few doubts regarding NSImage.
Question1:
Changing the bounds origin of an image doesn't seem to have any effect. I expected the image to be drawn from the newly set ...
0
votes
0answers
115 views
setBounds() with float
I'm slowly trying to learn Java and Android SDK and I'm currently working on getting a drawable to move down across the screen (y -= random value, bascially).
I've gone through some tutorials and ...
0
votes
0answers
66 views
MPMoviePlayerController's view setBounds doesn't work properly
i'm trying to put MPMoviePlayerController's view inside another view (Video View):
screenshot1
i have an IBOutlet (videoView) for this view in my viewController and this code for managing video ...
0
votes
1answer
53 views
Can’t setBounds even with NS_BUILD_32_LIKE_64 macro
My project compiles and runs OK in debug mode, but when I switch to release x86_64 compiling, I get compiler errors for attempts to setBounds using NSRect. (The errors read “incompatible type for ...
0
votes
1answer
74 views
Updating location of JPanel
im currently working on a game in Java and a problem occured. It is a strategy game.
My game area or map is a JPanel, which i put in a JScrollPane, allowing you to scroll around the map. I put other ...
0
votes
1answer
202 views
How to place JButtons at a certain coordinate in a JFrame
I want to know how to place JButtons at a particular coordinate in the JFrame. All day I have seen layouts. This does not suit my purpose. I would prefer something like setBounds. Rumour has it that ...
0
votes
1answer
49 views
Set Controls with arbitrary positions on CTabItem
I am new to SWT, and I need to set the controls positions arbitrary on CTabItem.
I've used the following code, but it seems that it had no positioning effect, it just add the component to (0, 0)
...
0
votes
2answers
2k views
Showing a Windows form on a secondary monitor?
I'm trying to set a Windows Form on secondary monitor, as follows:
private void button1_Click(object sender, EventArgs e)
{
MatrixView n = new MatrixView();
Screen[] screens = ...
0
votes
3answers
3k views
Animating form resize in VB.NET
I have a form positioned slightly above the taskbar/system tray in the bottom right corner of my desktop window. It's sort of like a pop-up notification. The notification itself looks great, but ...