Posts

windows - Can you set WindowTitle in Launch4j where headerType==console? -

windows - Can you set WindowTitle in Launch4j where headerType==console? - i have launch4j config headertype=console. console displays nicely console output. title of console window total path executable launcher. there way set title of window , if how? eg if create batch file start "this window title" mylauncher.exe then console window this window title title. how can configure launch4j batch file not required? as far know there no setting within launch4j that. there windowtitle option, docs gui only. instead, think have few options. i'm going assume using windows since using batch , exe files. options: modify source launch4j add together phone call win32 api function setconsoletitle . you'd want recompile consolehead part , rebuild executable. utilize dev-cpp compiling. there similar project called winrun4j has alternative configuring console title , uses method. maybe launch4j owners can add together feature if requested, woul...

java - In intelliJ 13 ultimate, how do you increase the compiler maximum heap size? -

java - In intelliJ 13 ultimate, how do you increase the compiler maximum heap size? - i upgraded intellij thought 13 11. there used box under setting/java compiler on ride compiler maximum heap size. no longer there. stopping me compiling project "gc overhead limit exceeded." can tell me alternative or viable alternative? , info helpful. thanks. file -> setting -> compiler build process heap size (mbytes) java intellij-idea

sql - 3146 ODBC Call Failed - Access 2010 -

sql - 3146 ODBC Call Failed - Access 2010 - please reference code below... private sub save_click() on error goto err_i9_menu dim dba database dim dba2 database dim rst recordset dim rst1 recordset dim rst2 recordset dim rst3 recordset dim sql string dim dateandtime string dim filesuffix string dim folder string dim strpathname string dim x integer x = instrrev(me!listcontents, "\") phone call myprocess(true) folder = dlookup("[folder]", "locaton", "[loc_id] = '" & forms!frmutility![site].value & "'") strpathname = "\\reman\plantreports\" & folder & "\hr\paperless\" dateandtime = getdatetime() if nz(listcontents, "") <> "" set dba = currentdb filesuffix = mid(me!listcontents, instrrev(me!listcontents, "."), 4) sql = "select extension tbl_forms type = 'i-9'" sql = sql &...

tableview - How to send didSelectRowAtIndexPath back to view controller in swift -

tableview - How to send didSelectRowAtIndexPath back to view controller in swift - i have 1 viewcontroller , 1 tableviewcontroller in swift. can send nsmutablearray viewcontroller populate tableviewcontroller using segue. not know how send selected row view controller. code far: override func tableview(tableview: uitableview, didselectrowatindexpath indexpath: nsindexpath) { println("you selected cell #\(indexpath.row)!") // missing code sending selected row self.dismissviewcontrolleranimated(true, completion: nil) } any ideas? you can utilize delegation pattern. create protocol: protocol mydatadelegate { didselectrow(row: nsindexpath, data: mydata) } in table controller, add together property: var mydatadelegate: mydatadelegate? and in didselectrowatindexpath phone call delegate method: override func tableview(tableview: uitableview, didselectrowatindexpath indexpath: nsindexpath) { println("you selected cell #\...

famo.us - How do you blur an image using the famous framework? -

famo.us - How do you blur an image using the famous framework? - how blur image in famous? css equivalent of -webkit-filter: blur(5px); . bonus points illustration of how within famous/angular combination. i hoping like: <fa-modifier fa-blur="5"> <fa-image-surface fa-image-url="coolimage.png" fa-size="[640,320]"> </fa-image-surface> </fa-modifier> after actions i'd love able animate blur "un-blurred". so far way i've found utilize css. <fa-image-surface class="{{blurclass}}" fa-image-url="coolimage.png" fa-size="[640,320]" fa-click="imageclick()"> </fa-image-surface> in controller $scope.blurclass = "blur-in"; // start no blur $scope.imageclick = function() { $scope.blurclass = "blur-out"; // animate blur } in .css .blur-out { -webkit-filter: blur(8px); -webkit-transition:...

Xcode - Push Notification Json -

Xcode - Push Notification Json - i send force notification app in json format containing custom data, don't know how extract info it, or if json format correct. ( think because parse sends successfully) json parse: { "aps": { "badge": 1, "alert": "test", "sound": "" }, "url": "http://www.google.com" } appdelegate: func application(application: uiapplication, didreceiveremotenotification userinfo: nsdictionary!) { var notificationpayload: nsdictionary = userinfo["url"] nsdictionary! if (notificationpayload["url"] != nil) { var url = notificationpayload["url"] string var feed: feedtableviewcontroller = navigation.viewcontrollers[0] feedtableviewcontroller feed.messages.append(url) feed.sections.append("url") }else { pfpush.handlepush(userinfo) } } try instead: ...

css - Update Embedded Resource at runtime -

css - Update Embedded Resource at runtime - in asp.net mvc application, want update css file or js file contents embedded within dll dynamically @ runtime without restarting application. the reason application huge 1 take more time restart. in development phase changes in js or css don't want rerun application , wait minutes. please provide solution asap. embedded resources compiled item within assembly , cannot modified in run time @ all. same cannot modify bytes (compiled source code) within assembly in run time. may need think different architecture application wont need update embedded resource @ runtime. by way, may find link useful: programmically embed resources in .net assembly css asp.net asp.net-mvc embedded-resource