Posts

Excel VBA: inserting WHEN formula into specific range of cells with variable changing column -

hello dear stackoverflow users, my issue regarding inserting formular via macro specific range of cells. again, again , again. so basic function of formula should following: =when('zek '!f3="x";"6";when('zek '!g3="x";"8";"1")) in macro has change column next specific range. happening in loop i growing. meaning --> =when('zek '!$f$"& i+2 &"....... or in other syntax should work. try not, thats why need help. this initial try exchanged literally strings: sub 123() dim a,b,c string = 1 b = 6 c = 8 .... 'used , declared variables k, x, f, a, b, c range(cells(k + 2, 5), cells(k + 27, 5)).formular1c1 = _ "=when('zek'!$f$" & f & "=" & x & ";" & & ";when('zek'!$g$" & f & "=" & x & ";" & b & ";" & c & "))" end sub with run...

exchange server - Recording B2B Call Using UCMA 4.0 / Lync 2013 -

i wrote ivr using ucma 4.0, incoming call answered using userendpoint , endpoint create back call callee. want record avcall. ca do? read can create conference , create b2b call conference caller , callee , record audio using applicationendpoint want example or simpler way. can record calls exchange if no please show me example. thanks ucma b2bcall's media-less. i.e. rtp stream goes directly between source , destinations of call. ucma can record calls terminated @ ucma application (basically non b2bcalls). ucma b2bcall's in signally path (sip) only. this why it's complex record b2bcalls , reason why have turn call conference call. can add (hidden) participant conference can use record with. you can @ microsoft ucma reference application contactcenter example of conferencing support , adding hidden participant. once have hidden participant using record easy.

caching - Edge isn't checking if HTML document has been changed -

i got problem edge isn't checking if html document has changed. firefox , chrome check this. when update html document, page correctly shown in firefox , chrome, edge still show old page. does have workaround this? ctrl + f5 should refresh browser cache , reload page. check https://en.wikipedia.org/wiki/wikipedia:bypass_your_cache . there's no edge browser mentioned here, same principle should work.

Convert string representation of list to list in Python -

i wondering simplest way convert string list following list : x = u'[ "a","b","c" , " d"]' even in case user puts spaces in between commas, , spaces inside of quotes. need handle to: x = ["a", "b", "c", "d"] in python. i know can strip spaces strip() , split() using split operator , check non alphabets. code getting kludgy. there quick function i'm not aware of? >>> import ast >>> x = u'[ "a","b","c" , " d"]' >>> x = ast.literal_eval(x) >>> x ['a', 'b', 'c', ' d'] >>> x = [n.strip() n in x] >>> x ['a', 'b', 'c', 'd'] ast.literal_eval : safely evaluate expression node or string containing python expression. string or node provided may consist of following python literal structures: strings, numbers, ...

android - Issue with Nexus 6P : configure 60 fps preview session using camera 2 api -

i try implement high speed capture session click on button. here state callback: private cameradevice.statecallback mcameradevicestatecallback = new cameradevice.statecallback() { @override public void onopened(cameradevice cameradevice) { mcameradevice = cameradevice; startpreview(); } @override public void ondisconnected(cameradevice cameradevice) { mcameraopencloselock.release(); cameradevice.close(); mcameradevice = null; } @override public void onerror(cameradevice cameradevice, int error) { mcameraopencloselock.release(); cameradevice.close(); mcameradevice = null; } }; open camera method: private void opencamera() throws cameraaccessexception { cameramanager manager = (cameramanager) context.getsystemservice(context.camera_service); try { mcameracharacteristics = manager.getcameracharacteristics(string.valueof(currentcamid)); } catch (cameraacce...

javascript - Auto trigger mouse click event on graph drawn from starting to ending of the graph? -

graph1 = new links.graph(document.getelementbyid('adaslinechart1')); graph1.draw(data1, options1); links.events.addlistener(graph1, "selectitem", function(event) { }); i looking auto trigger of graph mouse click event programmatic starting ending of graph without manual mouse click, sample: function counter(){ //trigger graph event similar mouse on click event. }

java - Class.forName() is not working with a particular class -

i trying load java reflection bunch of classes. seems working fine (i handling exception if class not found). however there particular class raising exception not thrown call class.forname() internal method , cannot catch it. here code: try { url url = class.forname(qualifiednameoftheclass); } catch (classnotfoundexception ex) { // ok class not found can handled } catch (exception e){ // catch every other exception try strange exception } so code working, using on lots of classes , it's working (sometimes finds doesn't). however there 1 case not working , cannot understand why. if qualifiednameoftheclass = sun.security.krb5.scdynamicstoreconfig code raising exception: exception in thread "mythread-1" java.lang.unsatisfiedlinkerror: no osx in java.library.path @ java.lang.classloader.loadlibrary(classloader.java:1886) @ java.lang.runtime.loadlibrary0(runtime.java:849) @ java.lang.system.loadlibrary(system.java:1088) @ ...