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 Mike Lewis 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: ratzp
  • Order by date
  1. ratzp

    Refresh Problem

    I have create a Event Handler of Dynamic Save Button. it is working properly. But after Save if I press F5 or Refress Button. Thr Event Handler again executed and Save Duplicate Data. Provide Solution for the same. Thank You.
  2. ratzp

    custom setup

    hello everybody Any body has an idea how to use Custom Setup in .NET Have many queries Ratish
  3. ratzp

    JavaScript

    I have a select control written in HTML which has multiple selection.. Those values selected from the list has to copied to Text box.. Want a client side code written in JavaScript Ratish
  4. ratzp

    File Upload

    Any other solution you can provide Ratish
  5. ratzp

    File Upload

    I have a File Upload Control and a button which is NOT used for upload.. When I click this Button the File Selected with the File Upload control is cleared.. Need a solution Tried creating page directive AutoPostBack=false Need appropriate solution Thanks and regards Ratish
  6. ratzp

    Package and Deployment

    I have created a project .. Now i want to create a setup for it.. Now I have added a new Setup Project to the existing project. in the user interface window I have added a new Dialog which contains 4 TextBoxes.. I want to know how to trap the values of the 4 TextBoxes. and validate the...
  7. ratzp

    Tree View Control To XML

    its a window control... I want to save it an xml File For Eg: TreeView Root - ----- ChildNode - ChildNode1 - ----- ChildNode3 - ChildNode4 XML <Root> <ChildNode><ChildNode1/></ChildNode> <ChildNode3><ChildNode4/><ChildNode3> </Root>
  8. ratzp

    Tree View Control To XML

    Thanks jmeckley, I am adding or populatin the Treeview from the GUI Can you write a sample code for creating XML Node and Child Nodes... using XMLDocument and XMLNode etc (with Attributes) ratz
  9. ratzp

    Tree View Control To XML

    Can anybody help me out... I have a TreeView Control which has Nodes and ChildNodes I want to convert it into XML What is the easiest way to do it.. Ratz
  10. ratzp

    Data Transfer

    I hav a very serious problem using SQL Server and Oracle I have 2 Database having same structure one in Oracle and other in MSSQL 2000 I want to transfer Data from Oracle to SQL Server ---- Using Code con.CommandTimeout = 0 con.ConnectionTimeout = 0 con.Open "Provider=MSDASQL.1;Persist...
  11. ratzp

    Syntax Trouble

    sorry quotes missing again.. suppose this should help you out if you are using SQL Server: and one more thing just try not to use variables as date because date is a keyword.. Well the below code should work.. Check it out protected void Calendar1_SelectionChanged(object sender, EventArgs...
  12. ratzp

    Syntax Trouble

    I suppose this should help you out if you are using SQL Server: and one more thing just try not to use variables as date because date is a keyword.. Well the below code should work.. Check it out protected void Calendar1_SelectionChanged(object sender, EventArgs e) { string date =...
  13. ratzp

    Crystal Reports 8

    Hii chelseatech The Code will work fine if Crystal Report is installed but i dont want to install crystal report ... Thanks
  14. ratzp

    Crystal Reports 8

    I am doing it through the code.. I am not clicking on the Export Button --------The Code--------- set obj=cryReport obj.ExportOptions.DiskFileName = "Test.pdf" obj.ExportOptions.DestinationType = crEDTDiskFile obj.ExportOptions.FormatType = crEFTPortableDocFormat obj.Export False -----End...
  15. ratzp

    Crystal Reports 8

    I am using VB 6.0 and Crystal Reports 8... I need to know which all files are necessary for exporting the Crystal Report file (.rpt) to any other format say(.pdf) This is for the client as he is gonna use only our software and he dont hav crystal report at his place and also not intend to...
  16. ratzp

    Format Function

    I need to use the Format Function Which will display the current time even the milliseconds For eg : It should display 12:25:30.015
  17. ratzp

    CR Viewer

    I am using Crystal Report 8 and VB 6.0.. I can set the CR file to the CR Viewer.. But can anyone tell me how to find out the name of the File currently displayed in CR Viewer
  18. ratzp

    top Rows

    How to get from the Third Row to Second Last Row from a Table in one RecordSet
  19. ratzp

    SQL Procedure Error

    Thanks for the post.... I dont know what exactly the error is ..... For eg... If I insert a Duplicate entry which is a primary key column SQL gives Primary Key Violation Error with error line number etc... It takes the values from system.dbo.sysmessages I want the same message to appear...
  20. ratzp

    SQL Procedure Error

    I have written a Stored Procedure of around 50 lines... Well while executin it manually it does not give any error but while executin it via Application it executes a part of it but not in full.... how to find out the Error if its occuring Ratz

Part and Inventory Search

Back
Top