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 Mike Lewis 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. SeanJansson

    DTS - Get package from custom task

    Using visual basic 6, I have written 2 DTS Custom Tasks. Lets call them task1 and task2. At the edit properties stage of task2, I would like to determine if there are any occurences of task1 present. If I could get a handle on the package, I would be away. But how ? I think it must be...
  2. SeanJansson

    ContentType MSWord requesting relogin

    The web site I work on requires a login before you can access it. When you've logged in once, you do not need to log in again for that session. Pretty straight forward. However I sometimes have problems when I add the following code at the top of my asp page. <% Response.ContentType =...
  3. SeanJansson

    Why is SQL 2000 running slower than SQL 7 !!!!!!!

    We have a query that runs about 25% slower on SQL 2000. SQL Server 2000 running on Windows 2000 server versus SQL Server 7 running on Windows NT 4 workstation Both installations are on identically specified machines. The query was doing aggregation and has 'plenty' of group by clauses...
  4. SeanJansson

    Dragging an object between windows

    Thanks for letting me know that it can at least be done Michael. However I was hoping for some pointers as to how to go about coding it. Do I use ondragstart,onmouseup,onmousedown? How can the mouse be changed to the usual &quot;can't drop here&quot; type icon when over the desktop, etc...
  5. SeanJansson

    Dragging an object between windows

    Using javascript. Can anybody tell me how to drag an object from one browser window & drop it on another. I'm only concerned with 95/98/NT operating systems. cheers.
  6. SeanJansson

    Printing on Headed Paper

    Is there any way I can detect the printable area of a printer device from within my ASP page ?<br> <br> I am trying to print to headed paper. Text needs to appear at an absolute position on the letterhead. For Example, the word &quot;date&quot; appears on my letterhead and I have to insert the...
  7. SeanJansson

    Enterprise Manager - Not Responding !!!

    <br> Hello and thanks for bothering to read this...<br> <br> I start SQL Server 6.5 Enterprise Manager. The server manager lists the available servers, and they all have the little green light. I click on any server, and it expands to show the SQL Mail, SQL Exectutive, DTC, DB Devices, etc...
  8. SeanJansson

    Is SQL 6.5 year 2000 compliant ?

    <br> Cheers John.<br> <br> We need to load the SP, then we'll be fine.<br> <br> Seán.<br> <br>
  9. SeanJansson

    Is SQL 6.5 year 2000 compliant ?

    <br> 1. Can anyone tell me if SQL Server 6.5 is Y2K compliant?<br> <br> 2. Is a specific patch required to make it so?<br> <br> Cheers <br> Seán.
  10. SeanJansson

    How can I pass a table name to a stored procedure

    <br> Try using EXEC...<br> <br> declare @MyTable varchar (50)<br> SELECT @MyTable = "sysObjects"<br> <br> EXEC ("SELECT * FROM " + @MyTable)<br> <br> Seán.<br> <br>
  11. SeanJansson

    Executing code

    I just tried it and it works.<br> Here's an example.<br> <br> In a new project drop a ScriptControl(see below), 2 Labels, 2 big TextBoxs & 2 CommandButtons onto a new form. Then paste in the following code<br> ------------------------------------------------------------<br> Option Explicit<br>...
  12. SeanJansson

    Executing code

    My colleague says...<br> <br> By using the vbscript control, you can expose objects in your application to the global namespace.<br> <br> So you would expose your form as say theForm and in the textbox type <br> <br> sub() <br> theForm.Show <br> end sub <br> <br> On your lostfocus event on the...
  13. SeanJansson

    Executing code

    <br> I think that you should consider using "VBScript". <br> <br> A colleague demonstrated a VB5 app to me. A form, a textbox and a button. Type into the text box click the button and it executed (interpreted) the code. No need to predict the code entered with the "if ... then" stuff above.<br>...

Part and Inventory Search

Back
Top