I don't know if this is the place to ask this question, but if it is:
Is it possible to dynamically resize a frame depending on the objects it
contains. Objects inside also resize dynamically according to multiline text
size.
Thank you,
Radu.
Question for Flex guys.
How can I use multiple item renderers in mx:Tree depending on item's depth/level in tree?
For example. For the first level items I want to use label with button and for second level items combobox.
Is this somehow possible?
Hi guys, I really need help with finding a repeated number out of 3 boxes. Let's say that i have 3 boxes, each box contain 10 piece of numbered paper (1 - 10) but there is a number the same in all 3 boxes eg: box1 has number 4 and box2 has number 4 and box3 also has number 4.
How to find that repeated number in java with an efficient/fastest way possible?
Thanks in advance!
Hey
I know that in the google maps API it's possible to replace the existing tiles with my own - and using their tile server - feed my own maps.
i'm interested in doing this using monotouch - is there any way of doing this atm - or does anyone know of a way of achieving this any other way?
w://
Hi All,
I want to use min-width and width for a class. Is that possible?
Can I use the following code :
.container
{
min-width:1000px;
width:100%;
height:100%;
overflow:hidden;
}
Thanks
I know this is not possible but can anyone provide a theory as to why Java chose not to support this? I am asking because I just ran into a situation where I think it would be nice to have.
Say I have a structure like:
class SomeObject
Public Name as String
Public Created as Date
...
end class
I have a List(of SomeObject), which has multiple entries for each name with different times. I'd like to select the newest (largest Created value) object for each Name.
Given:
Name Created
A 2010-04-16 *
A 2010-04-15
B 2010-04-12
B 2010-04-13 *
C 2010-04-16 *
I'd like to pick the objects with the * beside them.
Is this possible using LINQ?
Hi,
Is it possible to have Javascript compute a timestamp returned from php's time() function and present it in a readable format such as "Sun, 18th April 2010 at 4:00 pm"?
Thanks:)
Is it possible to detect, on the client side, whether the user is using an encrypted page or not?
Put another way -- I want to know if the URL of the current page starts with http or https.
In the context of Scheme and CPS conversion, I'm having a little trouble deciding what administrative redexes (lambdas) exactly are:
all the lambda expressions that are introduced by the CPS conversion
only the lambda expressions that are introduced by the CPS conversion but you wouldn't have written if you did the conversion "by hand" or through a smarter CPS-converter
If possible, a good reference would be welcome.
I haven't ever before created custom component in jsf so I've noticed it only now that methods like encodeBegin(), encodeEnd() etc accept FacesContext parameter.
FacesContext instance can usually be received with FacesContext.getCurrentInstance().
So, I wonder whether these methods have FacesContext parameter just for convenience or some different objects can be passed there (maybe from external resources..). If the latter is possible then could you give an example pls.
I have nearly 20 tables.I want to draw datamodel diagram for this table.But it take more time.Is it possible to draw the diagram using any datamodel software.My constraint is i give dataonly it draw the diagram automatically,please suggest any softwsre related to my constraints
hey im writing a c# flv2mp3 converter and i could need some help.
flv is a container type, wich means that when i get all audio tags together, i just have have to reassemble them, or do i habe to save them in a special way? is it possible at all?
and i do not want any flvextractors i wanna do it by myself
Why did programmers ever start using status codes? I mean, I guess I could imagine this might be useful back in the days when a text string was an expensive resource. WAYYY back then. But even after we had megabytes of memory to work with, we continued to use them. What possible advantage could there be for obfuscating the meaning of an error message or status message behind a status code?
there is an example provided on how to add tags to a model with is_taggable, and it works very nice (working in 5 minutes)
Now, I also need the opposite, show all records that are tagged with a certain word.
Something like:
ModelWithTag.find_by_tags "foo"
or
find_all_tagged_with "foo"
Is this possible with is_taggable ?
Hi
Can anyone tell me if its possible to create a NSTimer with a constantly changing NSTimeInterval?
Basically, I want to create just on NSTimer object, and then change the time interval depending on the swipe velocity.
Is it possible to write some conditional "if" statements in htaccess based on the server name/path?
I know I can use <IfModule> but that doesn't solve the problem when the development and production server are identical.
thanks
I'm using Netbeans 6.8 and the finest-grained way to run my JUnit tests from the IDE appears to be to right-click a class under Test Packages and click Test File
In Eclipse it's possible to narrow the scope to testing an individual method in a given test harness. How do I test only one individual test out of a harness in Netbeans?
Hi folks,
Is it possible to step through the official ASP.NET MVC 2 code via using the Symbol Server thingy in visual studio 2010?
I know I can download the full open source MVC code from codeplex, build it and then get my code to reference THAT codebase dll's...
But i'm wondering if this could be achieved by using the Symbol Server stuff instead?
If so, can someone go through some steps please, about how to achieve this?
Is it possible to call a page by using
HtmlPage.Window.Navigate("ShowMedia.aspx", "_blank");
from my silverlight code behind?
The ShowMedia.aspx is located in my
<projectName>.web
I have used perf4j to calulate the performance of the process. Now I want to make the graph for that file. Is it possible to make it without using google API or any other metohd that can be used
Thank You
The dis module can be effectively used to disassemble Python methods, functions and classes into low-level interpreter instructions.
I know that dis information can be used for:
1. Find race condition in programs that use threads
2. Find possible optimizations
From your experience, do you know any other scenarios where Disassembly Python feature could be useful?