builder

Comparison of Hudson, CDash, CruisonControl, TeamCity for Continuous Integration / Builder

I found most people talk about Hudson for simple and free continuous integration. Now personally I'm not fond of its interface which I find very messy, and I found almost no one talking about CDash -- I love CMake and CTest seem nice too. Could you give for your favorite continuous integration server/builder/tester/dashboard a short des...

HTTP Builder/Groovy - lost 302 (redirect) handling?

Dear All: I am reading here http://groovy.codehaus.org/modules/http-builder/doc/handlers.html "In cases where a response sends a redirect status code, this is handled internally by Apache HttpClient, which by default will simply follow the redirect by re-sending the request to the new URL. You do not need to do anything special in order...

From where i can get Flash Builder Tutorial

HI All, I want to buy Flash Builder Video Tutoria, Can any one tell me from where i can get it ? :) ...

Dynamic form builder using asp.net sqlserver

Hello, I would like to build a dynamic form builder using asp.net with jquery and a sqlserver as backend. The approach I wish to use is to modify the table structure based on user request so I have a database which is structured as one would normally store data in sqlserver i.e. mostly a single table (barring consideration of sub-table...

iPhone App Development - mathematical sysmbols

I am quite the beginner - but I have a lot of experience with respect to Electrical Engineering and formulas - over 30 years worth! Trying to construct an app for the iPhone. Loaded the SDK, bought myself a Mac, got a couple of "Chapter" pages written by John at Alpha Aviation - who recomended I try this site. How do I - well for example...

UIImageView in UITableCell gets a weird size

Hi, I'm trying to place a UIImageView in a UITableViewCell. I create a special view called ProductView. In that view, I have several components, one of them being a UIImageView. I set this ProductView as content view of the UITableViewCell. Everything is drawn properly except the UIImageView. UIImageView gets scaled meaninglessly. It's...

Simulate named parameters in Java

I write a little web API which should it make easy to create URIs. Each resource class should contain a method createURI which takes the needed parameters. This method should use a helper method, populateUriTemplate, in the background to create an URI string. populateUriTemplate needs key value pairs to populate an URI template. In anoth...

Flash Builder undefinned elements generation

Hello, i just started using Flash builder 4 and i have a problem. As it is based on Eclipse I"m excepting, when I move mouse over undefined Method, class, variable that small Eclipse like window pops up and let shows me some choices for creating interface, class, renaming, classpath fixes etc. Any way to have this feature enabled in FL...

Flash Builder 4 Debugger Variables Not Updating

Damndest thing. Every once in a while, I'll make a change to some part of my Flash application, while working in Flash Builder 4, and when I click Debug Play, it starts running with the old code and the old variables, even though the code I'm looking at in the code window is the new, changed code. I can still advance step by step, but th...

Interface Builder doesn't work

I have a trouble with Interface builder: I downloaded the iPhone SDK 4 but Interface Builder doesn't work: when I open it, it close immediately. What can I do??? ...

How to connect Flash Builder 4 application to the remote mySQL database?

I want to get data from a database of my site. In the setting of the project point out Root URL: http://...:** But what to set in Root folder? Already tried the two dozen variants and Validate location does not work. ...

How do I insert a variable in MXML (Flash builder 4)?

I have a text box that receives data from XML. Has activated the service. Everything works fine if i use "taurus" instead myVar in {}. Now I want to change the field and depending on the button is pressed to receive different data. But nothing comes out. public var myVar:String = "taurus"; pr...

Can we modify the font of a Label created by IB from source code ?

Friends, I am a beginner and trying to know iphone programming basics. If I create a Label from Interface Builder and Name it as "Sample", can I change the font of this Label name from source code. Is it possible. I have no clue how to do it. Can anyone help me in doing this. Thanks In Advance, Anil ...

SSRS Report Builder 3.0 using behind a proxy server

Has anybody successfully used Report Builder 3.0 on a company network (that uses a proxy server) to access and build reports on a server that is not part of that network? We have forms authentication, and all works wonderfully in Report Builder 3.0 when the computer is ‘on the internet’ (NATted, say at home), but the works proxy just wo...

Java generics + Builder pattern

How do I call start() below? package com.example.test; class Bar {} public class Foo<K> { final private int count; final private K key; Foo(Builder<K> b) { this.count = b.count; this.key = b.key; } public static class Builder<K2> { int count; K2 key; private Builde...

Channel disconnected error message again and again - Flash builder 4

I'm trying to use server capabilities Flash Builder 4. But using different ways (i use 5 or 6 tutorial) get one and the same error within a week - "Channel disconnected - Channel disconnected before an acknowledgment was received." I looked up "gateway.php" and there was not even a closing tag ?>. Error repeated on a remote server (of co...

Spring: Using builder pattern to create a bean

I use ektorp to connect to CouchDB. The way to build an ektorp HttpClient instance is to use builder pattern: HttpClient httpClient = new StdHttpClient.Builder() .host("mychouchdbhost") .port(4455) .build(); I am relatively new to Spring. P...

Simple drag`n`drop in Flash Builder 4

I have a very simple question, but I can not find solutions to it. I need to add multiple images that can be moved with the mouse. This components NumericStapper must be in the group with the image and move together. http://img835.imageshack.us/img835/9341/323.jpg ...

Adding view created in Interface Builder to Progmatically created view - can it be done?

Ok so I've downloaded an open source project that I'm looking at customising for personal use (unless it turns into a great project in which case who knows) but in either case I'm having some difficulty. From a starting point I'm finding creating UI elements using progmatic methods rather difficult, just can't find a good tutorial out t...

In Interface Builder, can I change the parent view of a view without changing its position?

I have a .xib file that I have many views in. I would like to move these many views into a subview, to allow my code to easily move everything all at once under a new condition in my app (I want to slide the entire display up while a keyboard is displayed). When I drag a view (button, image view, label, etc) to a different view in order...