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

  • Users: wf
  • Content: Threads
  • Order by date
  1. wf

    How to assign a page to a frame

    I want to assign a zzz.htm to a frame when my page loads. I know how to do it in a link but that's not what I want. Thanks for any help...
  2. wf

    Can I see server variables from my client code

    I am looking a value from a table in a server code. Then I want to assign this value to a html textbox but I can't. How can I do that? This is more or less my code: <SCRIPT LANGUAGE=vbscript RUNAT=Server> x = rstrecordset.Fields(&quot;fecha_nac&quot;) y =...
  3. wf

    Validating a Field

    How can I validate a field when it lost it's focus? I used the onblur event but it doesn't work or I don't know how to use it. Thanks.
  4. wf

    Blank or Null Fields

    I have two fields in a table: Field1 Field2 My record has data only on Field2: 27 I've a query that says: {table.Field1} = '27' or {table.Field2} = '27' This doesn't bring me anything. But if I change the order of the query, that is asking for Field2 first...
  5. wf

    Sum and Group by

    I want to add a formula to my report that calculates the sum of a premium. Ex: PolicyNumber Riesgo Bank Premium 123 1 1 50 123 1 2 50 In the table these are two independent records one of them have 30 in the premium and the other one has 20, so...
  6. wf

    Value from a DTC-grid

    How can I get the value of one cell in a DTC-grid? Maybe in a click event or something like that.
  7. wf

    Performance too slow

    I'm using a recordset DTC and a grid DTC. My recordset's source of data is a SQL Statement not a Database Object. The problem is that when opening the page it is extremely slow. It gave me a connection time out. But when I'm running the same query from SQL Plus it runs very fast. Any help...
  8. wf

    Passing a query from visual interdev to crystal reports

    Well I think my subject say it all, what I want is to pass a complete select statement from visual interdev to crytal reports. Thanks
  9. wf

    Last Day of Month

    I need a function where I send a year and a month (The year for february - leap year) and it returns me the last day of the month. Does anyone has any?
  10. wf

    Views and Indexes

    I've created a view extracting rows from one table. Then I created another view which calculates a value. Then I created a third view that makes a join of these previous views. The problem is that accessing the data is too slow. I'm accessing it from Visual Interdev sending some selection...
  11. wf

    Passing an SQL Query to a Crystal Report

    I want to pass a complete query to a Crystal Report from Visual Interdev. I'm calling the report with this intruction: strUrl = &quot;http://AAA/scrreports/Bank.rpt?user0=abc&password0=123&sf=&quot; & SelFor & &quot;&quot; where SelFor is a variable that has my selection formula. But instead...
  12. wf

    Join Query

    I want to do a union query like this one in crytal reports 8.0. SELECT Pol, ENT_1ER, LN_1ER FROM tabla610 WHERE ENT_1ER ='27' UNION SELECT Pol, ENT_2DO, Ln_2do FROM tabla610 where ent_2do ='27' UNION SELECT Pol, Ent_3er, ln_3er from tabla610 where ent_3er ='27' This query runs...
  13. wf

    Adding values to a Select control at run-time

    I need to add values to a select control (HTML DropDown Control) at run-time. Please help!!!
  14. wf

    Accesing a DTC checkbox from the client side

    Well, the subject is explicit but I'll explain it in detail. I have a DTC checkbox and I want to know if it's checked or unchecked but asking from the client side. I've tried: thisform.checkbox1.value - but that allways return &quot;Checkbox1&quot; Any help?
  15. wf

    Accessing a control of one page from another

    I have a page where the user filters data and another page where I have the recordset control. With the filter criteria I want to create a query than I can assign to the recordset in the other page. How can I do that? Someone told me to use the page object. But really, I don't know how to do...
  16. wf

    Refreshing Scripting Object Model

    I have to make a change to the path of the scripting object model but I don't know how. In my project the _ScriptLibrary is in the root of the project but in the server is in a subfolder so I have to change it when I copy my pages to the server. But I tried to check the 'Enable Scripting...
  17. wf

    Crystal Reports Formulas &amp; Visual Interdev

    I'm trying to send a formula to crystal report from visual interdev like this one, but I have problems. strUrl = &quot;http://lrst/scrreports/NewAgency.rpt?user0=xyz&amp;password0=abc&amp;sf={apellido_benef} like 'strLastName%'&quot; My problem really is in the selection formula. Any help?
  18. wf

    gatekeeper

    Someone left me an asp page with the following code: Dim DbManager ' dim object variable Set DbManager = Server.CreateObject(&quot;ard.gatekeeper&quot;) 'instantiate gatekeeper object And I get the following error when accesing the page: An exception of type 'Server object: 006~ASP...
  19. wf

    Passing Parameters with Crystal Reports

    I have the following link instruction that calls a Crystal Report report: <A HREF=&quot;http://xa/xe/test.rpt?user0=dolphin&amp;password0=water25&quot; TARGET=_new> <CENTER>Production Report</CENTER></A> But the paramaters that I'm passing are seeing on the address line. What can I do...
  20. wf

    How to open a new window when you access a link

    I want to open a new window when I click on a link, like window.open does (not like window.navigate). I also want that that new page doesn't has the internet toolbar(the one with the print and back buttons). EX: I want exactly the same thing as when I click on the &quot;Tell a friend&quot...

Part and Inventory Search

Back
Top