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 Wanet Telecoms Ltd 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: Creepers
  • Content: Threads
  • Order by date
  1. Creepers

    Converting 1.1 To 2.0

    I successfully converted version 1.1 To 2.0. However when I run from my development machine the style sheet is not "picked up" unless user is authenticated. Moreover, the image on the default.aspx page (sign in page) does not display unless the user is authenticated. Again, just to reiterate...
  2. Creepers

    Web User Control - Button Click Event

    I created a Web User Control (Page Header). On the Web User Control (Page Header) is a button used to verify sign on credentials. Unfortunately the button's click event is not firing. Help Please... Using Version 1.1
  3. Creepers

    Forms 6i - Ref Cursors

    I am passing a strong ref cursor from a package to Oracle Forms. Then iterating through to populate a data block. How can I dynamically create the Order By clause of the Ref Cursor?
  4. Creepers

    Horizontal Scrolling Label

    I am wanting to implement a horizontally scrolling label. Thinking a good approach will be to base it on a timer. However, I am having a difficult time implementing a client timer using javascript. Does anyone have any examples. Likewise, can anyone suggest a better method of scrolling label...
  5. Creepers

    DataGrid ItemCommand - Run RegisterStartupScript

    I am wanting to open a new browser window when a user clicks Edit button column. Howerver the below code does not work: Private Sub grdChats_ItemCommand(ByVal source As Object, ByVal e As System.Web.UI.WebControls.DataGridCommandEventArgs) Handles grdChats.ItemCommand Dim ChannelID_ls...
  6. Creepers

    Programmatically Creating a .ZIP File

    How can I programmatically create and append files to a compression file, specifically a .zip file?
  7. Creepers

    ASP.Net Style Sheets

    I am developing in ASP.Net (Version 1.1). The CSS file renders objects correctly on IE. However, the are not rendering correctly on FireFox. Can someone supply a fix or a link to a fix? Or supply a work around?
  8. Creepers

    XP Regional Settings

    Have some users in Germany where they set their Regional Options to Germany. This impacts numeric values. For instance .001 (US) = ,001 Germany. In short, Germany uses , where we in the US use . Is there an API call or some other functionality that I can use with VB to get a machines Regional...
  9. Creepers

    XP Regional Options

    Have some users in Germany where they set their Regional Options to Germany. This impacts numeric values. For instance .001 (US) = ,001 Germany. In short, Germany users , where we in the US use . Is there an API call or some other functionality that I can use with VB to get a machines...
  10. Creepers

    Form Activated (Base Class Event)

    I am an experienced VB programmer however I am a new to VB.Net. This might be a very basic question, but why does the form Activate base class event continue to fire (it appears it is in a continous loop)? Thanks
  11. Creepers

    ADO Error Number 3251 - Insert into Oracle Table

    I am getting error number 3251 (Current recordset does not support updating. This maybe a limitation of the provider or the selected locktype.) I am using Microsoft's OLEDB provider for Oracle. I am running Oracle 9i. The recordset is opened like this: lrs.Open "XXROT.ROT_CSI", cnn...
  12. Creepers

    ANSI Standard Join Syntax vs. Oracle 8i Syntax

    The DBA just finished moving our test instance of Oracle from 8i to 9i. After doing so, I noticed that some of my views are running much slower. After doing some research, I learned that 9i supports ANSI Standard for join syntax (joins are in the FROM clause). Should I see a performance hit...
  13. Creepers

    Oracle Data Types

    This may be a silly question(s): Can Oracle store a .xls or .doc file in a table? If so, who data type should I use? How can I insert the .xls or .doc into the field? Thanks
  14. Creepers

    Drag and Drop

    Hello All I am using MDI Forms (Parent/Child). The parent form has a TreeView control. The child form has a text box. I am wanting to drag and drop from the TreeView control to the text box. Can anyone help? Thanks in advance...
  15. Creepers

    Windows User ID Using Oracle Forms

    How can I get the Windows User ID and Machine Name Using Oracle forms?
  16. Creepers

    PLS-00455: cursor cannot be used in dynamic

    I am trying to dynamically create SQL and pass it into a cursor. Getting this error: PLS-00455: cursor 'ORDERSNOTINVOICEDCURSOR' cannot be used in dynamic SQL OPEN statement. Here is my code: PROCEDURE p_OrdersNotInvoiced(OrdersNotInvoicedCursor in out OrdersNoInvoicedCur...
  17. Creepers

    Back Color Of Item When Item Has Focus

    New to Oracle Forms... running 6i. I would like to know how to change the back color of an item on a datablock when that item receieves focus. After the item loses focus then go back to its orginal color. Thanks in advance... Creepers
  18. Creepers

    ORA-06513 Error Number - Why?

    Below is a Oracle Procedure that creates a cursur: PROCEDURE Get_User_RecordSet(n_AppID IN Number, v_OrgID IN VarChar2, n_PriorityValue IN Number, v_Message OUT Varchar2, v_EmpNo OUT t_EmpNo, v_EmpFullName OUT t_EmpFullName) IS Cursor Emp_Cursor IS SELECT EMPLOYEE_NUMBER, FULL_NAME...
  19. Creepers

    Oracle Procedure Call Using Visual Basic

    This may be a two part question. Part one for this Forum and Part 2 for VB Forum....Here we go I am tring to write a procedure or function in an Oracle package that will return a recordset (cursor?) which can be retrieved by Visual Basic. Can someone supply an example of a procedure or...
  20. Creepers

    FRM-40350 Query Caused No Records To Be Retrieved

    In Oracle Forms, how can I surpress this message?

Part and Inventory Search

Back
Top