Posts

dynamics crm 2011 - How to create Custom Fields in Activities in CRM -

crm :suppose have created custom field in "task" type activity.now want show custom field on activity view. possible ??? i think can't on activity view it's based on activity pointer hold common attribute across activity type. solution change view of task view.

matlab - SVM LibSVM Ignore Feature 1,3,5 when Predicting -

this question libsvm or svms in general. wonder if possible categorize feature-vectors of different length same svm model. let's train svm 1000 instances of following feature vector: [feature1 feature2 feature3 feature4 feature5] now want predict test-vector has same length of 5. if probability receive poor, want check first subset of test-vector containing columns 2-5. want dismiss 1 feature. my question is: possible tell svm check features 2-5 prediction (e.g. weights), or have train different svm models. 1 5 features, 4 features , on...? thanks in advance... marcus you can remove features test points fiddling file, highly recommend not using such approach. svm model valid when features present. if using linear kernel, setting given feature 0 implicitly cause ignored (though should not this). when using other kernels, no no. using different set of features predictions set used training not approach. i suggest train new model subset of features wish use ...

actionscript 3 - Send data from Flash to Starling class -

i want send data mainclass (flash class) starling class. here code of 2 classes. need pass data between them. package { import flash.display.sprite; import flash.events.event; public class mainclass extends sprite { private var mystarling:starling; public function mainclass () { super(); stage.addeventlistener(event.resize,onresize); } private function shangedor(e:stageorientationevent):void { // code } private function onresize(e:event):void { mystarling = new starling(main,stage); mystarling.start(); } } } main.as class of starling : package { import starling.core.starling; import starling.display.sprite; public class main extends starling.display.sprite { private var theme:aeondesktoptheme; public function main() { super(); this.addeventlistener(starling.events.event.added_to_stage,addtostage); } private function addtostage(e:starling.events.e...

security - I have a small code on the end of each image link on my site that I didn't add. Does anybody know what this is? -

mywebsiteurl.net/image.jpg?9a7ad6 what "?9a7ad6" after each image link? noticed when copy pasted url of image. i googled it, relevant thing find #9a7ad6 hex code purple. some wordpress themes/plugins use query strings neat things images on fly resizing. in case, query string (stuff after ?) being used prevent caching. if case, here's how fix it: there's setting under browser cache → general says prevent caching of objects after settings change → whenever settings changed, new query string generated , appended objects allowing new policy applied. disable (if you're using plugin) , query strings dropped on static resources .jpg , .png files. source: philip arthur moore wordpress.org: http://wordpress.org/support/topic/wordpress-32-images-show-weird-query-string you may want take @ page: http://diywpblog.com/wordpress-optimization-remove-query-strings-from-static-resources/

visual studio - is there a way to check if the debugger is currently attached? -

i'm developing visual studio plugin, , need check if debugger attached (i.e., application running) prevent user performing actions. looked online unable find useful. is there way accomplish this? thanks! edit: seems question not clear enough. i'm trying achieve is: plugin running inside visual studio. need check if instance of visual studio attached debugging application, plugin can act accordingly. found it: use dte2.debugger property, , currentmode property. way can tell if debugging or not.

javascript - How to load or show images based on device density in Phonegap -

i want show image same splash screen image. want know how same splash screen using javascript, phonegap config.xml file values. i saw example phonegap project files , www containing 1 config.xml file having icon, splash screen images mapped based on density. how access icon, splash image based on device density. please see sample config.xml file and want how defined app splash screen each platform

c# - DateTime Unspecified Kind -

Image
on msdn defined unspecified kind as: so if kind unspecified datetime utc, on same page (given example): class sample { public static void main() { datetime savenow = datetime.now; mydt = datetime.specifykind(savenow, datetimekind.unspecified); display("unspecified: .....", mydt); } public static string datepatt = @"m/d/yyyy hh:mm:ss tt"; public static void display(string title, datetime inputdt) { datetime dispdt = inputdt; string dtstring; dtstring = dispdt.tostring(datepatt); console.writeline("{0} {1}, kind = {2}", title, dtstring, dispdt.kind); dispdt = inputdt.tolocaltime(); dtstring = dispdt.tostring(datepatt); console.writeline(" tolocaltime: {0}, kind = {1}", dtstring, dispdt.kind); dispdt = inputdt.touniversaltime(); dtstring = dispdt.tostring(datepatt); console.writeline(" touniversaltime: {0}, kind = {1}...