摘要:
<div id="demo" onmouseover="clearInterval(timer)" onmouseout="timer=setInterval(mar,30)" style="overflow:hidden; height:186px; width:180px;"><div id="demo1"> 000FDF0SD0FS0DF0</div><div id="demo2"></div></div 阅读全文
摘要:
功能实现主要分三步:1、添加两个引用:WindowsFormsIntegration.dll (负责整合WPF和Windows)、System.Windows.Forms.2、在 XAML文件中添加两个引用(粗体部分):<Window x:Class="CrossBowDemo.MainWindow"xmlns:wfi ="clr-namespace:System.Windows.Forms.Integration;assembly=WindowsFormsIntegration" xmlns:wf ="clr-namespace:Sys 阅读全文
摘要:
最近在做一个wpf的程序,需要在地图上不是很精确的定位湖北省(以及江西省)所有的移动基站以及小区,于是乎,关于在WPF下使用地图功能的技术选择,搞了很长时间,我自己知道的,有如下两种:1:MapInfo2:Gmap.net第一个,虽然说是在WPF下使用,但是,MapInfo提供的还是winform得,也就是说,您需要在wpf里面,host一个winform的用户控件(当然,也可以使用Form.Show的方式打开一个winform的窗体),关于wpf,winform在同一系统中的使用,本人没有怎么研究过,只是在winform中嵌套过wpf,但是,还真没在wpf中嵌套winform。第二个:开源组 阅读全文
摘要:
网页结构优化是页面优化的重点之一,它是对网页内容布局的规划,合理的网页结构能够有效地提高用户体验和搜索引擎的友好性。网页主要包含导航栏、栏目以及正文三部分组成,对网页结构的主要也是围绕这三部分进行的。1、页面重要区域分布规律 搜索引擎对页面的各个区域的重视程度是不同的,同样的内容出现在不同的区域所起的作用也有很大的差别。 图1 网页区域示意图 从用户体验的角度出发,一般用户在看一个网页的时候浏览页面的先后顺序一般是自上而下,自左而右进行的,因此在一个页面中(如图1所示),区域的重要性A>B>C>D。同时这也是符合搜索引擎在分析HTML页面的时候由上到下的顺序是一致的。2、网页 阅读全文
摘要:
Object NameFunction of the objectE.g._ALLUnderlying table with all the valuesPO_DISTRIBUTIONS_ALL_BBase of underlying table, same as _ALLMTL_SYSTEM_ITEMS_B_TLLanguage translation table with translation of descriptive fields in different languagesFND_RESPONSIBILITY_TL_VLView based on translation tabl 阅读全文
摘要:
转自:http://heliosguneserol.wordpress.com/2010/05/06/how-to-apply-patches-in-e-business-suite/In this article i try to expalin how we can apply patches in our E-Business Suite instance1. Download the patch from Metalink (You can find all patches under Patches&Updates tab)2. Copy the patch file to 阅读全文
摘要:
rem -----------------------------------------------------------------------
rem Filename: appinfo.sql
rem Purpose: Script to display status of all the Concurrent Managers
rem Author: Anonymous
rem ----------------------------------------------------------------------- set head on column O... 阅读全文
摘要:
原文:http://oraqa.com/2006/12/27/how-to-determine-which-patches-have-been-applied/There are two tables that contain information about patches applied to your Oracle E-Business Suite applications:AD_APPLIED_PATCHEScontains the list of patches that weredirectlyapplied.AD_BUGScontains the list of all the 阅读全文
摘要:
调试快捷键 Eclipse中有如下一些和运行调试相关的快捷键。 1. 【Ctrl+Shift+B】:在当前行设置断点或取消设置的断点。 2. 【F11】:调试最后一次执行的程序。 3. 【Ctrl+F11】:运行最后一次执行的程序。 4. 【F5】:跟踪到方法中,当程序执行到某方法时,可以按【F5】键跟踪到方法中。 5. 【F6】:单步执行程序。 6. 【F7】:执行完方法,返回到调用此方法的后一条语句。 7. 【F8】:继续执行,到下一个断点或程序结束。(说明:1, 首先在一个java文件中设断点,然后运行,当程序走到断点处就会转到debug视图下,2, F5键与F6键均为单步调试,F5是s 阅读全文
摘要:
全文阅读见PL/SQL FAQHow can one see if somebody modified any code?The source code for stored procedures, functions and packages are stored in the Oracle Data Dictionary. One can detect code changes by looking at the TIMESTAMP and LAST_DDL_TIME column in the USER_OBJECTS dictionary view. Example:SELECT OB 阅读全文