Hi. Flex is so tricky to style.
I have a combobox, when I arrow up and down over a select it has a background color, how do I change this color. This should be easy.
What kind of algorithms would generate random "goo balls" like those in World of Goo. (btw, if you haven't played it yet, highly recommended). I'm using Proccesing, but any generic algorithm would do.
I guess it boils down to how to "randomly" make balls that are kind of round, but not perfectly round, and still looking realistic.
Thanks in advance!
Hi,
i have an ebook(relatively large size say 800 pages),in HTML format. I am opening that book as webpage using webkit-gtk+. If i load the whole book at a time,it takes too much memory(RAM ).So i dont want to load the whole book at a time, but load the part of the book which is currently on display. and when the user scrolls down, next part should be displayed.How can i implement that ?
Hi,
I want to make a window interface just like "Devices and Printers" window in Windows 7 in which items can be suppressed and drilled down. Any ideas how can i build such a view and which controls from wpf can be used.
Any ideas are greatly appreciated !
I have one form opening a second form which is meant to look like it's replaced the first form but it opens a bit to the right and down which ruins the effect.
If there a way to make it open wherever the first form may be?
I am using visual studio, in C++
I am currently troubleshooting a large and unwieldy GUI-based tool in Visual Studio, and was wondering whether there is any way to get some kind of notification (either by writing to the console or through a third-party tool) whenever any handled event occurs. This would make it a lot easier to track down what precisely is going on while I am interacting with this beast. Is there an 'on any event being handled' event I can handle, or some kind of add-in for VS which would make this possible?
Where, in Windows, is this icon stored? I need to use it in a TaskDialog emulation for XP and am having a hard time tracking it down.
It's not in shell32.dll, explorer.exe, ieframe.dll or wmploc.dll (as these contain a lot of icons commonly used in Windows).
I have a script running on Ruby 1.9.1 on Windows 7
I've distilled my script down to
File.open("????.txt")
and still can't get it to work. I know there are issues with Ruby 1.9 filename handling on windows (Using the Windows ANSI library), but would be happy enough with a work around that is callable from Ruby
Hi
Why does XHTML 1.0 Strict display a line height as appearing larger than a line height of the same value in XHTML 1.0 Transitional?
This therefore pushing down content within table cells (i.e Hotmail in Firefox, Gmail in IE and Firefox). Has anyone else experienced this issue and know a way around it?
Cheers
Hello, All.
I've tried video recording in the background.
But had failed.
Under normal circumstances, the recording works properly.
However, if HOME key down- Home screen or Other Activity is running,
recording terminates.
In such a situation, I want to record continuously.
I want to record whole process!
What should I do?
thanks.
-Michael
I'm currently learning EJB and as I understand when client gets a stateful session bean the server keeps it in memory(or passivates it) until the client removes the bean. Pretty simple, except nowhere I have seen any examples of how the client can actually remove the bean. How do you do that other than shutting down your client application? Or do I just have to implement a reset method in all my stateful beans if I want to start over?
I want to ask the user for input in console. He'll be writing down two numbers separated by a single space.
In Java is there something like the C# Split() method I can use?
Thank you!
My old IDE HDD from my laptop recently crashed and now, I can only see it in the BIOS.
When I try to track it down using GParted or other tools, I can't seem to find it.
Does anyone have a solution to my problem?
I'm writing a game which uses 3D models to draw a scene (top-down orthographic projection), but a 2D physics engine to calculate response to collisions, etc. I have a few 3D assets for which I'd like to be able to automatically generate a hitbox by 'slicing' the 3D mesh with the X-Y plane and creating a polygon from the resultant edges.
Google is failing me on this one (and not much helpful material on SO either). Suggestions?
class AddTitleToPosts < ActiveRecord::Migration
def self.up
add_column :posts, :title, :string
Post.find(:all).each do |post|
post.update(:title => post.name.upcase)
end
end
def self.down
end
end
Like you can nothing particularly complicated, just trying to add new column title by changing case of name column already in db. But I get attempt to call private method error. I'm guessing it has something to do with 'self'?
Thanks for your help.
PC is shutting down during Lightmass/AO rendering only, CPUs never ovr 70c, Video Cards 65c..no overheating.... runs ANY game in 200+FPS : Unable to load image \SystemRoot\system32\ntoskrnl.exe, Win32 error 0n2*** ERROR: Module load completed but symbols could not be loaded for ntoskrnl.exe and the debugger gives me.Probably caused by : ntoskrnl.exe ( nt+54a57 )
Love this feature http://share.blog.us.playstation.com/ Users are able to post requested features and then vote them up or down. Is this a plug-in that can be downloaded?
Thanks,
Tim
I need to display 480 x 320 background image in OpenGL ES. The thing is I experienced a bit of a slow down in iPhone when I use 512 x 512 texture size. So I am finding an optimum case for rendering iPhone resolution size background in OpenGL ES. How should I slice the background in this case to obtain the best possible performance? My main concern is speed. Should I go for 256 x 256 or other texture sizes here?
How to make button show it is clicked (by setting it go down/some change) for buttons using custom background image in Android.
I do not want to include more images and set different one to different states like shown in google views example.
Thanks.
I was wondering if it is possible to have more than one URL for each git submodule. It would be interested to have more than one source of it if one of them is down or someone is behind a proxy that blocks one of them.
Have you ever had this problem? How would you solve it?
I'm having a problem when scrolling down and up a tableView on iPhone it gets kind of stuck while loading the images i need a method to preload the images so the scroll can be fluid or load the images 'till the scroll event stops...
any help on this?
ChatGUI
im using 2 JEditorPane to transfer text from one to another.
once i have transfered the data i do the following:
JEditorPane.setText(null);
JEditorPane.setCaretPosition(0);
but as you can see from the attached image the return action makes the prompt appear a row down. how can i fix this?
Several MS apps support the concept of chords, like "CTRL+X,Y" which means "holding down CTRL, press X, then Y".
Is this a bespoke thing they (and other companies) implement, or is it built into any APIs? It would be nice to be able to set up event handlers or accelerators based on chords rather than write code to do it.
Hi
I want to implement RadioButton and EditText inside ListView. I am using ArrayAdapter to set the List.But the problem is that when i am selecting a RadioButton and scroll down the list and again scroll up the the Radiobutton which had been selected getting unselected.Same with the EditText.The text getting removed when scroll up.
hope you can understand........thanks in advance...
I want to be able to detect and abort OS shutdown from my application, preferably by using the Windows API. I know that it is possible to do this manually using the command shutdown -a In the worst case, I could ShellExecute this, but I was wondering if there was a better way.
Also, how do I find out programatically that the OS is about to shut down, via the Win32 API?