Item cost not updated after posting Purchase Order Invoice.
In case of that you've go through the following symptom where the item cost is not updated as expected after posting Purchase Order Invoice, this occurred with the following scenario.After creating the...
View ArticleInconsistency between quantity in purchase order and quantity in inventory...
The purchase order invoicing process has a functionality where the end user could identify a particular quantity which will be invoiced, and this could be controlled by the over/under deliver...
View ArticleSmall Basic: The History of the Logo Turtle
Let’s take a look at where the Small Basic Turtle object came from! Turtle graphics were based on turtle robots, which were used in programming. In 1948, Grey Walter created his first robots, named...
View ArticleKnow it. Prove it. 28 days to rock your skills.
Registration is open for Know it. Prove it., a month-long MVA learning challenge to accelerate your skills on the tech topic of your choice. Join the community, commit to the challenge, share your...
View ArticleMicrosoft’s talks at GDC 2015
GDC isn’t far away (March 2-5th), so you had better get on it if you haven’t booked a room or a flight yet. This will be my 6th GDC in San Francisco and my 8th overall, and based on what I know is...
View ArticleOn saying “no”
Evangelism I love my job. When I first came on board to the Developer Evangelism team at Microsoft, a peer explained it to me as “owning your own small business within Microsoft”, and I’ve found that...
View ArticleSQL Updates Newsletter - January 2015
Recent Releases and Announcements · Cumulative Update #14 for SQL Server 2012 SP1 o...
View ArticleGet real
Could you be replaced? Could your product get hacked? Could an essential service fail? Could a key co-worker leave? Could a critical dependency arrive too late? People often measure themselves, their...
View ArticleTechLove to Win a Surface
It’s February and with Valentines day approaching there is often love in the air. Call us sentimental but we wanted to show all our @MicrosoftSB followers and blog readers a little love, well techlove...
View ArticleSpatial Heat Map Explorer - A Windows Store App to view Heat Maps of POIs
Sometime back, I came across this brilliant book, Location Intelligence for Windows Store apps by Ricky Brundritt. I thought to go-ahead and extend the implementation of Windows Store app of heat map...
View Article博客园客户端(Universal App)开发随笔 -- 数据基础准备
在开始之前,我们先了解下博客园提供的接口:博客: http://wcf.open.cnblogs.com/blog/help新闻: http://wcf.open.cnblogs.com/news/help以博客园_48小时阅读排行为例,返回的Xml如下图(RSS,如果你用IE打开的话,会提示你订阅。。)。博客园的大部分API返回的都是RSS(还提供分页!),如果只是做一个简单的RSS...
View ArticleWindows Phone 8.1上的开发人员请看
1)SDK选择:如果你是在Windows Phone 8.1上做一个新App, 或者想把7.x/8.0的App移植到8.1上,请使用WinRT SDK,而不是Silverlight。当然Silverlight在一段时间内还会被支持。2)如果你有关于WinRT的博客,请发表到.NET技术->Metro/WinRT上,而不是发表在手机开发->Windows...
View Article博客园客户端(Universal App)开发随笔 -- 增量加载 (incremental loading)
在我们的应用(博客园UAP)中,加入了ListView上拉获取更多内容的功能(GridView也可以),这个功能是通过ISupportIncrementalLoading接口实现的,这是个从Windows 8就开始提供的接口(当然你可以通过ScrollViewer来实现这个功能,只不过稍微麻烦点,还要自己再封装。。)。这个接口的定义十分简单:publicinterface...
View Article博客园客户端(Universal App)开发随笔 -- App的精灵:自定义控件
前言拿到一个App的需求后,对于前端工程师来说,第一步要干什么?做Navigation规划!第二步要干什么?做页面分解!页面分解如何做?首先要确定UI Element的容器,其次要抽象UI Element本身,也就是要做一堆自定义控件,最终组成整个页面。今天我们就说说自定义控件如何实现吧。感性认识在我们的博客园UAP的Windows...
View Article博客园客户端(Universal App)开发随笔 -- 样式管理与夜间模式
以今天的眼光来看,一个好应用首先是要有好的用户体验。而好的用户体验最直观的就来自于用户界面。好的用户界面则需要好的设计,更需要好的实现。今天我们就向大家分享一下我们在使用Xaml实现界面设计上的一点心得。样式管理我们拿到的设计,大多是一张红线图,布满了距离,字号,色号,事无巨细的量化了我们的用户界面。如果我们就这样把各种属性照搬��上Xaml文件中,那看起来就非常不妙了,比如这样:<TextB...
View Article博客园客户端(Universal App)开发随笔 - 应用漫游数据(roaming)
情况下要实现这种功能,我们可能需要自己弄个服务器或者使用onedrive等网站来存放文件,但是对于我们这种小型的应用有点过了,额外增加了代码和维护的工作。这种时候使用windows roaming就是一个比较方便的选择。所谓的漫游数据,MSDN上是这样介绍的:Windows 8...
View Article新年快乐
各位园主,以及博客园的工作人员们祝大家新年快乐!我们特意制作了一个简单的动画,放在了博客园UAP的WP App里面,没有WP手机的看youku吧:http://v.youku.com/v_show/id_XODYxMTM4ODM2.html(有声音的哟)这个动画完全是用Win RT SDK开发制作而成,它的界面元素有:1)Page,标准的Windows Phone Page2)title -...
View Article博客园客户端UAP开发随笔--自定义控件的左膀右臂
前言我们上一次说到了App的精灵:自定义控件。这一次,我们接着这一话题,说说自定义控件的两个得力助手:选择器 - TemplateSelector转换器 – Converter这两个东西能帮助自定义控件更为简单方便地被使用,所以必须掌握。数值转换器 Converter这个大家可能不陌生,因为在MSDN里,介绍到Data...
View Article博客园客户端UAP开发随笔--自定义控件的左膀右臂
前言我们上一次说到了App的精灵:自定义控件。这一次,我们接着这一话题,说说自定义控件的两个得力助手:选择器 - TemplateSelector转换器 – Converter这两个东西能帮助自定义控件更为简单方便地被使用,所以必须掌握。数值转换器 Converter这个大家可能不陌生,因为在MSDN里,介绍到Data...
View Article博客园客户端UAP开发随笔 -- App的心动杀手锏:动画
前言在前面一篇“新年快乐”的随笔中,我们介绍了WinRT中的简单动画实现。其实在使用Windows/Windows...
View Article