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

    ASP week calculation

    Guys, I am calculating no. of week using following code: Dim iFirstDate, iCurrDate, iNoWeeks, iyear, imonth, iday, iyear = year(date) imonth = month(date) iday = day(now) iFirstDate = DateSerial(iyear,1,1) iCurrDate = DateSerial(iyear,imonth,iday) iNoWeeks = DateDiff("ww", iFirstDate...
  2. MavrickStl

    Calling a function through button click event

    I am trying to call a function through a button click event. Ex: Response.write "<INPUT TYPE=""Submit"" VALUE=""Copy"" onClick=""return dataset()"">" Dataset() function should be able to return values returned by following query: Select Desc2 from XXXX where bla bla bla If there is...
  3. MavrickStl

    Java script for copying values from one form to another

    Guys, Is it possible to copy values from FORM - B (text field) to another form FORM - A (text field) using checkbox (on FORM -B) as selection criteria? Can someone point to me a sample code? . Form A and FORM B will be opened in different browser windows. FORM B will have a submit button...
  4. MavrickStl

    VB Script question - Copy text field from one form to another

    Guys, Is it possible to copy values from FORM - B (text field) to another form FORM - A using checkbox (on FORM -B) as selection criteria? Can someone point to me a sample code? I am using ASP. Thanks, Mav
  5. MavrickStl

    Simple VBA question - equivalent of sleep

    Guys, My excel macro runs a batch script using shell command and other VBA code. I would like to know what command in VB I can use to stop executing of VBA code until my batch script is finished. VBA code lines1 somewhere in between I am calling shell to run a batch file More VBA code lines2...
  6. MavrickStl

    Tomcat error - Can't get to jsp-examples

    Guys, I installed Tomcat5.0.19 on a solaris box. I am able to see welcome page and rest of the stuff just fine. When I tried to click on jsp-examples I get this error: HTTP Status 404 - /jsp-examples description The requested resource (/jsp-examples/) is not available. I tried to look into...
  7. MavrickStl

    Apache Tomcat 5 question

    I have two instances of tomcat 5.0.19 under: /usr/local/opt/jakarta-tomcat-5.0.19/tomcat5a and usr/local/opt/jakarta-tomcat-5.0.19/tomcat5b I went in server.xml of tomcat 5a (/usr/local/opt/jakarta-tomcat-5.0.19/tomcat5a/conf/server.xml) And changed default port 8080 to 15643 in the...
  8. MavrickStl

    changeling question for gurus

    This is changeling question for all the SQL server gurus out there. Can some point me in the right direction to accomplish following task on 2000 SQL Server. I am trying to figure out how to schedule a job, which runs on every third weekday of the month. I also would like to program it in such...
  9. MavrickStl

    IIS unattended install question

    Guys, I am trying to perform unattended IIS 5 install on Win 2000 server. Here are the details: After creating answer file I am typing following at the DOS prompt: C:\>sysocmgr.exe/i:%C:\Winnt%\inf\sysoc.inf /u:C:\IISinstall.txt After hitting enter key I am getting the following error: The...
  10. MavrickStl

    Batch file for automatic reboot

    Hi Guys, Can someone please give me some tips on how to write a batch file that will reboot NT server automatically at midnight every two weeks? Thanks, Mav
  11. MavrickStl

    Can anynody explain this?

    Hi Guys, I am trying to compile YesNoDialog.java file, which is used to put of Yes and No dialog box on the web page. When I compile YesNoDialog.java files it creates two class files: 1) YesNoDialog.class 2) YesNoDialog$1.class I have no idea what is YesNoDialog$1.class is been created for...
  12. MavrickStl

    Challenging question on SQL Server

    Hi Guys, Here is the problem I am facing: I am trying to change size of a column from char 8 - to char 10 in SQL Server 6.5. As far as I know there is no way you can do that in SQL Server 6.5. So to overcome this problem I generated SQL script of existing database with field size 8 and modify...
  13. MavrickStl

    Security Event Log problem

    Hi there, My NT server SECURITY event log is not recording anything in the event viewer. All the Log settings looking OK ex. Event log rapping set to: Overwrite Events as needed. I don’t know what the problem is? Any suggestions in this regard will be highly appreciated. Thanks, Mav
  14. MavrickStl

    what is GLBSSTUB ?

    Guys, I am trying to install a 16-bit application on Windows NT workstation with SP6. 80% in install I am getting this error &quot;GLBSSTUB caused a general protection error in module KRNL386.EXE at 0001:1E2E&quot;. My question is: 1) What is this GLBSSTUB? I have read somewhere that it a wise...
  15. MavrickStl

    Program installation problems on Win 2000

    Guys, I am trying to install a program on Win2000 professional with SP2 on it. When I try to run ex. SETUP.EXE I am getting an error after it is 80% complete. I think some files are missing from the install set. I think there is a DOS switch I can use to determine what files are missing from...
  16. MavrickStl

    Program installation question

    Guys, I am trying to install a program on WinNT workstation with SP6 on it. When I try to run ex. SETUP.EXE I am getting an error after it is 80% complete. I think some files are missing from the install set. I think there is a DOS switch I can use to determine what files are missing from the...
  17. MavrickStl

    NT Authority\SYSTEM question?

    I am new to NT Admin world. I see event 529 in my event log: event: 529 User: NT AUTHORITY\SYSTEM TYPE: Failure\Audit Description: Reason: Unknown user name or bad password UserName: pdcpatrol logon type: 3 Under Deccription I not only see pdcpatrol but other UserName like: ARCServe I have...
  18. MavrickStl

    SQL Server 6.5 - how to transfer DB from one server to another

    Hi there, I would like to copy a SQL server 6.5 database from one NT server to another NT server. What would be the best way to do that, so that not only it copies all the objects with data but all the other important stuff ex. user's etc.I am new to the DB world and SQL Server is my first DB...
  19. MavrickStl

    Forgot Administrator password

    Guys, I can't remember Administrator password to logon to Win2000 professional or any other password & UserId. Is there a way to reset the Admin Password ? Thanks, Mav
  20. MavrickStl

    Session Object problem

    Here is my dilemma I am storing FirstName and LastName of a person in a session object and displaying it on another page. I have two machines with Internet Explorer 5.x on both of them. On one machine I can do this without a problem, but on another machine (Win NT) my session object is losing...

Part and Inventory Search

Back
Top