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 strongm 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
  • 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

    Hi cLFlaVA, I am using ASP. Form A contains several textarea fields. Data in textarea field is resulting from SQL statements - querying a Oracle DB. Let's say Form - A contains weekly status report for week 10. Form - A will have a button at the bottom called COPY. If user hits that button a...
  4. 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...
  5. MavrickStl

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

    tsuji, Well, It works, but I have FORM A and FORM B on two different browser windows. FROM - B will have a submit button for uses's to click after they have used the check box criteria for text they want to copy onto a text box on form - A. Any thoughts ..... Mav
  6. MavrickStl

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

    Thanks tsuji, I am going to try this and will let you know the results. I appreciate it. mav
  7. 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
  8. 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...
  9. 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...
  10. 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...
  11. 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...
  12. 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...
  13. 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
  14. 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...
  15. 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...
  16. MavrickStl

    Security Event Log problem

    Thanks Man, I really appreciate it. Mav
  17. 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
  18. MavrickStl

    Program installation question

    PateH2, Thanks for your response. 80% in install I am getting the following error: &quot;GLBSSTUB caused a general protection error in module KRNL386.EXE at 0001:1E2E&quot;. After doing little more research I found out that the install set for the application (16 bit VB application) was...
  19. MavrickStl

    Program installation problems on Win 2000

    Wolluf, Jocsta, Eguy: First of all thanks for your response. 80% in install I am getting the following error: &quot;GLBSSTUB caused a general protection error in module KRNL386.EXE at 0001:1E2E&quot;. After doing little more research I found out that the install set for the application (16...
  20. MavrickStl

    what is GLBSSTUB ?

    wolluf. Thanks for your reply. Yes, they are part of the same problem. I posted it in both the forms because I am experiencing the same problem on NT and Win2000. After doing little more research I found out that the install set for the application (16 bit VB application) was prepared using...

Part and Inventory Search

Back
Top