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

  1. prakus

    What am I doing wrong???

    ...And thank you kaht for your suggestions/corrections too. I really appreciate them. PK
  2. prakus

    What am I doing wrong???

    You are right. I missed the quotes around the 'checkbox' and 'radio'. Thanks for your help. PK
  3. prakus

    What am I doing wrong???

    I realize that I donot have anything in my function that returns true. But what I am not able to understand is why the form gets submitted when nothing is checked. Should that scenario not mean that the value of 'sel' is still 'false' and the form should not be submitted? Any suggestions...
  4. prakus

    What am I doing wrong???

    I am trying this in IE 6 and IE 7. The OS is Win XP. I am expecting the script to prevent submiting the form if no checkbox is checked or if some checkbox is checked which has a radio button (associated with the record) that is not checked. I am not able to achive either scenarios. Thanks in...
  5. prakus

    What am I doing wrong???

    I have a set of records with a checkbox before each of them. Depending on a particular condition, there may be 2 radio buttons after each value(e.g. Record1). For records with radio buttons, I would like to ensure if the checkbox is checked for a record and then one of the following radio...
  6. prakus

    Validating multiple textboxes

    Thank you. That works great !!! PKS.
  7. prakus

    Validating multiple textboxes

    I have a form with multiple textboxes. The naming convention is dynamic (examples Tbx102, Tbx105 etc...). The number of textboxes are dynamic too. I need to limit the entry in each textbox to 50 characters and notify the user if he/she has exceeded the limit. Can someone help me with this...
  8. prakus

    How do I join field names with row values?

    I have two tables TblA and TblB Columns in TblA are (UID, UAbbr, UName,TID) Examples of some rows of TblA are UID UAbbr UName TID --- ----- ------------- ----- 1 C1 ClassA 1 2 C2 ClassB 1 3 C3 ClassC 1 5 C4 ClassE 1 6 C5 Grade4 1 10 C6 Grade5 1 Columns in TblB are (C1...
  9. prakus

    Passing dynamic variable in a DTS

    I have added a global variable 'FY' to the DTS package and used dynamic properties task to set its value. Now, how do I reference a global variable from a query? Can I have some help please? Thank you. PKS.
  10. prakus

    Passing dynamic variable in a DTS

    James, SERVER1 is already set as a linked Server on SERVER2. Still the query doesnot get parsed. The exact error is something like "Deferred prepare could not be completed." OLE DB provider 'SERVER1' doesnot contain table ""Fac"."dbo"."Fac_Ext_Parms"". The table either does not exist or the...
  11. prakus

    Passing dynamic variable in a DTS

    James, I apolozise for an error. Here is the corrected scenario. The DTS package resides on SERVER1. The code in red doesnot execute since the datasource is set to SERVER2 where the EMPLOYEE database resides and the query looks for data from SERVER1. Is there a way I can get the fiscal_year...
  12. prakus

    Passing dynamic variable in a DTS

    I have the following code to execute in a DTS package. The code in red doesnot execute since the DTS package resides on SERVER1 and the query looks for data from SERVER2. Is there away I can get that value as a dynamic variable and pass it on to this query. Some sample code will help. Thank...
  13. prakus

    Validating Radio buttons problem

    Thank you Jeff. I should have noticed that. Thank you very much. PKS.
  14. prakus

    Validating Radio buttons problem

    I have the following code for validating Radio buttons: When I select the radio button and submit, it gives me a message 'Please select a Section and press "Submit"'. I donot have any problem when there are more than one radio buttons to choose from. I am not able to figure out what the...
  15. prakus

    Radio button validation

    That works great. Thank you so much Dave. [smile][smile][smile] PKS.
  16. prakus

    Radio button validation

    I had posted a similar question earlier. I couldnot get the exact feedback I needed. So I am posting this question again. I hope I will find a solution to this problem. I have the a FORM for rearranging some records (number of records is dynamic). The code for the Form is : <SCRIPT...
  17. prakus

    Validation for Radio buttons

    I can manage to include the onClick with the radio buttons. I need some sample code for the validation using the getElementByID. Thank you. PKS.
  18. prakus

    Validation for Radio buttons

    Could I have some sample Code please? I am just getting started with javascript. Thank you. PKS.
  19. prakus

    Validation for Radio buttons

    I have the a FORM for rearranging some records (number of records is dynamic). The code for the Form is : <Form name='RearrangeSectionForm' Method='POST' Action='includes/updateSectionOrder.asp' onsubmit='return checkRadios(this);'> <table width='90%' align='left'> <tr><td width='20%'...

Part and Inventory Search

Back
Top