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 wOOdy-Soft 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
  • Content: Threads
  • Order by date
  1. 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...
  2. 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
  3. 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...
  4. 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...
  5. 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
  6. 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...
  7. 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...
  8. 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 = "Arial&quot...
  9. 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....
  10. 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...
  11. snr

    How to access variable from subroutine or function in &lt;body&gt; ??

    Hi, I have defined a list box &quot;A&quot; in one form. Depending on the value of the list box item &quot;A&quot;, I have to create another list box &quot;B&quot;. How can get the value of A, to create a recordset for B? I have tried by writing onchange trigger on A ... But it doesnt...
  12. snr

    Disabled Edit option in IE for editing asp page in Interdev

    Hi, I am trying to open the asp file throught IE6.0 Edit option . Sometimes it gives that Edit option enabled , but most of the time it is disabled. Is this a problem of Interdev/Frontpage ? Or do I have to make some settings on server ? Or it has to do with Frontpage extensions ...
  13. snr

    Problem in Editing asp files in Frontpage From IE6.0

    Hi, I am trying to open the asp file throught IE6.0 Edit option in Frontpage. Sometimes it gives that Edit option enabled , but most of the time it is disabled. Yesterday, it was opening the asp file in my local &quot;temporary Internet files&quot; folder. I reinstalled Frontpage2002, &...
  14. snr

    How Can I increment a numeric field depending on a particular client ?

    Hi, I want a field similar to auto number . I want to set different starting number for different client. So whenever I add a record to table , the number appropriate to the client should increment. I don't want to do that manually , i.e I don't want to increment that field by adding 1 , each...
  15. snr

    How to access server's local drives ?

    Hi, I have some images on the server's local directory. I could see those images when I access the site through intranet. But it opens the client's C: when tries to access through internet. How can I prevent it ? Do I need to use servers get name type variables , or some getIP variables to...
  16. snr

    How to restrict access to a web page , though Web Server in ASP appl ?

    What settings I need to do on web server for restricting the default.htm site from the ASP application ? I want to restrict the site on NT user level .... Thanks.
  17. snr

    How to get NT username in VB application ?

    Depending on the NT login I want to show the options in the VB form. How can I get the windows username. We are using Windows 2000 ? thanks
  18. snr

    How can I assign value to a input text variable from another variable

    Hi, How can I assign value to a input text variable from another input text variable from the same form by onchange function ? For example : <table> <TR> <td>MY NAME </td> <input type=&quot;text&quot; name=&quot;iname&quot; onchange=getname(form)> </td> </TR> <TR> <td...
  19. snr

    Why msgbox doen't work in &lt;%@ Language=VBScript %&gt;?

    Why msgbox doen't work in <%@ Language=VBScript %> ? why we have to write <script Language=&quot;vbscript&quot;> Dim MyVar MyVar = MsgBox (&quot;TEST msgbox ! &quot;,4) </script> And even I can't access this myvar value outside this script.How can I access that variable ? as session also...
  20. snr

    How to install new font on Client machine through ASP application ??

    Our company has purchased a font ... In my ASP application I am using that font. How can I install that font , without going particularly to that client machine , and installing mannually ? Is there any way that I can include that font in application itself ? Thanks

Part and Inventory Search

Back
Top