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 IamaSherpa 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: nelco
  • Order by date
  1. nelco

    xml schema help

    My xsd: <xs:element name="UDAS"> <xs:complexType> <xs:sequence> <xs:element minOccurs="2" maxOccurs="unbounded" name="UDA"> <xs:complexType> <xs:sequence>...
  2. nelco

    java script function

    Thanks for the quick reply. What I am trying to do is have a pop up message 'Record Added" in my button click event. Currently in my code, I am showing that message in Label. I was asked to put that message as a pop up and I was wondering how to do that. My current code is: Protected Sub...
  3. nelco

    java script function

    I want to add java script function. The following code works - if I put that on page load event. If I put the same code in Button_click event - the message does not pop up. Page.ClientScript.RegisterClientScriptBlock(Me.GetType(), "myAlert", "alert('Record added');", True) If this helps, I...
  4. nelco

    Missing Parameter Values while passing parameters to CRystal from .net

    I am getting ' Missing parameter value' error. I will appreciate any guidance / help to fix this error. My code: Private Sub setParameters() ' Create report instance. This is the class added to your project ' when you added the report to the project Dim report As New...
  5. nelco

    compile warning

    By declaring two variable as s_date(sysdate-70) and e_date (sysdate-120) and then checking s_date >= oh.latest_ship_date and e_date <= oh.latest_ship_date When I compiled above codes, It compiled and did not get any warnings. I appreciate your help and this approach will be more efficient...
  6. nelco

    compile warning

    Warnings go away, if I comment out that condition. I will try to create two date variable and see if that helps. Thanks, Nelco
  7. nelco

    compile warning

    Data type is Date for latest_ship_date.
  8. nelco

    compile warning

    Thanks for answering my query. I was out of office for the past 2 days. I tried with the above suggested query but I stll get the same warning when I compile the body. I am using sql developer 11.1.1.54.40. My package works fine but I was just wondering, if I can avoid warnings. thanks, Nelco
  9. nelco

    compile warning

    I am getting warnings when I am compiling my package: Warning(70,17): PLW-07204: conversion away from column type may result in sub-optimal query plan. The errors are on these lines: sysdate >= (oh.latest_ship_date+70) and sysdate <= (oh.latest_ship_date+120) How can I fix these?. Thanks in...
  10. nelco

    creating text box dynamically.

    I appreciate your suggestions and I will do that.
  11. nelco

    creating text box dynamically.

    Thanks for the response and guidance. I appreciate. I came out with creating panels and I am displaying the panels on selectedIndexChanged. Looks like this works. Protected Sub SampleDropDownList_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles...
  12. nelco

    creating text box dynamically.

    I have a drop down box with none, name, email,phone. If the user clicks Email, it should show label enter email and text box to enter email with validator. Same thing with Phone or name. I have never done this in ASP.net. Any suggestions will be appreciated.
  13. nelco

    unique identifier

    I agree and I will be again talking to the client and convince. Thanks everyone for the answers.
  14. nelco

    unique identifier

    The user wants person who complains should have an identity number as this will be an anonymous form. I told them that I can show the number in Thank you page but user wants us to show number as soon as the form opens.
  15. nelco

    unique identifier

    From the database. GUID is a very long number.
  16. nelco

    unique identifier

    I am asked to create confidential fraud complaint form which will show unique identifier number on the form. How do I create this on page load event. This is the first time I am assigned a project like this. Any help, is appreciated.
  17. nelco

    Sync two scroll bars

    I have two list views which has scroll bars. I want to sync the two list views so that when one list view's scroll bar is used (to scroll), it scrolls the other list view as well so that they are in sync. Any idea how to acheive this in VB.net
  18. nelco

    Query help

    Well the start date could be 3-4 days before the start of next month ( end date) - for next month sale start date is 2009-05-29 00:00:00.000 and end date is 2009-06-16 00:00:00.000 and end date could be max 3-4 days after the end of previous month (start day) - for current month sale...
  19. nelco

    Query help

    This works good in most of the situation. There were minor syntax errors like getdate(). With your query: If start date is 2009-05-16 00:00:00.000 and end date is 2009-06-01 23:59:00.000 Month/sale it shows is 6/2009 instead of 5/2009
  20. nelco

    Query help

    This works good in most of the situation. There were minor syntax errors like getdate(). With your query: If start date is 2009-05-16 00:00:00.000 and end date is 2009-06-01 23:59:00.000 Month/sale it shows is 6/2010 instead of 5/2010.

Part and Inventory Search

Back
Top