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 Chriss Miller 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: hudo
  • Content: Threads
  • Order by date
  1. hudo

    process records in file

    Hello, in a file are records of the following format: ----0---m---28.07.2007---23:13:18---rest---id=123456 ----9---a---28.07.2007---23:13:46---rest---id=345677 ----0---a---28.07.2007---23:13:57---rest---id=876543 By comparing the id's to the actual processing id (e.g. id=345677 ), I'd...
  2. hudo

    process UDP pakets with perl

    Hello, I'd like to process UDP pakets with perl on a windows xp platform. I used to use activestate perl on the windows platform. Can anybody tell me the necessary modules (from activestate) or even some examples to send, receive and evaluate UDP pakets. Many thanks in advance
  3. hudo

    Image as parameter

    Hello, I'd like to call a site within a perl script (with lwp) which has an image as parameter. Here is the relevant source: <INPUT src="/img/navigation/formabschicken.gif" value="" name="Antwort" border="0" class="norm" type="IMAGE"> What is the value of the parameter Antwort ? Thanks for...
  4. hudo

    select with loop

    Have the following table CREATE TABLE mytable ( PK1 NUMBER, PK2 NUMBER, ARRAY NUMBER, DESCRIPTION VARCHAR2(20) ); ALTER TABLE mytable ADD( PRIMARY KEY (PK1,PK2) ); INSERT INTO mytable(PK1,PK2,ARRAY,DESCRIPTION) VALUES (1,1,3,'DESC_3'); INSERT INTO mytable(PK1,PK2,ARRAY,DESCRIPTION) VALUES...
  5. hudo

    access other_params within forms 9i

    Hello, I'd like to determine the output directory when using the Forms TEXT_IO utility in the formsweb.cfg (of the OAS) as other_params. This would facilitate maintenance and it is more flexible. But I do not know how to access this parameter within Forms 9i.
  6. hudo

    implement hyperlink

    How can a hyperlink be implemented into forms 10g ?
  7. hudo

    hierarchical tree node as selected

    Like to set a Node or Leaf of a hierarchical tree as "selected" without clicking it with the mouse.
  8. hudo

    date problem

    Hello, I got 4 text items in a form , STARTDATE, STOPDATE (of Data Type: Date), and STARTTIME, STOPTIME (of Data Type: Datetime) in a form which serve as input parameters for a stored procedure (all 4 of type date in procedure header) Then I would like to concatenate STARTDATE and STARTTIME...
  9. hudo

    process queries parallel

    On a tab page should be displayed the result of four indifferent queries, each based on a stored procedure. At the moment, the queries are processed serially, by the statements: GO_BLOCK('one'); CLEAR_BLOCK(No_Validate); EXECUTE_QUERY; GO_BLOCK('two'); CLEAR_BLOCK(No_Validate); EXECUTE_QUERY...
  10. hudo

    tablename as input-parameter for procedure

    I'd like to have the tablename as a parameter for a procedure: CREATE OR REPLACE PROCEDURE myproc( p_table VARCHAR2 ) AS CURSOR c_forcolumn (p_table VARCHAR2) IS SELECT alpha.ROWID ,alpha.scope_column FROM p_table alpha ORDER BY scope_column; BEGIN NULL; FOR rec IN...
  11. hudo

    copy date into text_item

    I'd like to copy the date/contents of a text_item (typ: Date ,length 19, format mask: dd.mm.yyyy HH24:MI ) into another text_item ( typ: Date ,length 19, format mask: dd.mm.yyyy HH24:MI ) Used a WHEN-BUTTON-PRESSED Trigger with: :MY_BLOCK.MY_NEW_TIMEFIELD :=...
  12. hudo

    text_io problem

    I've displayed scott.emp in a form and would like to export it locally (on the client machine). I read something about Package TEXT_IO which seems to be included into Forms, but I do not know how to export the table contents into a csv file (start export with WHEN-BUTTON-PRESSED trigger). I use...
  13. hudo

    workaround for FRM-40106: no navigable items in block

    Hello, need a workaround for error FRM-40106: No navigable items in destination block but all items of the block should be/remain invisible.
  14. hudo

    change tab label property

    How can the CANVASES->TAB->MYTAB->Label property be changed, e.g. to write in bold letters, or bigger font size ? What is the VISUAL ATTRIBUTES->GENERAL->VISUAL ATTRIBUTE TYPE : Title for ??
  15. hudo

    forms 10g under windows, AS 10 under Linux

    Hello, I developed forms with forms 10g under Windows XP, then the forms were copied to the AS 10 machine running under Linux. But the forms do not work there. Even displaying the contents of a table (in a form) by activating the WHEN-BUTTON-PRESSED Trigger does not work. But the contents is...
  16. hudo

    AS 10 and hierarchical tree problem

    Made a form which uses a hierarchical tree for navigation. The record group for this tree is initialized in a WHEN-NEW-FORM-INSTANCE. This works fine on my laptop, where I use database 9, developer 10g. In production database 8.1.7.2 is used and AS 10. If I try to deploy my form with the...
  17. hudo

    forms 10g demo problem

    Hello, I have problems with the forms 10g demo bigraph. I installed everything as told in the install/readme file. The demo works, but after opening the graph90.fmb (from bigraph demo) with the formbuilder 9.0.4 and running the form (I'm using OC4J from the Developer) there are no charts...
  18. hudo

    sum a column in text field without last record

    Hello, in a form is the table scott.emp displayed with an additional column lfdnr with the entries 0,1,2,...,13 (with the scott.emp having 14 records) How can the sum of the column emp.sal be displayed in another text item but the value of emp.sal of the last record should not be included in...
  19. hudo

    max of 2 text items

    Hello, I have 2 text item TEXT_ALPHA and TEXT_BETA in a form, and would like to enter in text item TEXT_GAMMA the maximum of the values of TEXT_ALPHA AND TEXT_BETA How can this be done ?
  20. hudo

    access problem with grant and CREATE_GROUP_FROM_QUERY

    Hello, I created a form which uses a hierarchical tree for navigation within the form. The queries in the forms are based on stored procedures. I created a role with grant execute on these stored procedures. Then some other user are assigned to this role. Problems arise by starting the form as...

Part and Inventory Search

Back
Top