Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: misterimran
  • Order by date
  1. misterimran

    How to handle session in my website...

    This is the code i have found on a website to handle sessions. function doodle(){ //Verify if($_SESSION['expire'] > mktime()) { unset($_SESSION['s_user_id']); session_destroy(); }// End if } session_start(); doodle(); if (isset($_SESSION['s_user_id'])) { // Members...
  2. misterimran

    How to handle session in my website...

    Hi, I mean i want to do this with the help of session variables. Imran
  3. misterimran

    How to handle session in my website...

    Hello, I have been searching a lot to find a solution how to handle session in my web site developed in PHP. All i want to do is: 1) Expire a session if user user's session is idle for like 2 minutes. 2) To verify on each page is the user is logged on proerly through login page. I have...
  4. misterimran

    Send mail and attachments through form 6i on web

    Hi Guys, I am facing this problem for some days now and looking for your kind help. I am using forms 6i to develop my forms and have deploy them on web using 9i Applicatiion server. In one of my form i need to send an e-mail to the given address by the user and i also want to add...
  5. misterimran

    check data type of a variable

    Hi, i want to check data type of a varible in Oracle/d2k. as we check a numaric variable <is_numeric(x)> in php. Regards,
  6. misterimran

    Store files on server and later download them....

    Hi Guys, I am using forms 6i, database 9i release 1 and application server 9iAS. I have deployed my application on web using 9iAS. I want to design such a form thru which i can give user option that he can select the file from his own/client system and copy/upload them on a directory on our...
  7. misterimran

    Get User Information IP....

    hi, i am using forms6i and 9iAS for deployment of forms. i tried to use d2kwutility and the code i used is: DECLARE OS_USER_NAME VARCHAR2(60); MACH_NAME VARCHAR2(100); BEGIN OS_USER_NAME := win_api_environment.get_windows_username(toBoolean('Y')); MACH_NAME :=...
  8. misterimran

    FRM-92120: Registry file ERROR

    Hi! The error with details are as follows: FRM-92120: Registry file http://122.10.11.39/forms60java/oracle/forms/registry/registry.dat is missing. Details… Java Exception: Oracle.forms.engine.RunformException:FRM-92120:Registry file...
  9. misterimran

    How to pass Lexical References with Run_Report_Object

    Hi, Can't we pass lexical references to run_report_object via parameter list? When I pass parameter list including lexical reference to Run_report_object, the report fails. However built-in parameters like PARAMFORM=NO works fine. Is there a special way of passing lexical references through...
  10. misterimran

    How to run report for web.

    Thanks a lot friend, but how to call this procedure in my button on the form that runs the report?? I am doing it like this RUN_REPORT(); and when i click the button no result :( where is the mistake? regards, Imran
  11. misterimran

    How to run Report on web.

    Hi, we have developed our forms and reports in Developer 6i and we want to run them through web and we are using 9i Application server for this purpose. Our forms are running but reports are not. In client/Server environment we were using RUN_PRODUCT builtin to run our reports. Can anyone send...
  12. misterimran

    How to run report for web.

    Hi, we have developed our forms and reports in Developer 6i and we want to run them through web and we are using 9i Application server for this purpose. Our forms are running but reports are not. In client/Server environment we were using RUN_PRODUCT builtin to run our reports. Can anyone send...
  13. misterimran

    9iAS Installation problem on P-4 .

    Hi Friends, I am trying to install 9iAS Release 1 on a P-4 2.4GHz W2K server with sp 4, 1GB RAM. When iSetup.exe is invoked, the mouse pointer changes to hour glass for some time but nothing happens (no welcome screen, no wizard). Inoking exe the second time displays a message that the setup...
  14. misterimran

    Store values fetch by cursor in array or empty cursor.

    hi friends, i want to store number of records fetched by a cursor in my pl/sql code for later user in the same program unit. like i have a cursor that fetch the following records for the columns Employee_ID, Ded_ID, Ded_Date, Ded_Amount 14210, 1, 12-Mar-03, 200 14210, 1, 14-Mar-03, 400 10060...
  15. misterimran

    UTP Cat-5E

    Voice & Data communication in such a way that 1 pair goes to PABX and 2 Pairs goes to patch Panel . Has Anyone used it? Any Suggestion/comments. Regards, Imran
  16. misterimran

    Connect to database... problem

    Hello Dima, well the reason why i wanna surpress on-logon trigger is cuz i dont want to show the default logon screen before the form get starts. i want that from my developed form the user must give user name and passowrd and then login to database. cuz i have given some other options too on...
  17. misterimran

    Connect to database... problem

    Hi Friends, I have made a form based on a control block. Block contains two non database items. TXT_USER and TXT_PASSWORD. I have placed a button on this form with name LOGIN_BTN. Now I want my user to connect to the databases they want to. For example it user Type SCOTT in TXT_USER field and...
  18. misterimran

    Copy records from one block to another

    Hello again, actually i have include a check box field in the Block2 and user can check and uncheck againts each record. I only want to transfer the records into block 1 whose check box is checked. Thats why i have to pick some records not all records. So where_clause wont work. I just need...
  19. misterimran

    Copy records from one block to another

    Hi Guys, I have two blocks on my form- Block1 and Block2. Both blocks have same fields but different tables are associated. When I execute query it brings record in both of the blocks. Now I want to copy all records in block 1 to block 2 how can I do this? Like I want to clear block 1 and copy...

Part and Inventory Search

Back
Top