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

    SQL update not working with Access 97

    Hi The problem is that rs_updateOrder expects a recordset from conn.Execute statement . Just do conn.Execute order Balajee
  2. balajees

    Multiple single quotes problem----Very Urgent !!

    Hi No need to specify a single quote in the filter. Just specify a double quote(""-twice) , it will work fine. ie rs.filter="Description = ""BPD LUCKNOW(260)"" and TERRITORYNAME=""M'UNGR,B'NORE,I(602)""" Balajee
  3. balajees

    DTS Help

    Hi, I need to transfer data from MsAccess to SQL Server using Visual Basic Programming (DTS References). I came across many samples which showed transformation only between two sql server databases. Can anyone help me. Thanks in advance, BALAJEE
  4. balajees

    DTS Help

    Hi, I need to transfer data from MsAccess to SQL Server using Visual Basic Programming (DTS References). I came across many samples which showed transformation only between two sql server databases. Can any help me. Thanks in advance, BALAJEE
  5. balajees

    pass a variable type table to a store procedure

    Hi, There is no such variable type table.You can use a varchar type to pass its name and perform the required the operation. Balajees
  6. balajees

    User Defined Data Types in Temporary Tables

    Hi, I created a new User Defined Data type in my database. In one of my StoredProcedures , I created a temporary table and used that data type for one of the fields. On executing the stored procedure , it says cannot find that data type. Can't user defined data types be used in temporary...
  7. balajees

    divide function

    Hi, There is no such function in VBScript. We have to write our own function. Here is a sample. <% Function rest(xValue,xDivisor) Dim modvalue modvalue = xValue mod xDivisor rest = modvalue % xDivisor End Function %> Regards, balajees
  8. balajees

    Reset button

    Hi, Clicking on the reset button , the values of all the elements in the form will be set to the value which was at the time of page loading. We wont be able to change the function of reset button. Instead we can write our own reset function with the help of a simpe button. regards, balajees
  9. balajees

    ASP and Access (make table query)

    Hi 1) It is possible to run a create table query from an asp page. ex: <% Connection.Execute &quot;create table student(no int,name varchar(10))&quot; %> 2) We can query and database object from as ASP page. Regards, balajees
  10. balajees

    capturing value of drop down in an IFRAME

    Hi You can refer the iframe using self.frames['nameoftheiframe'] ex: <iframe name=DataFrame src='data.asp' > </iframe> you can refer the contents of the iframe as self.frames['DataFrame'].document.form1.text1.value balajees
  11. balajees

    the report change but the screen remain gray...... why?

    Hi Submit the form after the record is retrieved. balajee
  12. balajees

    how to carry the value from one form to another?

    Hi Haijun, you can use the following code for your problem <form name=SampleForm action='sample.asp' method=post> <input type=text name=EmpName value='<%=Request.Form(&quot;EmpName&quot;)%>'> <input type=text name=EmpAge value='=Request.Form(&quot;EmpAge&quot;)'> <input type=text...

Part and Inventory Search

Back
Top