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 bkrike 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: staleb
  • Content: Threads
  • Order by date
  1. staleb

    YES/NO Popup

    Hi Can somone please help me out here. HAve been searching the web for a solution, without luck. Example I have a web page for storing orders. If the customers chooses product A the order should store normaly, but if product B is choosen, the customer should get an question YES/NO if he wants...
  2. staleb

    Calling a value in a script

    Hi How is the syntax for calling a string-value from a vb-script. I have: Sub Document() dim sPath as string = "\\myserver\test.doc" Dim script as string +++ script &= " set Doc = Word.Documents.Open('" & sPAth & "') " & vbCrLf ++++ Me.Page.RegisterStartupScript("Open", script) End Sub...
  3. staleb

    Running a script from code

    Hi Hope this is the right forum for this This is my scenario: The user decides what kind of document he wants to create. The document is created by the application and stored on the server. Since I dont know how to store the document directly on to the clients machine, I'm storing it on the...
  4. staleb

    Running a script from code

    Hi Hope this is the right forum for this This is my scenario: The user decides what kind of document he wants to create. The document is created by the application and stored on the server. Since I dont know how to store the document directly on to the clients machine, I'm storing it on the...
  5. staleb

    Crystal Report and Web-server

    Hi My application uses CrystalReport. I now want to publish my application, but my web-server people tells me that I shouldn't install the whole CrystalReport on the web-server. (It would cost to much money with licences and everything) I should only install thoose componente that I use. How...
  6. staleb

    Page Title

    Hi Can I change the title(head line) one my web-page. If so how. I want to have a dynamic page, where the title is depened on who logs on my page. Can I do this in my vb.code: my.page.title = "myname"
  7. staleb

    Open MSWord document

    Hi I dont now if this is the right forum to ask this question, but here I go. I want to open a MSWord document on the clients PC/MSWord, the solution I use now is this: <script language=vbscript runat=Server> <!-- sub OpenDoc(strLocation) set objWord =...
  8. staleb

    Open MSWord document

    Hi I dont now if this is the right forum to ask this question, but here I go. I want to open a MSWord document on the clients PC/MSWord, the solution I use now is this: <script language=vbscript runat=Server> <!-- sub OpenDoc(strLocation) set objWord =...
  9. staleb

    Script from .net code

    Hi, not sure if this is the right forum but here Go! I have a script I want to run from my code: Dim script as String script &= "<script language=""javascript"">" & vbCrLf script &= "<!--" & vbCrLf script &= " function VisBilde()" & vbCrLf script &= " {" & vbCrLf script &= " var url = ['" &...
  10. staleb

    MSWord and Asp

    I have an application that produces an word document on the server, and shows the web-link to the user. When the user clicks this link, the word-document is opened locally on the clients computer. I use this script to "transport" and open the the document: <script language = vbscript> <!-- dim...
  11. staleb

    DCOM Server Process Launcher

    Hi Dont now if this is the right forum to post this message, but here I go! On my developer machine(XP) my apllication works fine. But when I release it to my web-server (Windows 2000 server) it not all that fine. One of my functions is to create a MSWord (2002) document, DB-data. I get a...
  12. staleb

    Passing a url to a VBScript

    I am trying to pass an Url to a vb-script so that i can open a document: In HTML I pass the value like this: <a href="vbscript:" onclick="openDoc('<%# Me.P_WordIcon.AlternateText%>');return false;"> <width="16"><GEN:IMAGE NAME="WordIcon"></GEN:IMAGE> </a> Passing it to this script...
  13. staleb

    Autopoastback wont fire

    Hi I have several textboxes that autopostaback = true. When the user write something in it works fine. But as soons as I ("the application") sets the value the postback will not fire: Example: in my program u registrer new orders with an orderID. When I the user save the order the applivation...
  14. staleb

    MS Word and ASP.Net

    Our main application contains a vital feature that includes MS Word. Every document is named by the application and saved in the applications DB. We have a big collection of templates that we are using when the user create new documents. We are using bookmarks in the templates to day when we...
  15. staleb

    Formula Field and Dates

    In my application I pass my values into Formula fields dirctly: reportObject.DataDefinition.FormulaFields("Formula Filed").Text = "input box".text And my formula: formula = table.field When I does this with dates I get this error mesage: Error in formula <Dato>. '01.02.1999' The remaining...
  16. staleb

    Missing nr

    Hi I have been looking throug the threads in search for an answer. But couldnt fing one that I could turn in my favour My problem is: I have a table of cases which is given a specific nr. If the user enters two numbers, he would get a report showing the missing numbers between his interval...
  17. staleb

    Comparing dates

    HI I have several products: A,B,C.... their table consists of Name, Price and date The Date tells u from when the price is efective How would I find the efective price for any given date entered by the user?

Part and Inventory Search

Back
Top