Posts

visual studio 2010 - InstallShield LE "Another version of this product is already registered" -

i'm running roadblock using installshield le in vs2010. second time running resulting setup.exe (with incremented version numbers), error another version of product registered by "incremented version numbers", mean changed minor version, build number , revision larger numbers in assemblyversion , assemblyfileversion of .exe (the dll's set "1.0.*") [assembly: assemblyversion("0.2.103.005")] [assembly: assemblyfileversion("0.2.103.005")] [assembly: assemblyinformationalversion("alpha 0.1 - 2/8/2011")] and updated product version in general information tab of installshield le setup project 0.10.0000 0.11.0000. i did come across instances of error message in other postings , on manufacturer's community support forum, did not find solution applies me. it turns out answer create entry on upgrade paths tab. when that, installshield le present file selection dialog. if have old installer, presumably c...

Trouble getting a serial connection communicating between C# and C -

i have microprocessor running c code , computer running c# code. trying them communicate through serial connection (system.io.ports.serialport). have no problems connecting, rather problems communicating. in c# have code send string "rr\n": myseiralport.writeline("rr"); in c (on microcontroller), have code such receive string: gets(str); note stdin stream serialport stream. here's things interesting. test, have bit of code causes led light if str equal "rr". allows observe whether or not microcontroller has received expected. when using hyperterminal, can type "r", type "r", press enter -> , led lights up, signaling has indeed read "rr" serial stream. however, when use above writeline function c#, no such result. i believe boils down functionality of hyperterminal sending character-by-character, , gets() function reads character-by-character until encounters newline. can shed light on how c#...

iphone - Under iOS, is there a way to determine which architecture was being executed in a crash report? -

given crash report (non-symbolicated) on ios, there way determine architecture (armv6 or armv7) being executed device? why ask? have received crash reports not associated archived dsym/executable. such, unable symbolicate them automated tools. wanting experiment changing recorded uuid in crash files release dsym preserved (the changes between 2 releases resource file changes[images], compiled code should identical). may allow me use automated tools symbolicate reports , extract meaningful crash data. dwarfdump reveals executable , dsym have match expected, shows there 2 architectures in each (fat binary) armv6 , armv7. able substitute uuids crash reports, need know architecture used device prior crash. to answer original question more directly (i hope), in crash log there "binary images" section. explicitly states architecture running, in: " binary images: 0x1000 - 0x167fff +appname armv7 <8195d6729b973c6190ab00f36dfb1dd6> /var/mobile/applic...

join .wav files in android -

i wondering if knew of library or code join .wav files in android os. thanks join 2 wav files java? refer above

python - Choosing a development stack for web based data vis/mining -

i know various folks in community think tool/language choices small team (3-5) developers working build simple data driven applications. want data munging/analysis/datavis. we have hadoop on data crunching end , have javascript on front end. ideally want level of r integration too. my best thought @ moment django, python, using r rpy (http://rpy.sourceforge.net/) , boto (http://code.google.com/p/boto/). are there other alternatives? there significant down/up sides trying go jvm route instead? tools use , why? instead of jvm check rapache , rserve also. well, have no idea though instead of using rpy.

c# - Algorithm to iterate TreeView nodes in reverese from the last leaf to root -

what best algorithm iterate winforms treeview control last leafs roots in reverse? c# the code below visit each node , traverse completely, depth-first, until comes leaf. then, unwinds stack, call dosomethingwithnode each node. depth parameter there show nodes returned in reverse order. void reversetraverse(treenodecollection nodes, int depth) { if (nodes == null) return; foreach (treenode child in nodes) { reversetraverse(child.nodes, depth+1); dosomethingwithnode(child, depth); } } to call it, assuming mytreeview treeview instance: reversetraverse(mytreeview.nodes, 1); note doesn't give deepest leaf nodes first, rather makes sure leaf node output before parent node. if tree looks this: node 1 node 1.1 node 1.2 node 1.2.1 node 2 node 2.1 node 2.1.1 node 2.1.1.1 node 2.1.2 the output order be: node 1.1 node 1.2.1 node 1.2 node 1 node 2.1.1.1 node 2.1.1 node 2.1.2 node 2.1 node 2 if want deep...

javascript - JQuery script conflict -

i using jquery lightbox gallery on page jquery slideshow , menu bar, whilst menu bar , slideshow work ok, lightbox not. conflict lightbox see http://concertorestaurant.creativeconnect.com.au/functions_gallery.html working example - menu slideshow http://concertorestaurant.creativeconnect.com.au/home.html appreciate help! i think 1 of javascript files , several of other files in wrong place, errors chrome: style-projects-jquery.css : failed load resource: server responded status of 404 (error: file requested not found.) sprymenubarhorizontal.css : failed load resource: server responded status of 404 (error: file requested not found.) plhim1.js : failed load resource: server responded status of 404 (error: file requested not found.) functions_gallery.html:16 : uncaught typeerror: object # has no method 'lightbox' thumb_image2.jpg : failed load resource: server responded status of 404 (error: file requested not found.) check out third , fourth lines in parti...