Posts

Iterate through rows of dataset in report's custom code

hello, how can iterate through rows of dataset in custom code? have report containing dataset. pass dataset parameter custom code function. then? reference available members etc.? here dummy sample code far: public function showparametervalues(byval ds dataset) object() dim codes() object array.resize(codes,dc.???.count) codes(0)=ds??(field???)(row??) return codes end function as task want accomplish simple, want keep in custom code instead of writing custom assemblies etc.   thank you! justin, a dataset in reporting services not same type of object ado.net dataset.  report dataset internal object managed ssrs runtime (it's derived datareader object) , not xml structure containing datatables, etc. , cannot passed report's custom code. uwe, the way loop through rows of report dataset call custom function or referenced method in report data region expression.  using technique, may possible pass of the row , field information code stru...

Be our SS DBE TechNet Guru of 2016 and become renowned in community and professional circles!

Image
a new year! new start technet guru awards 2016! 2015 guru soooo last year! 2016 guru it's @ friends! this when make mark on history , stamp authority on favoured technology! this when shall know name , come appreciate depth , breadth of knowledge! this is... year of you! all have add article technet wiki own specialist field. fits 1 of categories listed on submissions page. copy in own blog posts, forum solution, white paper, or had solve own day's work today. drop nifty knowledge, or superb snippets, , become microsoft technology guru of month! this official microsoft technet recognition, people such yourselves can noticed! how win 1) please copy on microsoft technical solutions , revelations technet wiki . 2) add link on wiki competition page (so know you've contributed) 3) every month, highlight contributions, , select "guru of month" in each technology. if win, sing praises in blogs , forums, similar weekly contributor...

sp_db_vardecimal_storage_format problem

when use following statement create database, give me error on sql server 2005, please me how fix problem? exec sys.sp_db_vardecimal_storage_format n'p_mydatabase', n'on' go thanks. jake, what error message , on service pack 2 in sql server 2005?  http://msdn.microsoft.com/en-us/library/bb326653(sql.90).aspx | sankar reddy | http://sankarreddy.spaces.live.com/ | SQL Server  >  Getting started with SQL Server

Silvelight and AJAX

i trying make ajax call , set 'responsetext' textblock element 'txt'. sl = document.getelementbyid("silverlightcontrol"); sl.content.findname("txt").text = xmlhttp.responsetext; above code results in :- error: 'sl.content' null or not object if put alert() statement between above 2 statements, code works fine. tried substitute alert() settimeout() in function handleajaxcallback() below, page seems hang. function handleajaxcallback() { var flag; if ((xmlhttp.readystate == 4) && (xmlhttp.status == 200)) { sl = document.getelementbyid("silverlightcontrol"); flag = sl.isloaded; while (!flag) { settimeout("", 2000); flag = sl.isloaded; } // alert("delay"); // makes work delay introduced settimeout not work sl.content.findname("txt").text = xmlhttp.responsetext; } } doing wrong ? thank you, spaoind hi, could not call web service direct ...

Silverlight Usercontrol not loading in the asp.net user control

hello,         i have created silverlight project in silverlight 3. have asp.net usercontrol , embedding silverlight user control in asp.net usercontrol. when add .net usercontrol in simple aspx page works fine for  me. when add same usercontrol aspx page inherits base page properties silverlight control not display. can problem? please it's critical. thank you hi, have checked things shamrat231 has mentioned? if use relative url silverlight object source property below: <param name="source" value="clientbin/silverlight.xap"/> then need make make sure path reachable aspx page resides. example, when put usercontrol in default.aspx, silverlight application showing, when put same usercontrol in pages/page.aspx, silverlight application not showing because relative path not reachable pages folder. please check , correct me if misunderstand you, thanks. ...

ADMT Compatibility Questions

hi folks, i need clarification on admt part. 1. can install admt tool on domain controller ? if not complications? 2. can create migration account on source server , use migration? if not challenges? thanks satyam gupta should install admt on member server in target domain , use account created on target domain migration. why so ? >>> cause should install sql , sql not recommended on domain controllers.other recommendation create specific account migration can use own account if account member of domain administrators group on both domain. this posting provided no warranties or guarantees,and confers no rights. best regards burak uğur Windows Server  >  Migration

Is it possible to track the system idel time via GPO.

hi,        i can able track user logon hours using the logon script, same there way track system idel time via gpo?. regards, thiyagu. hi, there no such gpo setting track clients system idel time, suggest ask on scripting forum see if have scripts sample on this: http://social.technet.microsoft.com/forums/en/itcg/threads regards, cicely Windows Server  >  Group Policy