Solution For Cannot Acces Help On Dev 6i Using Windows 7 x64
Solution For Cannot Acces Help On Dev 6i Using Windows 7 x64
com/category/oracle/dev6i/
Solution for “cannot acces help on dev 6i / oracle developer 6i using windows 7 x64″
Because windows 7 x64 doesn’t containt WinHlp32.exe, then you must have the file.
http://www.ziddu.com/download/22213893/Windows6.1-KB917607-x86.zip.html
http://www.ziddu.com/download/22213894/Windows6.1-KB917607-x64.zip.html
http://www.softpedia.com/get/System/OS-Enhancements/WinHlp-for-Windows7.shtml
Leave a Comment
March 22, 2013
For example if you want to automate format mask 0000009 or 0000000 for a field on
oracle dev6i (FORM) which that field not number, but varchar2 (alfanumerik)
PL/SQL how to create format mask on varchar2 (example field length 7 char)
if length(:NO_SERI)<7 then
begin
:NO_SERI := LTRIM(TO_CHAR(TO_NUMBER(:NO_SERI),'0000009'));
exception when others then
:NO_SERI := substr('0000000',1,7-length(:NO_SERI))||:NO_SERI;
end;
end if;
Input
A
200
Result
000000A
0000200
Leave a Comment
December 5, 2012
For example I want to set x,y position for all fields inside certain
canvas
If the item including Radio button, you can add this example on
BLOCK_LIST looping
IF vCurrItem =vFirstItem and block_name='CIS_ALAMAT' then
SET_RADIO_BUTTON_PROPERTY('CIS_ALAMAT.KD_KOTA2','DALAM_IBUKOTA',POSITION,
GET_RADIO_BUTTON_PROPERTY('CIS_ALAMAT.KD_KOTA2','DALAM_IBUKOTA',X_POS)
+incx,
GET_RADIO_BUTTON_PROPERTY('CIS_ALAMAT.KD_KOTA2','DALAM_IBUKOTA',Y_POS)
+incy);
SET_RADIO_BUTTON_PROPERTY('CIS_ALAMAT.KD_KOTA2','LUAR_IBUKOTA',POSITION,
GET_RADIO_BUTTON_PROPERTY('CIS_ALAMAT.KD_KOTA2','LUAR_IBUKOTA',X_POS)
+incx,
GET_RADIO_BUTTON_PROPERTY('CIS_ALAMAT.KD_KOTA2','LUAR_IBUKOTA',Y_POS)
+incy);
end if;
references : https://sites.google.com/site/craigsoraclestuff/orac
Leave a Comment
October 27, 2011
how to fix runtime report oracle developer 6i for windows
64 bit
Filed under: dev6i,oracle — sikathabis @ 6:27 am
Replace nn60.dll and nnb60.dll on bin directory developer 6i with patch 3 (attachment)
http://halimdba.blogspot.com/2009/05/oracle-forms-or-reports-6i-in-windows.html
multiply:nn60.zip
multiply:nnb60.zip
ziddu:nn60.zip
ziddu:nnb60.zip
Leave a Comment
September 25, 2011
Oracle Forms is a block mode data handling system. It does not do “character by
character”. Use a Java thingy. There are examples, and links to examples, on the Oracle
David
http://sheikyerbouti.developpez.com/forms-pjc-bean/pages/keystrokeinterceptor.htm
Comments (1)
July 18, 2011
links : http://forums.oracle.com/forums/thread.jspa?threadID=650537
Although this Q is not so “hot” anymore, several days before I’ve ran into same problem.
By searching the google for “forms60.vrf” I’ve found just this post with question and no
good answers.
Since I’ve found the solution, I think it’s OK to share it with others.
Of course that Forms6i is not something of big interest these days, but there are still some
of us that need to install Forms6i Developer for various reasons (maintaining old
I’ve tried installation with disabled anti virus (to tryout already suggested hint) , it
I’ve modified my PATH environment variable to “shorter” string, since I remember similar
Comments (2)
June 6, 2011
Happy 2011 to everyone. I have been using TEXT_IO.FOPEN (‘LPT1′, ‘w’) in oracle form to
sent text to LPT port printer without having any problem but nowadays most PC come with
USB port and hence my programs failed to execute such command. Does anyone know or
has any idea how to use TEXT_IO.FOPEN to sent text to USB printer direct?
Hi TH Cheng
If you are using a new computer with an existing printer that still has a parallel connector,
you could buy a USB to Centronics cable. When connected, it shows up as a parallel port in
(more…)
Leave a Comment
January 14, 2011
Contoh Delete_List_Element
Filed under: dev6i,oracle — sikathabis @ 11:10 am
1. ‘Tahun’,’T’
2. ‘Bulan’,’B’
3. ‘Hari’,’H’
4. null
1. ‘Tahun’,’T’
2. ‘Bulan’,’B’
3. null
4. null
Clear_List(‘BLK_TEMP.KD_JK_WKT1′);
DELETE_LIST_ELEMENT(‘BLK_TEMP.KD_JK_WKT1′,2);
Hasilnya adalah :
1. ‘Tahun’,’T’
2. ‘Bulan’,’B’
Leave a Comment
December 21, 2010
Leave a Comment
December 16, 2010
Tags: oracle
NAME_IN(‘system.current_block’)) IS
application OLE2.OBJ_TYPE;
workbooks OLE2.OBJ_TYPE;
workbook OLE2.OBJ_TYPE;
worksheets OLE2.OBJ_TYPE;
worksheet OLE2.OBJ_TYPE;
cell OLE2.OBJ_TYPE;
range OLE2.OBJ_TYPE;
range_col OLE2.OBJ_TYPE;
args OLE2.LIST_TYPE;
form_name VARCHAR2(100);
f_block VARCHAR2(100);
l_block VARCHAR2(100);
f_item VARCHAR2(100);
l_item VARCHAR2(100);
item_name VARCHAR2(100);
baslik VARCHAR2(100);
row_n NUMBER;
col_n NUMBER;
filename VARCHAR2(100);
(more…)
Comments (1)
Next Page »
KEY TYPED
Purpose
This is a Javabean component that allows to intercept each key typed in a text field
Then, there is no need to use a Forms timer to intercept each key typed.
Forms configuration
archive_jini=f90all_jinit.jar,……,keytyped.jar
e.g.
set_custom_property( 'BLOCK.BEAN_ITEM', 1, 'SETBG', '200,10,0');
KEYTYPED