Posts

How to Share webservice object to all user

dear all,            how share webservice object user. in pageload i have created webservice object in pages.so performance level go down.            shall create application level mean it's possible share object in user?             if 1 ,it occur deadlock or anyother problem?             or else how share webservice object user.             please me.... advance you. regards, santhosh you can use application object. if updating application object, can use  application.lock(); , then  application.unlock(); thanks, nishanth mohan visit places in london free!!! a large collection of english / hindi / malayalam / tamil sms messages a large collection of english / hindi / malayalam / tamil sms messages Archived Forums A-B  >  ASMX Web Services and XML Serialization

Exploring the Stack

hello all, i have question related stack of process. i trying accomplish following. 1.) see how stack accessed internally within process. 2.) figure out how find particular function within stack "i.e., own function adds 2 integers".   i trying learn more inner workings of stack of process. have been reading lot kind of need little help. need know if there classes in .net framework me accomplish this. have found stacktrace little unfamiliar with each frame name. any in matter much appreciated.   hello, i'm not quite sure want, post bit vague. you want understand stack data structure or looking @ how os handles stack per thread basis ? 1) stack has little process itself. 2) can check how work stacktrace here. here few resources. a) pushing limits of windows: processes , threads b) processes , threads eyal ( http://shilony.net ), regards. Visual Stud

Trouble with Categories in Expression Blend Collection Editor

hello, i have created custom controls part of collection custom control. on their own in expression blend controls show custom categories , properties when part of collection , opened in collection editor of custom properties grouped under first custom category , remaining custom categories not shown. standard categories still show fine i.e. brushes, appearance, common properties etc. controls built on 4.0 framework. , using expression blend 4.0 btw - problem not exhibited when using controls in visual studio.  has else experienced this , there solution? thanks help. can attach screenshot perhaps? having hard time visualizing issue. Expression  >  Expression Blend + SketchFlow

Editor Extension for VS 2013 Update 3

dear code contracts team, first of thanx great work!! thinking using code contracts our projects. unfortunately there 1 open point, need more information, in order convince colleagues rely on tool chain: code contracts editor extensions not running on visual studio 2013 update 3. :-( question 1: aware of problem or need logs , stack traces me? question 2: there update scheduled code contracts editor extensions? question 3: there plans make extension open source? considering restricted resources, enable community themselves. thanx again guys! looking forward feedback... cheers, markus DevLabs  >  Code Contracts

Creating a button with multiple rectangles on it--like Dante does (Dajo) - 1/30/2008 8:51 PM PST

by: dajo hi all, question: trying follow dante's example of creating play button, when double-click rectangle (lesson 3, topic 1) make child of grid, replaces grid instead of becoming child, dante. step missing? thanks. by: brennon williams howdy, not familiar tutorial, sound of it, not "activating" grid control... need double click grid in objects , timeline category of interaction panel , should see turn yellow... whenever add child elments toolbox etc, become child of activated control (in case.. grid) cheers -- want learn how use blend , visual studio? http://www.learnexpressionstudio.com http://www.expressionblend.com http://www.x-coders.com "dajo" wrote: > hi all, > > question: trying follow dante's example of creating play > button, when double-click rectangle (lesson 3, topic 1) make > child of grid, replaces grid instead of becoming child, > dante. step missing? >

Funny little pop quiz

  you have use vb this, thought quite fun, can guess does?   dim bla as object = cdate ( "2001-12-11" ) console.writeline(bla.tostring( "yyyy-mm-dd" ))       ......   did guess it?.....     {"conversion string "yyyy-mm-dd" type 'integer' not valid."}     (sorry if it's obvious suprised me).         it caused leak in vb.net syntax.  parentheses can both used method call , index array or string.  , parentheses optional if method doesn't take arguments.  that's lethal combination in case.  compiler parses follows:         dim v object = cdate("2001-12-11")         dim s string = v.tostring         dim integer = cint("yyyy-mm-dd")         dim t string = s(i)         console.writeline(t) it cint() call generates exception.  still sounds compiler bug, console.writeline() method required.  can report @ connect web site .

AccessViolationException when reading Properties.Settings.Default field. .NET 4.0, C#, VS10

i having issue reading specific property properties.settings.default. first time run code during debug session, successful. second time run, accessviolationexception. exception happens when versionmajor property of properties.settings.default, not versionminor property.   byte[] tmparray; byte[] message = new byte[599]; int = 0; message[i++] = 16; //write multiple registers message[i++] = 0; //high byte of address message[i++] = 98; //low byte of address message[i++] = 1; //high byte of register count message[i++] = 40; //low byte of register count message[i++] = 0; //reserved message[i++] = properties.settings.default.versionmajor; //major version number message[i++] = properties.settings.default.versionminor; //minor version number   both properties of byte type. insight cause of issue beneficial. thanks i solved problem. later in applic