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

    accesing UDF on another server

    I tried to access UDF(that is stotred in 2nd serevr) via the Linked Server but I discovered that only tables and views can be access with the linked server (If i'm right). how is possible to access the UDF from one sql server to another ??? Rgds, zuZa
  2. zuza

    Loop until given Value

    Thanks guys! It's fine now, cause on_save evrrytime I defaulted b to 1, so I put it as public declaration max_value and variable b for looping. Rgds
  3. zuza

    Loop until given Value

    I tried and like this ... but same thing ! Is not not going out from the loop !? rgds
  4. zuza

    Loop until given Value

    Yes on msgbox I'm getting the right value ...for 'a' AND declaration is like this Dim a As Variant Dim b As Double Rgds, ZuZa.
  5. zuza

    Loop until given Value

    Skip, a is value that user select from the dropdown, so entry has to go 'till that value ... is maximum of the Entering the fields above into the table. No solution 'till now ZuZa.
  6. zuza

    Loop until given Value

    Again, it's looping 'till no end ... and to the given value a ... under c) I didn't get you. Thnx, ZuZa
  7. zuza

    Loop until given Value

    Dear all, this peace fo code is not working, enntering into table records through looping for a given value(limit): a - is value that user enters(selects from combo in this case), so adding of records should end to this up to this value. This code below is looping to the end is not stoping to...
  8. zuza

    Finding claims after the status 'case closed'

    Dear all, I will start wil an example, it is a table with history like: Claimno ---- Status ---- Datest ds001123 notified 12/01/04 ds001123 Case closed 12/03/04 ds001123 decision 12/09/04 By the rule 'Case closed' should be the last status, so how to find...
  9. zuza

    Transfer of data from Ms word to MS excel spreadsheet

    Hello there, I'm asked to develop the automatic transfer from standardized forms (word docs) to a standardized excel spreadsheet? We have data (name, addresses, etc.) that is currently copy and pasted manual from the word documents to the excel spreadsheet. Can this be automized somehow with...
  10. zuza

    Transfer of data from Ms word to MS excel spreadsheet

    Hello there, I'm asked to develop the automatic transfer from standardized forms (word docs) to a standardized excel spreadsheet? We have data (name, addresses, etc.) that is currently copy and pasted manual from the word documents to the excel spreadsheet. Can this be automized somehow with...
  11. zuza

    displaying records through rows

    Thanks a lot, I'm trying but is not even reading the part of asp for displaying on rows: Can you please check where can the problem be? ---------------------------------- <% @language = VBScript %> <html> <title>WWWW</title> <body> <% strSQL = "select claimno from vewMissingClaims" Set DB...
  12. zuza

    displaying records through rows

    hello there, I have to display in output only first field of the table called Claimno and there are 4000 records approximately.But to loop through these normally with one column is not the point. How can it be displayed for intance: DS002233 DS009971 DS009988 DSr.... DS004455 DS009973 DS009991...
  13. zuza

    action=&quot;openWin('asppage.asp')&quot;

    Hello there, I want the results page of form action to pop-up, but is not working, can please somebody help me on this?? I have a function : <script language="JavaScript"> <!-- function openWin(fajlli) {...
  14. zuza

    The isnull function requires 2 arguments.

    Dear all, I will apreciate if somebody could help me on this one : SELECT qryPubication.ClaimNo, qryPubication.StreetNameP AS StrA, qryPubication.StreetNoP AS StrB, IIf(IsNull([StrB]),[StrA],(LTrim([StrA])+", "+[StrB])) AS StrC, IIf(IsNull(lTrim([BuildNo]))," ",(lTrim([Buildno]))) AS Buil...
  15. zuza

    print friendly version

    dear all, I want to add print version of the asp page, for html page I found a javascript file, like this: <script language="JavaScript"> var gAutoPrint = true; // Flag for whether or not to automatically call the print function function printSpecial() { if (document.getElementById != null)...
  16. zuza

    invalid class name

    With component is OK now, the problem is in showing the graph with OWC 10 - Office XP. I have downloaded e file ChartGif.exe and installed it the directory serverchart on inetpub (I follow the instructions for Office XP) the example from the internet. Then with Regsvr32...
  17. zuza

    invalid class name

    Hi there, I'm trying to make charts with ASP via OWC component/control. I download owc10.exe from Microsoft Downloads and I install it in my PC, but OWC.Chart is not valid - invalid class. What I have to do else in order to install this component on IIS and continue making charts. Thanks a...
  18. zuza

    Chart statistics with asp

    Hello there, can you please suggest me on HOW TO DESIGN CHARTS WITH ASP WITH A SOURCE ON SQL-SERVER. Is there a way to find any free source code on internet and to design it by myself or I heard that you can buy controls that somebody else has design it and intergrate it in my website. Thnx in...
  19. zuza

    Executing UDF with an input parameter

    Thnx, this one is OK. [code] str = "SELECT top 1 statusnew from getNewStatusByDS('" & claimno & "')" & " order by datemax desc" [code] Rgds.
  20. zuza

    Executing UDF with an input parameter

    Hi there, I want to execute UDF with input parameter claimno = request.form(claimno) ... how do I have to write the statement, for instance: str="select top 1 statusnew from getNewStatusByDS(" & "'Claimno'" & ") order by datemax desc" Or in different way ... maybe completely wrong. ciao, ZuZa.

Part and Inventory Search

Back
Top