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: *

  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

    vb6 fax/email problem

    Hey strongm Using the "Shell.Application" method, how can I surpress the "Confirm File Replace" dialog message that appears if a file already exist in a zip? I do want to replace.
  7. Creepers

    Programmatically Creating a .ZIP File

    Yeah, I am also using the "Shell.Application" method. Hoping to find a different approach. Thanks!
  8. Creepers

    Programmatically Creating a .ZIP File

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

    ASP.Net Style Sheets

    Thanks for everyone's responses. I am new (less than 6 months) to ASP.Net. When new at something, some times it is difficult for me to ask the correct question. The objects that are not rendering correctly are tables, rows and cells that I have programmatically created. These objects are...
  10. 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?
  11. 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...
  12. 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...
  13. Creepers

    Time on Server

    There are several API's to calls. I will just send you the entire class. Private Const NWCC_NAME_FORMAT_BIND = 2 Private Const NWCC_OPEN_LICENSED = 1 Private Const NWCC_TRAN_TYPE_WILD = &H8000 Private Declare Function NWCallsInit Lib "calwin32" (reserved1 As Byte, reserved2 As Byte) As Long...
  14. Creepers

    Determine Row in DataGrid

    Not sure what kind of datagrid you are using. However, if you are using MSFlexGrid and selection mode is by row then Value In Column X = FlexGrid.TextMatrix(FlexGrid.row,x)
  15. Creepers

    Form Activated (Base Class Event)

    Grrr... You are correct. Thanks!!!
  16. 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
  17. 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...
  18. Creepers

    ADO Help

    Try TransRS.Open SQL, TransCon, adOpenForwardOnly, adLockBatchOptimistic,-1
  19. Creepers

    8i vs 9i Speed

    No, it does not have the same hardware. A view (group of views) running in production takes 2 seconds (select *). The same view took 3 hours in development. This view has been in production for over a year and therefore in development for a year. Previous to the 9i upgrade, the same view in...
  20. Creepers

    8i vs 9i Speed

    Our DBA just finished moving the test instance of Oracle from 8i to 9i. After doing so, I noticed that many of the views are running much slower. After doing some research, I learned that 9i supports ANSI join syntax. Does this impact the speed? If not, does anyone have any thoughts as to...

Part and Inventory Search

Back
Top