Posts

Showing posts from August, 2011

excel - VBA Break Command bound to a key -

i'm looking disable break (or pause) key in vba, have come against 2 walls. how tell vba function key being pressed what on.key {name} interrupt? my workbook forces users have macros enabled setting every sheet xlveryhidden when workbook closed, , setting them visible when opened (and various other bits centered around logging in areas of workbook), meaning vba has used. however, @ points in "workbook_open" routine, if interrupts program, leaves login access vunerable , not want this. i want able bind interrupt command key combination desire, know is, leaving break key disabled. thanks in advance you can via command application.enablecancelkey = xldisabled . this link explains pretty well.

iOS Localization Doesn't Work -

i'm trying localise app, added language want localize in main project, , changed string in new .string files of main storyboard. however, when load app in emulator configured foreign language - string not change. i did clean , rebuild, didn't work. any suggestions on i'm missing? from answer, can't see did wrong. i recommend use tutorial , check out if made steps. check out tutorial: localization tutorial ios raywenderlich.com

java - How to set directory in antcallbacktask? -

in ant task in ant, have property named 'dir' can specify base directory used in called target. looking similar in 'ant callback' task. how can set directory in ant callback <antcall> , <antcallback> tasks can used call other targets within same file. <antcallback> has attributes of <antcall> except antcallback allows properties of called target accessed in calling target. more details, refer antcall , antcallback however, <ant> task used call target in ant file. hence, dir attribute comes significance.

javascript - jQuery Accordion Menu - Keep Active Menu open -

i can not keep menu opened , having problem follow link of menu instead to slide down. slide down should done right floated counter. the code keep opened @ current page $(document).ready( function() { $('#cssmenu ul li.has-sub').parent().show(); $('#cssmenu ul li.has-sub ul').show(); $('#cssmenu li.has-sub ul').show(); }); my example code: http://jsfiddle.net/5abcc/ thanks! add open class active ul like, html <li class='has-sub open'><a href='javascript:;'><span>company</span></a> <ul> <li><a href='javascript:;'><span>about</span></a></li> <li class='last'><a href='javascript:;'><span>location</span></a></li> </ul> </li> script $(document).ready( function() { $('#cssmenu li.has-sub.active ul').show(); }); to add click event on span t...

php - Warning: mysqli_stmt::bind_param(): Number of variables doesn't match number of parameters in prepared statement in C:\User..\ on 148 -

hello i'm inserting new column collegename, branch, , gender it's giving me error... warning: mysqli_stmt::bind_param(): number of variables doesn't match number of parameters in prepared statement in c:\users\raj\phpstormprojects\usercake\models \class.newuser.php on line 148 what's mean? actually inserting new column database college , branch , year , , gender goes when register myself it's shows message registration submitted shows error message wells as?? i'm supposed wrong please help? here source code: <?php class user { public $user_active = 0; private $clean_email; public $status = false; private $clean_password; private $username; private $displayname; public $sql_failure = false; public $mail_failure = false; public $email_taken = false; public $username_taken = false; public $displayname_taken = false; public $activation_token = 0; public $success = null; function __construct...

encryption - how do I know number of padded space in ciphertext -

is way find out how many padded space in ciphertext? using rjindaal 256 bit encryption. problem: on decryption, getting error saying "padding invalid , cannot removed". using same initialization vector , encryption keys both encryption , decryption.

c++ - Loading WAV file with XAudio2 -

i'm writing program can load , play wav file, i'm using xaudio2 library, started writing msdn.microsoft.com, , have copied code msdn , still not work. don't know problem. when try play sound createsourcevoice have xaudio2_e_invalid_call error. i'll grateful help. code: my temporary main: int _tmain(int argc, _tchar* argv[]) { tchar * strfilename = _text("chimes.wav"); //creating instance od xaufio2 engine ixaudio2* pxaudio2; ixaudio2masteringvoice* pmasteringvoice; ixaudio2sourcevoice* psourcevoice; hresult hr; if ( failed( hr = xaudio2create( &pxaudio2, 0, xaudio2_default_processor ) ) ){ cout << "xaudio2create failed!\n"; } waveformatextensible wfx = { 0 }; xaudio2_buffer buffer = { 0 }; //open audio file createfile handle hfile = createfile( strfilename, generic_read, file_share_read, null, open_existing, 0, null ); dword dwchunkposition = 0; dword dwchunksize; if (invalid_handle_value ...

ios - Get 2G and 3G Network details with CellID in iPhone SDK -

i need cellid,lac etc using iphone sdk. i have used coretelephony mentioned in given link : get cellid, mcc, mnc, lac, , network in ios 5.1 but getting cell count of 0 , unable cellid,lac. getting mcc , mnc mentioned in above link. i need cellid , lac of current network cell iphone connected. please help

assembly - NASM compilation on DOSBox -

i'm trying link assembly files, i'm having problems. use nasm , make object file with: nasm program.asm -f bin -o program.exe code book %include "io.mac" .data name_prompt db "please type name: ",0 out_msg db "your name in capitals is: ",0 .udata in_name resb 31 .code .startup putstr name_prompt ; request character string getstr in_name,31 ; read input character string putstr out_msg mov ebx,in_name ; ebx = pointer in_name process_char: mov al,[ebx] ; move char. al cmp al,0 ; if null character je done ; conversion done cmp al,’a’ ; if (char < ’a’) jl not_lower_case ; not lowercase letter cmp al,’z’ ; if (char > ’z’) jg not_lower_case ; not lowercase letter lower_case: add al,’a’-’a’ ; convert uppercase not_lower_case: putch al ; write character inc ebx ; ebx points next char. jmp process_char ; go process next char. done: nwln .exit this code work me @ win...

c# - Getting code-first entity framework Azure back in sync -

i've been playing azure , mvc5/ef6 code first migrations , managed find wouldn't know how fix if production. here's did: create model named mymodel 1 property: propa enabled migrations , created migration named initial published azure - great - works fine! deleted initial migration , added second property mymodel named propb created new migration called initial2 published azure - azure crashing because can't find field propb i've tried setting automaticmigrationsenabled = true; didn't make difference. so question is: if production database , happened - how azure database in sync , migrate changed models? manually add code migration in "up" , "down" methods sync code required

How does a (function (){})(); work?(Javascript structure) -

this question has answer here: what purpose of wrapping whole javascript files in anonymous functions “(function(){ … })()”? 9 answers i'm using an example project and, while playing around , going javascript code, found function: (function () { ... ... lot of code ... ... ... scrolltopage : function (page, time) { time = time || 0; if (page < 0) page = 0; else if (page > this.pages.length - 1) page = this.pages.length - 1; this.changetarget(this.pages[page]); this.scrollto(-page * this.pagewidth, this.y, time); } ... ... })(); i know how works. idea of why want use this, it's because want use scrolltopage function outside of function navigate on button click. experience have in javascript in unity3d different of web scripting i'm trying out now. so this: ...

Unable to receive array elements passed in PHP -

i trying send array 1 php file in following manner: $question_records=findquestions($db,$student_id,$story_id,$call_number); echo count($question_records).'<br/>'; $i=0; foreach($question_records $record=>$question) { $questions_file[$i]=$question['file_name'].'_'.$question['concept_tested']; $questions_id[$i]=$question['question_id']; echo "array elements:</br>"; echo $questions_file[$i]. "</br>"; $i++; } output: array elements: q1_comp q2_vocab q3_cri function makecall makecall($call_id,$phone,$questions_file,$questions_id,$student_id,$story,$call_number); function makecall($call_id,$phone,$questions_file,$questions_id,$student_id,$story,$call_number){ $questions_file= urldecode(http_b...

c++ - deep_const_ptr copy constructor -

template <class t> class deep_const_ptr { t * priv; public: deep_const_ptr(const deep_const_ptr & p_other); // copy ctor t const * operator->() const; t * operator->(); ..... // other crap }; void cheese::dothings(const deep_const_ptr<cheese> p_other) { deep_const_ptr<cheese> awaygoestheconst(p_other); // don't want work. awaygoestheconst->doterriblethings(); } i'd block copy construction const non-const. maybe doesn't make sense? might possible new c++11 / 14 / 17? edit: yes, issue if don't give copy constructor, stl containers wont work. , i'd quite need them work. edit: deep_const_ptr solution came when faced problem of stl containers , const objects. class shape { private: std::list<vertex *> m_vertices; public: virtual void std::list<vertex*> * const getvertices() { return &m_vertices; } virtual void std::list<vertex const *> * ...

jquery - sidebar collapse status, save cookie -

this question follows previous post located here: jquery sliding side bar right left resizing content i have managed sidebar how want, want save cookie of state sidebar in (whether collapsed, or expaned.) when user refreshes page it's still collapsed/expanded depending on decide =) jsfiddle.net/zl56h/ jsfiddle not display correctly alternatively can view/download have far here http://www.mediafire.com/view/zor5r5utm6v394t/sidebar.htm

java - osgi bundle remains lazy and doesn't start automatically -

Image
i need bundle start automatically , load dll stays in lazy state , activator doesn't load dll's . there safe way configure osgi bundle start , activate on startup? right click project --> run configurations --> bundles --> select appropriate bundle --> set auto-start property --> true

.net - Unpexpected Result of Division C# -

i tried doing following: math.log10(11/10); expected answer 0.04139268515822504075019997124302 c# answer 0.0 really strange!! missing in finding log? need help you should put like math.log10(11.0/10.0); otherwise 11 / 10 result in 1 (integer division) , logarithm in 0 correspondingly

delphi - How to make certain text bold in MS Word -

i using following code insert table 2 cells in ms word using delphi xe5. font table's cells pretty straight forward. except 1 word. need word bold while rest not. please me adjust code can make 1 word bold. wrddoc.tables.add(wrdselection.range,3,2); wrddoc.tables.item(3).rows.alignment := wdalignrowleft; wrddoc.tables.item(3).columns.item(1).setwidth(36,wdadjustnone); wrddoc.tables.item(3).columns.item(2).setwidth(379,wdadjustnone); wrddoc.tables.item(3).borders.item(wdborderleft).linestyle := wdlinestylenone; wrddoc.tables.item(3).borders.item(wdborderright).linestyle := wdlinestylenone; wrddoc.tables.item(3).borders.item(wdbordervertical).linestyle := wdlinestylenone; wrddoc.tables.item(3).borders.item(wdbordertop).linestyle := wdlinestylenone; wrddoc.tables.item(3).borders.item(wdborderbottom).linestyle := wdlinestylenone; wrddoc.tables.item(3).borders.item(wdborderhorizontal).linestyle := wdlinestylenone; wrddoc.tables.item(3).cell(1,1).range.insertafter(...

java - Getting links out of a string and putting them in an arraylist -

so, wanna make java program alerts me when there's new thread on subreddit. i'm new, let's this. i managed put enitre html in 1 string, want index links in string , put them in arraylist. then i'll create method checks if link in arraylist, , if it's not, there's new thread. so let's i've got string; webpage. how href="*" out of string, , arraylist?

New Position of a image after Animation in android -

iam using translate animation bounce effect after animation finish want new top margin of image still old top margin of image 0 question how new margin my main activity is. package iotechsolutions.location.ira; import android.app.activity; import android.os.bundle; import android.util.log; import android.view.menu; import android.view.view; import android.view.animation.animation; import android.view.animation.animation.animationlistener; import android.view.animation.animationutils; import android.widget.imageview; import android.widget.linearlayout; import android.widget.linearlayout.layoutparams; import android.widget.textview; import android.widget.toast; public class mainactivity extends activity { animation logoanimation; // moving logo animation textanimation; // moving text imageview mainlogo; textview logotext; linearlayout.layoutparams param; view view; ...

Bash command in ruby script - Error "Command not found" -

i need run bash command (ls -al) in ruby script. command launched in different folders start letters "my". dir.glob("#{path_to_search}/my*",file::fnm_casefold) |path| command = path + "/ls -al" output_result = (%x(#{command})) end i receive strange error: "command not found: /home/user/my123/ls -al" "command not found: /home/user/my222/ls -al" "command not found: /home/user/my423/ls -al" the iteration goes well. problem command you generate commands inproperly. should be: command = 'ls -al ' + path

html - Bootstrap 3 Horizontal Nav adding anchor -

getting off behaviour bootstrap horizontal navigation, reason seems adding anchor link first <li><!-- here --></li> element. code: <li class='submenu'> <a href='#'> <img src='{{ url::asset('img/menu/performance.png') }}' /> performance <ul class='nav'> <li><a href='#'>abc</a></li> <li><a href='#'>abc</a></li> <li><a href='#'>abc</a></li> <li><a href='#'>abc</a></li> </ul> </a> </li> what chromes inspector says: <li class="submenu"> <a href="#"> <img src="https://xxxxxx/img/menu/performance.png"> performance </a> <ul class="nav" style="display: block;"><a href="#"> </a><li...

apk - How to get device manufacturer keystore certificate in android -

how can device manufacturer keystore certificate sign app apksign.jar in android? how device manufacturer keystore certificate sign app apksign.jar in android buy lots of guns , take hostages, part of ransom demands being given device manufacturer's firmware signing key. note technique against law in various jurisdictions. otherwise, no device manufacturer gram of common sense hand on firmware signing key. you welcome sign own rom mod own signing key, in case can use signing key sign other apps.

android - Cant make ScrollView to work -

i have layout filled edit text, purpose save user's inputs, have lot's of them , want put more don't have enough space in 5'' phone make them appear, , need scroll in order see other inputs.at moment have xml can't make scrollview work! , need make work entire view. can guys me out , tell me doing wrong ? thanks! <scrollview xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/scrollview01" android:layout_width="fill_parent" android:layout_height="fill_parent" android:fillviewport="true" > <relativelayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="@color/teste" android:gravity="bottom" android:paddingbottom="@dimen/activity_vertical_margin" androi...

java - Jcombobox with jtable issue for rows -

when select first (combobox) column of first row, , again select second (combobox) column of second row, same value comes in second combo box. tried many ways, did not found solution. // column11.setcellrenderer(new mycomboboxrenderer(str)); // column11.setcelleditor(new mycomboboxeditor(str)); //column.setcelleditor(new comboboxcelleditor(combobox2)); // combobox2.setselecteditem("s"); //column11.setcelleditor(new defaultcelleditor(combobox2)); //set tool tips sport cells. // defaulttablecellrenderer renderer = // new defaulttablecellrenderer(); // renderer.settooltiptext("click combo box"); // eachroweditor11 roweditor2 = new eachroweditor11(tablemappingsheet); // roweditor2.seteditorat(3, new defaultcelleditor(combobox2)); // roweditor2.seteditorat(4, new defaultcelleditor(combobox2)); // roweditor2.seteditorat(5, new defaultcelleditor(combobox2)); ...

multithreading - chat in java not synchronized (sockets, threads) -

i'm trying figure out way instance of server negotiate between 2 clients creating chat thread between them. i created project, , "almost" works... seems there buffer of synch problem. when writing line in 1 side (i.e client#1), doesn't pass other side (i.e client#2), after client#2 trys pass line too. i know there might better ways implement this, i'd understand what's wrong my code. your great! the code: server import java.io.*; import java.net.*; public class server { public static void main(string[] args) { int id = 1; system.out.println(); system.out.println("server"); try { serversocket serversocket = new serversocket(4321); while (true) { socket client1socket = serversocket.accept(); socket client2socket = serversocket.accept(); system.out.println("clients connected ports: \n" ...

linux - Unwelcome DELAY when using arecord with aconv -

arecord -f cd -d default:card=intel -| avconv -i pipe:0 -acodec libmp3lame -aq 128k g3-$dt-$$.mp3 i'm trying record via laptop mic. there's unwelcome pause before start of recording. avconv version 0.8.10-6:0.8.10-1, copyright (c) 2000-2013 libav developers built on feb 5 2014 03:52:19 gcc 4.7.2 recording wave '-' : signed 16 bit little endian, rate 44100 hz, stereo <delay> [wav @ 0x21b4300] max_analyze_duration reached input #0, wav, 'pipe:0': duration: 03:22:53.94, bitrate: n/a stream #0.0: audio: pcm_s16le, 44100 hz, 2 channels, s16, 1411 kb/s output #0, mp3, 'g3-monday-april-14-2014-06_38_07pm-15308.mp3': metadata: tsse : lavf53.21.1 stream #0.0: audio: libmp3lame, 44100 hz, 2 channels, s16, 200 kb/s stream mapping: stream #0:0 -> #0:0 (pcm_s16le -> libmp3lame) press ctrl-c stop encoding ^caborted signal interrupt...te= 51.7kbits/s size= 94kb time=14.86 bitrate= 51.6kbits/s vi...

Powershell Group Values Winforms Charts -

Image
im having bit of problem. trying achieve this: http://www.codeproject.com/articles/168056/windows-charting-application first chart on page. have code here ### load assemblies [reflection.assembly]::loadwithpartialname("system.windows.forms") [reflection.assembly]::loadwithpartialname("system.windows.forms.datavisualization") $servers = get-xaworkergroup -workergroupname agresso | select servernames -expandproperty servernames $sessiontable = @() foreach ($server in $servers) { $activesessions = (get-xasession -servername $server | ?{$_.state -eq "active"}).count $disconnectedsessions = (get-xasession -servername $server | ?{$_.state -eq "disconnected"}).count $listeningsessions = (get-xasession -servername $server | ?{$_.state -eq "listening"}).count $looparray = "$server,$activesessions,$disconnectedsessions,$listeningsessions" $sessiontable += $looparray } ### create chart $chart = new-object sys...

Is it possible to declare variables procedurally using Rust macros? -

basically, there 2 parts question: can pass unknown identifier macro in rust ? can combine strings generate new variable names in rust macro? for example, like: macro_rules! expand( ($x:ident) => ( let mut x_$x = 0; ) ) calling expand!(hi) obvious fails because hi unknown identifier; can somehow this? ie. equivalent in c of like: #include <stdio.h> #define fn(name, base) \ int x1_##name = 0 + base; \ int x2_##name = 2 + base; \ int x3_##name = 4 + base; \ int x4_##name = 8 + base; \ int x5_##name = 16 + base; int main() { fn(hello, 10) printf("%d %d %d %d %d\n", x1_hello, x2_hello, x3_hello, x4_hello, x5_hello); return 0; } why say, terrible idea. why ever want that? i'm glad asked! consider rust block: { let marker = 0; let borrowed = borrow_with_block_lifetime(data, &marker); unsafe { perform_ffi_call(borrowed); } } you have borrowed value explicitly bounded lifetime (marker) isn't...

database - App Inventor TinyWebDB connect -

can connect laptop or desktop tinywebdb service? need mobile , laptop connected same database. see link creating custom tinywebdb service . you can access database using service url, example http://appinvtinywebdb.appspot.com test service provided app inventor.

mysql - Get to 2 decimal places -

i have line of query here if (type = 1, (if(isnull(users), '', ((sum(actual) / 1) * 0.04/12) * if(users = "user", booked/(36/12),'') )) , 'false') the example output 123.3333333 i want output 2 decimals it'll 123.33 should place truncate or round command? thank you! you can use truncate() truncate(123.3333333, 2) = 123.33 if (type = 1, ( if(isnull(users), '', truncate( ( (sum(actual) / 1) * 0.04/12) * if(users_0.user_name = "user", booked/(36/12),'') ),2) ) , 'false')

c++ - default template class argument confuses g++? -

yesterday ran g++ (3.4.6) compiler problem code have been compiling without problem using intel (9.0) compiler. here's code snippet shows happened: template<typename a, typename b> class foo { }; struct bar { void method ( foo<int,int> const& stuff = foo<int,int>() ); }; the g++ compiler error is: foo.cpp:5: error: expected `,' or `...' before '>' token foo.cpp:5: error: wrong number of template arguments (1, should 2) foo.cpp:2: error: provided `template<class a, class b> struct foo' foo.cpp:5: error: default argument missing parameter 2 of `void bar::method(const foo<int, int>&, int)' apparently, default argument not accepted when written way, , compiler assumes instead of second template argument new function argument specified, expects default value because stuff argument has one. can compiler creating typedef, , compiles fine: template<typename a, typename b> class foo { }; struct bar { ...

how to make a video call using pjsip and android -

i working on "voice on ipi android application using pjsip library; want application handles video call. is there document me it? i'll appreciate help. thanks in advance calling intent there no difference, because there no video calls in android @ time of writing. video chat application using action_new_outgoing_call in likelihood, in action_new_outgoing_call broadcast receiver: bundle bundle = intent.getextras(); object calltype = bundle.get("android.phone.extra.calltype"); if video call,calltype integer of 2.

using ffmpeg headers with a c program -

i'm trying learn ffmpeg drangers guide (for school), have mac first thing did use macports , ffmpeg , sdl... now when i'm tried compile drangers code, compiler didnt recognize headers... used -i on gnu when compiling, , gave "whole/path/name..." headers, error on header missing... below put code corrections. i tried including headers error there header compiler can't find i tried both gnu (on console) , on xcode. // tutorial01.c // code based on tutorial martin bohme (boehme@inb.uni-luebeckremovethis.de) // tested on gentoo, cvs version 5/01/07 compiled gcc 4.1.1 // small sample program shows how use libavformat , libavcodec // read video file. // // use // // gcc -o tutorial01 tutorial01.c -lavformat -lavcodec -lz // // build (assuming libavformat , libavcodec correctly installed // system). // // run using // // tutorial01 myvideofile.mpg // // write first 5 frames "myvideofile.mpg" disk in ppm // format. #include "/opt/local/incl...

angularjs - angularAMD.bootstrap(app) line is throwing an exception in IE10 IE11 browsers but works in Google Chrome -

i trying implement lazy loading angularamd plunker please click reproduce in ie browser here code. please me... require.config({ baseurl: "js/scripts", // alias libraries paths. must set 'angular' paths: { 'angular': '//ajax.googleapis.com/ajax/libs/angularjs/1.2.0/angular.min', 'angular-route': '//ajax.googleapis.com/ajax/libs/angularjs/1.2.0/angular-route.min', 'angularamd': '//raw.github.com/marcoslin/bower-angularamd/v0.1.0/angularamd.min', 'ngload': '//raw.github.com/marcoslin/bower-angularamd/v0.1.0/ngload.min', 'restangular': '//cdn.jsdelivr.net/restangular/latest/restangular.min', 'underscore': '//cdn.jsdelivr.net/underscorejs/1.5.2/underscore-min' }, // add angular modules not support amd out of box, put in shim shim: { 'angularamd': ['angular'], 'angular-route': ['angular'], ...

Rails 4 - json.jbuilder with remotipart -

my application details rails 4.0 application remotipart gem remotipart (1.2.1) using json.jbuilder return response. using paperclip gem uploading file paperclip (~> 4.1) i have form remote: true , multipart: true . redering json.jbuilder template after submitting form. have ajax:success callback on form. when submit form without attachment renders json.jbuilder template , ajax:success callback works. if submit form attachment form gets submitted rendering json.jbuilder file. ajax:success callback doesn't work. i have been struggling issue since 2 days. thanks in advance i trying use hidden_field "format", :json but didn't work. after adding option :'data-type' => :json for form_for it worked.

Phonegap/Cordova Cannot be resolved to a type... Whenever eclipse want -

i'm creating phonegap mobile web applications , problem is, eclipse finds files needs, i.e. jar libraries , other cordova libraries.. let's imagine make clean , build.. or refresh , there boom... 60ish errors of "cannot resolved type", eclipse doesn't find anymore. it's okay ! i'll rebuild ! boom again, works... it's end of work day in france , i've spent entire day on refresh/clean & build buttons in eclipse i'm asking, has seen ? thank time ! you need make sure build cordovalib before build actual project. because made change framework dependency it's easier advanced users debug, , works other common android libraries. i recommend running clean on project, , not cordovalib. time should clean cordovalib , rebuild when you're upgrading cordova. also, may want turn auto-build off on eclipse. "feature" drives me nuts, since fails often.

c# - Serialization of objects and Reference Equality -

does .net runtime maintain object references when serializing sql session state/inproc session state; during serialization/deserialization? in following example, i'd expect references point same object. can explain why isn't case. e.g.: var list = new list<foo> { new foo { name = "foo" }, new foo { name = "bar" } }; var bar = list.single(x => x.name == "bar" ); session["list"] = list; session["bar"] = bar; var listdeserialized = (list<foo>)session["list"]; var bardeserialized = (foo)session["bar"]; assert.istrue(object.referenceequals(listdeserialized[1], bar)); // false /* class definition */ [serializable] public class foo { public string name { get; set; } } note: assume list , bar objects have been serialized/persisted sql. yes because uses binaryformatter serialization preserves object tree was. see details here: http://msdn.microsoft.com/en-us/library/aa47904...

visual studio 2012 - Passive Installation with WIX Toolset - Error 2726: Action not found: WelcomeDlg -

i created wix-setup webservices of tutorial: http://blogs.planetsoftware.com.au/paul/archive/2011/02/20/creating-a-web-application-installer-with-wix-3.5-and-visual.aspx i used visual studio 2012 , wix 3.8. msi started wix bootstrapper. the installation works perfectly, default-propertys set right , on update read registry. my problem installation aborted when use "/passive" parameter. dialogs can't loaded , propertys aren't set anymore. here logs: error using /passive parameter: msi (c) (d4:fc) [12:08:11:108]: doing action: welcomedlg aktion 12:08:11: welcomedlg. aktion gestartet um 12:08:11: welcomedlg. debug: error 2726: action not found: welcomedlg bei der installation dieses pakets ist ein unerwarteter fehler aufgetreten. es liegt eventuell ein das paket betreffendes problem vor. der fehlercode ist 2726. argumente: welcomedlg, , aktion beendet um 12:08:11: welcomedlg. rückgabewert 0. msi (c) (d4:fc) [12:08:11:108]: doing action: progressdlg aktio...