developing

Getting data from a QTreeWidgetItem inherited class

I have a class which inherits from QTreeWidgetItem and I intercept the click event. I need to get another object from inside MY QTreeWidgetItem when I click the tree row, how can I do that?? ...

Developing data flows in SSIS

When developing a Data Flow I don't always want to output the results to a destination - but I would like to see the data. Is there a way to attach a Data viewer to an output without having to have a destination? The file and raw destination have limitations on the data type they accept - and I don't want to attach conversions just to ...

Developing ArcGIS 9 extension - what do I need to get started?

I got the 'honor' to port an existing ArcGis 3.x Avenue script to ArcGIS 9.x ArcObjects. What do I need to get started? (So far I don't even have a copy of ArcGIS) From ESRI's developer website it seems I need to buy an EDN annual subscription for $1,500 - does this contain a developers copy of ArcGIS, or will I have to buy that, too? ...

how to fix an old coding style php script

hey there Maybe this isn't the right place to ask, but I was wondering if there is any advice on how to start fixing an old-fashioned-style php script. A few days ago I received an offer for developing an old PHP project, and by old-fashioned I mean the structure did not use OOP coding method and it doesn't have a definite framework...

Where to start to develop a nano web framework for language X?

I want to be able write a very very simple MVC web framework to understand how the things work behind well known frameworks such as Django or RoR. My aim is not to develop a new framework (I probably couldn't anyway :)) but to learn things as I "try" to write one. Can you recommend a book, article etc.? Where do I start for such a thing...

How to send Data to my App over USB Connection in Windows

Dear Forum, I have an app developed and deployed on my HTC mobile phone. I am able to debug this in eclipse with the USB driver SDK. The mobile phone appears now in the hardware manager ADB interface. I would now be able to send data through this USB connection to the mobilephone wich my app is able to handle. I know some tethering s...

developing an application compatible for multiple devices in blackberry

i made an application for bold 9000 but want to run on bold 9700 .can it ran successfully on that or i had to made changes in my application or made application from scratch for both devices? ...

Android touch events

I want to be able to touch (and hold) the screen, and have an event be triggered by this. This is what I have so far. class Player extends SurfaceView implements SurfaceHolder.Callback { public boolean onTouchEvent(MotionEvent event) { return true; } } Unfortunately this only recognizes when the touch is 'movin...

error while using regex_replace function from <tr1/regex>

#include <string> #include <tr1/regex> #include "TextProcessing.h" const std::string URL_PATTERN("((http://)[-a-zA-Z0-9@:%_\\+.~#?&amp;//=]+)"); const std::string REPLACEMENT("<a href=\"$&\"\">$&</a>"); std::string textprocessing::processLinks(const std::string & text) { // essentially the same regex as in the previous example, b...