multi

Is there any charting library for IPhone can build a chart like bloomberg financial's chart?

Dear all, I am finding a charting library for IPhone which can build a chart similar to Bloomberg Financial' chart but still not find out yet, Core-Plot is a powerful library but it is not support zoom using multi-touch. Is there anybody know about this please help me! You can watch this video to know about Bloomberg's chart: http://ww...

Is reading a double an atomic operation in linux?

I'm creating a simple server which stores several variables globally. On occasion these variables will update and during this time the variables are locked from other threads. Each client who accesses the server is granted their own thread, but has no way to change these variables and are essentially readonly. My question to the internet...

Eclipse PropertySheetPage - Can it support a multi line property?

I want to use the Eclipse AdvancedPropertySection which uses PropertySheetPage to display and edit properties, but some of my properties are multi line (e.g. Description). Problem: I can't get the PropertySheetPage to display multi line properties. It displays them as a single line, like this: I tried using WrapTextPropertyDescripto...

Multi language - large scale social network

What is the best way to implement multi-language support for a social (100% user content) website. Currently it's being developed in PHP in english with multi support. The plan is to keep adding in as many languages as possible as the site grows. There are 200 identified languages to target 1 by 1. Two content types: System content -> t...

Xna racing game on multi monitor setup or alternatives via C#

Hello, I'm developing a car game where a person uses a wheel on a pc connected to two projectors. One projector should show the front view and the other the view from the back of the car. The object of the game is to park the car in a parking place. I decided to go with XNA and Racing game starter kit. I don't know how to render two cam...

Hardware device controller application design suggestions

hallo, I 'm designing an application that connect a 3rd party hardware controller server to listen status messages and also send commands to 3rd party system.. In this statue what's the best approach?? i thought; developing a windows service that will register a remoting channel which other applications connect to send commands and l...

How to implement Bounding Box(Multiple selection of objects) and grouping as implemented in Photoshop using WPF( using SVG/PVG) /Winforms?

Hello Everybody, I am working on WPF with SVG,PVG(these are the format used ofr WPF, not using XAML) for a Publishing application. I want to implement the multiselect of different objects and scaling to them and also grouping them and implementing rotating and moving and sacling the objects as group . I want the exact/some pont near to...

What are alternatives to using JRDF?

Im working on a Multiagent based project and currently looking at implementing a JRDF for agents to store and analyse data...JRDF was an option as it allows agents to add data dynamically without having to create tables ... Is there an alternative to storing data other than a JRDF based database. The nature of data to be stored is huge...

What's the equivalent of getSelected() (mootools 1.1)

In mootools 1.2, getting selected options in a multi select is easy using getSelected: // code 1 $('my_select').getSelected().each(function(opt) { // stuff }); Is there an equivalent of that in mootools 1.1 or do I have to use getChildren() and check whether it has been selected? What I have at the moment: // code 2 // get all ...

How to insert multi files to a document when indexing using dtsearch

Hi, in the examples of dtsearch in "C:\Program Files\dtSearch Developer\examples\cs2\ado_demo" folder, each record has only one file. But I have a many files, and i don't know how to add these files to this document while indexing. Anybody know how ? thanks ...

Add Multi line text field to sharepoint

Hi, I am trying to add a multi-line text field to a document within Sharepoint but can't currently figure out how to do it. Below is the code i have which works for most of the fields. SPFile file = folder.Files.Add(*snip*); file.Item[guid] = stringValue; file.Item.SystemUpdate(true); The document adds with no issues the ...

google maps api (multi adresses)

Hello. I have problem. How to get multi markers, with adress information, not lat, long For example: markers: [{ adress: 'UK, London' },{ adress: 'City, street, adress' },{ adress: 'Germany, Frankfurt' }] All markers are show to map. ...

Two Loops at almost the same time.

Hello everybody, i don't what this process is called, but i've seen that it's possible. what is this process called? basically, i have a method that has a loop, and in every iteration has a delay second. function myLoop(float delay) { for(int x=0; x<100; x++) { Print("Loop number: " + x); TimeDelay(delay); ...

Multiline regexp with <? and ?> ?

here is my code : <html> titi <? print "toto"+"<br>" ?> <html> and i want only the lines between the <? and ?> the only regexp thaht i've found was : <?.*\n*?\?> but it lacks the first <? so if anyone have any idea it drives me nuts ... Regards and thanks for all people. Bussiere ...

multi domain multi user blog

hi, i need to develope a multi domain multi user blog. can any one give me some guide line?. ...

php multi exec is slow (19 minutes?)

Hi all, I have a curl_multi_exec call to about 500 sites which it calls via an array loop: I am using the simplified code: http://github.com/kminkler/php-curl-multi/wiki but it gets VERRRY slow (19 minutes) towards the end... do I need to remove the handle every time is this a memory issue; Would you rec. writing a C++ curl routine...

C# Multithread multiclass gui app, am I doing this right?

Hello I created the following project to show you guys how I plan to do things. But my main project will be bigger and will have multiple classes. I'm just trying to get this to work properly so I know I'm using good practice when coding. ok, lets begin :), so my form has a button called "button1" and a text box called "textBox1" and I...