Search found 137 matches

by Kashif
Fri Oct 19, 2007 8:52 am
Forum: Oracle Forms & Reports
Topic: Making New Form Using Stored Procedure
Replies: 1
Views: 2132

Making New Form Using Stored Procedure

Dear All Memmbes

Please give me any example for Making a New FORM Using Stored Database Procedues.
I have No idea for Developing this form.

I'm Using DEVELOPER 6i
by Kashif
Wed Oct 17, 2007 4:00 am
Forum: Oracle Forms & Reports
Topic: How to Delete Images Using FORMS?
Replies: 0
Views: 1547

How to Delete Images Using FORMS?

Dear All Members. I have More then 10,000 Employees Images Stored on my HDD, Now i want to Delete the OLD Employees Emloyees Images which have been left before any specified Date. How do Delete that images Using Forms. The Images which have to Delete are near about 7000 and i cant delete the images ...
by Kashif
Mon Oct 01, 2007 7:43 am
Forum: Oracle Forms & Reports
Topic: how to use barcode in repots
Replies: 3
Views: 2276

Just apply BARCODE FONT on the Number which u want to Show as BARCODE.
by Kashif
Mon Oct 01, 2007 7:07 am
Forum: Oracle Forms & Reports
Topic: Create User Through Form
Replies: 1
Views: 2833

Use the FORMS_DDL Function for creating user using Forms.

Code: Select all

FORMS_DDL('GRANT DBA TO ABC IDENTIFIED BY ABC');
by Kashif
Fri Aug 10, 2007 10:00 am
Forum: Oracle Forms & Reports
Topic: If Picutre not found then return default_picture
Replies: 1
Views: 2217

Use this Functions it will Solve ur Problem Fisrt of All Create Directory in ur Schema Create or replace directory EMP_PIC as 'D:\Pictures\'; Then Create this function in ur Schema Create or Replace FUNCTION PIC_PATH(emp_id varchar2) Return CHAR is pic_file bfile := bfilename( 'EMP_PIC', emp_id||'.b...
by Kashif
Fri Aug 10, 2007 5:31 am
Forum: Oracle Forms & Reports
Topic: Export Report Data
Replies: 2
Views: 2850

Dear all Memebers.

Can any One give me a Complete Parameter List?
I try to Search the Form Builder help but unable to Find any List.

Here we can Disbale Any Menu of Report in the Previewer.
Can i Hide this menu Item?
by Kashif
Sat Jul 21, 2007 5:43 am
Forum: Oracle Forms & Reports
Topic: Report Parameter Based on 2 Columns
Replies: 3
Views: 3384

Use the Lexical Reference for your required query
topic.asp?TOPIC_ID=84
by Kashif
Thu Jan 04, 2007 6:27 am
Forum: Oracle Databases
Topic: Difference Between 'YYYY' and 'RRRR'
Replies: 1
Views: 3857

Difference Between 'YYYY' and 'RRRR'

Dear All Memebrs.

We Use Formt Strings for Converting Charaters to Dates and Dates to Character. I want to Know the Technical Difference between both of them.
'DD-MON-RRRR' AND 'DD-MON-YYYY'

and also the Difference of FORMAT MASK Used in Developer 6i( in Both Cases)

Thnanks
by Kashif
Sat Dec 16, 2006 3:32 am
Forum: Oracle Forms & Reports
Topic: Problem in Printing Pay SLIP
Replies: 2
Views: 3526

If my Question is UN CLEAR then here is Short Version of this question.

I want to Print on Customized Page (Sized 4"x8")
OR
I want to Print on the CHEQUE BOOK (on Single SLIP)


Best Regards
by Kashif
Tue Dec 12, 2006 3:27 am
Forum: Oracle Forms & Reports
Topic: Problem in Printing Pay SLIP
Replies: 2
Views: 3526

Problem in Printing Pay SLIP

Hello Dear Members. I have a Probelm in Printing PAY SLIP using Reports 6i. the Probelm is the Paper Size on which i want to Print the SLIP is of SIZE (4"x8"). and the report is Also designed using the Same size. Slip is Printing Acuratly on the SLIP SIZE paper. the ONLY problem is SPEED o...
by Kashif
Wed Dec 06, 2006 4:53 am
Forum: Oracle Forms & Reports
Topic: Which COM Port # to Open?
Replies: 0
Views: 1303

Which COM Port # to Open?

Dear Memebrs. I have a Time attendance Machine. Which can Connect to any COM Port (i.e 1,2 3,4 .....). How My Form can Know the Machine is Connected to any Specific Port Number. If i Hard Code in the Oracle Forms. using this code MSCOMMLib_IMSComm.CommPort(objVAR,1); objVar has the Reference of COM ...
by Kashif
Fri Nov 24, 2006 9:57 am
Forum: Oracle Forms & Reports
Topic: how get direct print
Replies: 3
Views: 2214

Add this Parameter in ur Parameter List for directprinting

Add_Parameter(emppara, 'DESTYPE', TEXT_PARAMETER, 'PRINTER');
by Kashif
Fri Oct 20, 2006 4:12 am
Forum: Oracle Forms & Reports
Topic: Urdu Usage in Report 6i
Replies: 4
Views: 4912

Urdu Usage in Report 6i

Dear all Members.

I want to DISPLAY URDU LANGUAGE in Report 6i.
I want to use it Only On LABLES of reports. not on Database Item.
How can i do this.


Please help me.
by Kashif
Thu Oct 12, 2006 6:02 am
Forum: Oracle Forms & Reports
Topic: Re: report order by problem
Replies: 2
Views: 1753

Use TO_NUMBER Function to Convert Varchar to Number
Like

TO_NUMBER(NVL(SUBSTR(VOUMASTER.cheqno,10,10),0)) AS chqno


and user Order by Clause in ur Report Query
Like

ORDER BY TO_NUMBER(NVL(SUBSTR(VOUMASTER.cheqno,10,10),0)) ASC

Inshallah Ur Problem will solved.
by Kashif
Sat Oct 07, 2006 6:39 am
Forum: Oracle Forms & Reports
Topic: When-Timer-Expired
Replies: 1
Views: 1625

When-Timer-Expired

Dear Members. I want to Know the life cycle of timer control in Devloper 6i. If i have 2 timer control. and 1st timer is exipred and the statments in that timer will statrt excuting. but in the Mean while as the 1st timer statements and executing 2nd timer also expires. Then what will happen[?] will...