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

  1. digiman1134

    Web Statistics

    how do I set up in server 2003 IIS 6.0 to do web usage statistics?
  2. digiman1134

    MSSQL Databse query with vbscript

    I don't know how to script serverside, if somebody would be so kind as to point me towards a tutorial, I would be able to build this script much better
  3. digiman1134

    MSSQL Databse query with vbscript

    it is being hosted on an intranet and doesn't need to be serverside, this is going to be used to generate reports that need to be accessible to everyone on the network, so the script needs to be clientside, built into the website we use to control the entire plant
  4. digiman1134

    MSSQL Databse query with vbscript

    My problem is that I am creating a web page that should query a MSSQL database table, and then after querying that table would take only one of the columns and put it into a drop down list form so that it could be chosen and plugged into a second script where it would be used to generate a...
  5. digiman1134

    Query MSSQL Database with VBScript

    can you show me how I would use the ADO.Recordset object?, I'm not sure how to use it
  6. digiman1134

    Query MSSQL Database with VBScript

    this is the code I have so far, where do I pull the value from? DIM MMS DIM MMS1 DIM MMS2 Function GetReportButton_onclick() SET MMS = CreateObject("ADODB.Connection") MMS.ConnectionString = "Provider=MSDASQL.1;Password=reports;Persist Security Info=True;User ID=reports;Data Source=Aberdeen...
  7. digiman1134

    Query MSSQL Database with VBScript

    well, my problem was that I was creating a web page that would query a MSSQL database table, and then after querying that table would take only one of the columns and put it into a drop down list form so that it could be chosen and plugged into a second script where it would be used to generate...
  8. digiman1134

    Query MSSQL Database with VBScript

    okay, I solved that, next problem, how do I make it display on the screen?, how do I, maybe, put it into a dropdown form
  9. digiman1134

    Query MSSQL Database with VBScript

    my call to CREATOBJECT works, and as you said Sheco, when you put in "something silly" it doesn't give any errors, so I think I am just putting the server name and stuff into the incorrect syntax, could somebody please help me know which is the correct syntax, again, the VB is Set dbsMMS =...
  10. digiman1134

    Query MSSQL Database with VBScript

    right now the only line giving me any real error is the Connectionstring line MMS.ConnectionString = "PROVIDER=SQLOLEDB;DATA SOURCE=MMS;UID=abdreports;PWD=abdreports"
  11. digiman1134

    Query MSSQL Database with VBScript

    this is the connectstring in VB6 how would this translate into vbscript Set dbsMMS = OpenDatabase("MMSDowntime", dbDriverNoPrompt, True, "ODBC;DSN=MMSDowntime;UID=*****;PWD=*****;")
  12. digiman1134

    Query MSSQL Database with VBScript

    I am trying to query a MSSQl database in my vbscript, could anybody tell me what I'm doing wrong, if anything other than just having the servername wrong Function GetReportButton_onclick() SET MMS = CreateObject("ADODB.Connection") MMS.ConnectionString = "PROVIDER=SQLOLEDB;DATA...
  13. digiman1134

    HTML forms and VBScript

    thanx that helped, I've got it working now
  14. digiman1134

    HTML forms and VBScript

    I need some help, I am trying to pass along a variable from an HTML form, a text box onto a VBScript, how would I do this?
  15. digiman1134

    VBScript open new window

    thank you, but I think i've figured it out, I just needed to move my function out of the head and into the body at the end, and then use Calendar.day, calendar.month, and claendar.year as the values
  16. digiman1134

    VBScript open new window

    well, I fixed that problem, but now I have another, the variables I am trying to pass along to the URL aren't working, any ideas, here is the complete script I'm using <html> <head> <title>Batter Usage Totals JScript</title> <script type="text/vbscript"> // Declare Global Variables Dim...
  17. digiman1134

    VBScript open new window

    well, the variable that I have declared has 173 characters, but it also has three sets of quotation marks inside of it (") so if I put it right into the window.open function, it edits out what is in those quotations, and I really need those because they plug in values from a form I have on the...
  18. digiman1134

    VBScript open new window

    confunction is the variable I name in the script, it is passing along a URL, that is very long, and VBScript has trouble processing, I am using IE
  19. digiman1134

    VBScript open new window

    I am trying to make a new window pop up in VBScript I am using a open (mid(confunction, 1, 180)) function could sombeody please tell me why it isn't popping up the window and paramaters I am naming in the confunction function it opens a new window, but not the one I am requesting, if this...

Part and Inventory Search

Back
Top