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 SkipVought 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: snr
  • Order by date
  1. snr

    Urgent : Can I create/Open text file from Stored Procedure ?

    Thanks. But it is giving me syntax error at @FS, 'OpenTextFile', @FileID OUT, @FileName, 2, True Please help
  2. snr

    DTS Package does not run in Stored Procedure

    Thanks for your reply I checked that , and I observed that if there is data in table 1 from step1 , then it executes step 1 and creates the error file. If it doesn't have data , then it doesn't create the log file. In first case it writes that the task completed succesfully but doesn't do...
  3. snr

    DTS Package does not run in Stored Procedure

    Hi, I have a stored procedure where I am executing a dts package : SET @cmdString ='dtsrun /S WEBSRV /E /N Load_textFile ' EXEC master..xp_cmdshell @cmdString,no_output In this DTS package 1) Truncate existing Table 2) Load the text file in the table. The problem is , when executed...
  4. snr

    Urgent : Can I create/Open text file from Stored Procedure ?

    Thanks for the reply. I want to schedule the job , and I don't want vb or any other exe to run on the server. What I wnt to do is ----- 1) Open text file 2) pull out data from various tables by more than 1 queries in loop. 3) write the data to file. 4) close the file I can not divide the...
  5. snr

    Urgent : Can I create/Open text file from Stored Procedure ?

    Hi, I want to create a text file with a complicated format, so it will be very difficult by DTS. Can I open or create file from a stored procedure ? If yes , how ? Please help. Thanks
  6. snr

    Problem of "timeout Expired" when trying to execute a stored procedure

    Hi, I am trying to execute a stored procedure through VB application. If I run the stored procedure through Query Analyser , it takes around 1 min to complete. As I was getting this error, I tried writing con.ConnectionTimeout = 0 con.CommandTimeout = 0 But still its giving...
  7. snr

    Problem of "timeout Expired" when trying to execute a stored procedure

    Hi, I am trying to execute a stored procedure through VB application. If I run the stored procedure through Query Analyser , it takes around 1 min to complete. As I was getting this error, I tried writing con.ConnectionTimeout = 0 con.CommandTimeout = 0 But still its giving...
  8. snr

    How to get NT username in VB application ?

    Thanks a lot Alt255 ! It worked !!!!!!!!!
  9. snr

    HTML Editor Doesn't work.

    Hi, I have set HTML Editor as frontpage. But when I open IE6.0 , it gives me disabled EDIT option on toolbar. I don't know what the problem is.... may be registry ... Can anybody tell me what may be the problem , and how to solve that ? Thanks
  10. snr

    URGENT :: How to get form variable's value in javascript function ?

    Thanks link9 ...........It worked !
  11. snr

    URGENT :: How to get form variable's value in javascript function ?

    Using javascript on clientside how to retrieve the value in a text box ? For example , <asp:textbox id =&quot;box1&quot; /> box1 has value &quot;ABC&quot; I want to get this &quot;ABC&quot; using javascript on clientside function. Thanks
  12. snr

    URGENT :: How to get form variable's value in javascript function ?

    Hi , I want to use javascript for some simple client side validations, like if there are 2 textboexes, and if I write in second textbox, & first textbox is null , I want to give alert that first textbox value is null and the focus should be transfered to first textbox. For this I need to...
  13. snr

    URGENT :: How to get form variable's value in javascript function ?

    Hi , I want to use javascript for some simple client side validations, like if there are 2 textboexes, and if I write in second textbox, & first textbox is null , I want to give alert that first textbox value is null and the focus should be transfered to first textbox. For this I need to...
  14. snr

    Urgent ::: How to Print MsFlexGrid data ????

    I am populating msflexgrid by a database query ... I tried printing it by following code Printer.Orientation = vbPRORLandscape Picture1.Picture = grid_datasheet.Picture sScale = Printer.ScaleHeight * (grid_datasheet.Rows / 50) Printer.CurrentX = 100 Printer.Font = &quot;Arial&quot...
  15. snr

    How to go to the same location on the page when you submit the form

    Try using server.execute(&quot;page.asp&quot;)
  16. snr

    How to give users to download a zip file from an ASP page ?

    I have an ASP page , which requires a particular font. I want to give users the facility to download the font from the site ......... How to do that ? Is there any way , by which I can directly install the font on users machine ? Thanks....
  17. snr

    How to set focus on a textbox , after form.submit ?

    Nope !!!!!!!!!!! :-( it is still not working !
  18. snr

    How to set focus on a textbox , after form.submit ?

    I can see the cursor going to qty field , but is disappears. Can you suggest any other option ?
  19. snr

    How to set focus on a textbox , after form.submit ?

    I tried ...... it is giving error as document.order.qty is not an object. Shall I write this code in a function , and call it from a vbscript Sub , where I am submitting the form ? The problem is I am doing this kind of submit more than 3 times in my script. Each time depending on the text...
  20. snr

    How to set focus on a textbox , after form.submit ?

    I have a form , where for some reason I am submiting it, with action = &quot;<%=request.servervariables(&quot;script_name&quot;)%>&quot; i.e I am giving the self script name. It is working just fine. But the problem is , after it submits , and returns back , I want to set the focus on a...

Part and Inventory Search

Back
Top