来汉得也有好几个星期了,目前学习到ebs form开发。form开发难度倒是不大,只是入门有点困难,没有全面的去学习,很多东西都是学得边边角角的。根据汉得的培训,ebs form的练习主要参照“Turorial_Folder 开发指南.pdf”文档开发,文档为公司保密材料,这里就不上传了。 开发中遇到一个另我花了大力气才解决了问题:开发中,一边
原创
2013-09-01 00:57:01
4772阅读
1.abort_query; 停止查询的执行2.add_group_column(record group id 或 name,group column 添加一个列到一个记录组,Record group id、name,column type,column width); 3.add_group_row(record group id 或 name,row number); 添加一个行到一个记录组
转载
精选
2013-11-15 18:06:53
8137阅读
最近公司需要,开始学习oracle的forms,e文 的文档实在看的不爽,还好同事买了一本中文入门书籍,趁着周末学习了一下。 总的感觉这个东东比较简单,如果学习过图形化的开发工具,比如jbuilder之类,就能很快上手,不过昨天碰到个问题让我郁闷到了今天才解决
原创
2008-09-16 15:59:00
8579阅读
点赞
2评论
A step by step tutorial for Oracle Forms 10g development. This guide is helpful for freshers in Oracle forms 10g. To download this ebook click the below button: Download Oracle Forms 10g eBookSee Also...
原创
2021-07-21 11:33:23
1290阅读
在开发Oracle Forms时,有没有碰到这样的需求,我需要在每次离开一行记录时执行某个操作。用WHEN-VALIDATE-RECORD,不过实际测试的时候,怎么有时行有时不行?那你有没有尝试过WHEN-LEAVE-RECORD呢?什么?还有WHEN-LEAVE-RECORD?从来没有听说过……
在请出WHEN-LEAVE-RECORD前,让我们先来分析分析下见过的几个WHEN触发器:
WHE
原创
2022-01-05 17:43:52
608阅读
Below is the example to create an excel file in Oracle Forms.Pass the Sql query string to the below procedure to generate an Excel file using Ole2 package.PROCEDURE Create_Excel_File (CSQL Varchar2)Is...
原创
2021-07-21 11:35:06
573阅读
Sequence of triggers fires on Commit.1. KEY Commit2. Pre Commit3. Pre/On/Post Delete4. Pre/On/Post Update5. Pre/On/Post Insert6. On commit7. Post Database CommitSequence of triggers fires when ...
原创
2021-07-21 11:34:10
369阅读
Managing push buttons at run time in Oracle Forms is very simple and in this tutorial you will learn to enable or disable the buttons, making visible and invisible buttons and will learn to change the...
原创
2021-07-21 11:35:13
970阅读
Introduction ------------ This document lists the order in which triggers fire in Oracle Forms 4.5: o The first column, Action, describes the function to be performed (e.g. deleting a ...
原创
2021-07-21 11:42:00
520阅读
Created XO Checker game in Oracle Forms and sharing its FMB (source code) for reference so that you can view its code written on the objects. You will learn a lot by looking its code and logic, you...
原创
2021-07-21 11:29:53
404阅读
Suppose you want to handle an error in oracle forms and want to display custom error message for that error, but also you want to customize more for a particular error. For example there are many fiel...
原创
2021-07-21 11:33:32
1484阅读
Play_sound is used to play audio files in Oracle Forms, Play_Sound plays the sound object in the specified sound item.PLAY_SOUND examplesThe following plsql block you can write in when-button-pressed ...
原创
2021-07-21 11:34:12
519阅读
To download Oracle Forms Developer 6i from Oracle click this link http://download.oracle.com/otn/nt/forms/6i_rel2_xp.zipNote. You must have Oracle username and password to download any software from ...
原创
2021-07-21 11:31:58
1993阅读
Highlight a Text Item in Oracle Forms With Visual AttributeIt is very necessary to highlight the current cursor text item in data entry forms so that a user can easily notice the current item. Steps t...
原创
2021-07-21 11:34:18
577阅读
After getting to much requests for a free Oracle Forms and Reports project for students, I am sharing a project with source code (Oracle Forms example application), which I developed in around 2000 in...
原创
2021-07-21 11:35:12
2069阅读
I have written many posts related to triggers in Oracle Forms, I have given examples for Form Level triggers, Data Block Level triggers and Item Level Triggers. And in this tutorial I am just giving t...
原创
2021-07-21 11:36:15
848阅读
iTbulo.COM, 在ORACLE的前端工具FORM4.5中,封装进程资真相当厚实,且用处遍及。笔者在琐屑筹算中,借助个中的封装进程“FORMS_DDL”,经管了良多使用困难。以下就所完成部分
转载
2011-03-07 20:04:00
94阅读
2评论
I wrote this trigger around 4 years ago to handle errors in an application based on Oracle Forms 6i. This trigger handles all errors with some custom messages for some specific errors and not only thi...
原创
2021-07-21 11:33:33
568阅读
Example is given below to fetch any Oracle objects DDL script using DBMS_Metadata.Get_DDL command in Oracle Forms using Forms_DDL command. You can download this form for free including source code w...
原创
2021-07-21 11:34:09
402阅读
Xamarin 提供两种原生app开发技术:1. Xamarin Native, 包括 Xamarin.Android, Xamarin.iOS, Xamarin.Mac 2. Xamarin 跨平台的 Xamarin.Forms 我"个人"比较喜欢 Xamarin.Forms 这种技术, 原因:1. 毕竟它是原生技术, 性能不会太差, 硬件API调用也不会有限制. 2. 背后的开发语言是C#,
原创
2022-04-12 11:23:25
472阅读