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 IamaSherpa 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: MikeL04
  • Order by date
  1. MikeL04

    Possible to hyperlink to a specific slide in a PPT file?

    Thank you for the comments. Adamroof, yes I have looked into the idea of MS Office Automation but it is not reccomended by MS for use in clent/server apps such as in ASP.Net So I am trying to avoid it at all costs. I did find how to link to an individual slide: Slides within a presentation...
  2. MikeL04

    Possible to hyperlink to a specific slide in a PPT file?

    I need to search the contents of a PowerPoint file and if any matches are found then provide a hyperlink to the PPT on the slide where the match was found. Is this even possible? I have done a tonne of searching on the subject with no luck. Thanks for any and all help or suggestions. Mike
  3. MikeL04

    SqlDataAdapter use results in SQL Server processes 'AWAITING COMMAND'?

    Hello mukluk, I have since resolved the issue and actually I was wrong when assuming it was due to the DataAdapter. In my case I had a class (say MyPage) that inherits from System.Web.UI.Page that is used for all aspx pages that provides the user and role control and application config etc...
  4. MikeL04

    Need help with a stored procedure, re-ordering hierarchal data

    Wow, I never thought of doing it that way. (obviously since I used a cursor!) Thanks for taking the time to go through the whole thing and provide an alternate method! I told the PM that it was working and that was good enough for him, however I am definately going to be trying your method and...
  5. MikeL04

    Need help with a stored procedure, re-ordering hierarchal data

    Well I got it to do what I wanted and it is working great, however the only way I could think of doing it was using a cursor which I would like to avoid if at all possible. Below is the completed proc (with a cursor.. yuk) and its output. Any ideas how to accomplish this without using a...
  6. MikeL04

    Need help with a stored procedure, re-ordering hierarchal data

    I have a stored procedure that receives two comma separated lists, parsing them and inserting into a temp table. Selecting from the temp table shows what I am working with: ParentID PageID MenuOrder ----------- ----------- ----------- 1 6 5 1 3...
  7. MikeL04

    SqlDataAdapter use results in SQL Server processes 'AWAITING COMMAND'?

    Thanks for the response but I found it. We have a class (say MyPage) that inherits from System.Web.UI.Page that we use for all our aspx pages that provides the user and role control and application config etc. In this class a cusom translator class is instantiated opening a db connection and...
  8. MikeL04

    SqlDataAdapter use results in SQL Server processes 'AWAITING COMMAND'?

    I originally posted this in the ASP.Net forum but have not recieved a reponse and the problem is getting worse with SQL Server 2000 maintaining many proceses for what seems to be no reason. The SQL stored proc is listed at the bottom of this post. I have a web app in ASP.Net that uses a Data...
  9. MikeL04

    SqlDataAdapter use results in SQL Server processes 'AWAITING COMMAND'?

    I originally posted this in the ASP.Net forum but have not recieved a reponse and the problem is getting worse with SQL Server 2000 maintaining many proceses for what seems to be no reason. The SQL stored proc is listed at the bottom of this post. I have a web app in ASP.Net that uses a Data...
  10. MikeL04

    SqlDataAdapter use results in SQL Server processes 'AWAITING COMMAND'?

    I have a web app in ASP.Net that uses a Data Access Logic Component that has the following method to return a DataRow to the calling business logic. This may be called 10+ times on rendering the aspx page to the client depending on the number of pannels with dynamic help on a page. I have ran...
  11. MikeL04

    OnItemCommand event not firing for Repeater?

    Nevermind, I figured it out. I was dynamically loading my UserControls based on the user type of the application and was only doing so in the container page if IsPostBack=False. Because of this the UserControl above wasn't being reloaded on PostBack when the ImageButtons were clicked and thus...
  12. MikeL04

    VS.Net 2003

    I havent't had a problem with it, however you wont be able to open it in VS.NET 2002, so If you are colaborating with a team on this project and not everyone has 2003 I would keep using 2002. The conversion hassn't messed anything up for me... yet. Mike
  13. MikeL04

    OnItemCommand event not firing for Repeater?

    I have an OnItemCommand event not firing for a Repeater control using VB.NET for ASP.NET and I can't figure out why!? I have a UserControl with the following Repeater: <asp:repeater id=&quot;RepeaterMemberList&quot; OnItemCommand=&quot;ImageButton_ItemCommand&quot; runat=&quot;server&quot;>...
  14. MikeL04

    d/l doc/pdf from behind SSL service invoked by email? Any ideas?

    Hello all, I need a way of delivering documents in an email by means of a link or links to a pdf/document in an email. I was thinking that I could create a page on a public website which takes the parameters passed via the link in the querystring to validate the user and invokes a webservice...
  15. MikeL04

    Ideas on a document management / portal application?

    Hello all, Not sure if this is the ideal forum to post this question but since the end solution will be ASP.Net it seemed like a descent fit. There is a project I am working on which is essentialy a custom protal app with some document management integrated into it. We are considering an...
  16. MikeL04

    Extended StoredProc causing error.

    Thanks for the replys guys. I didn't know there was a dependency checker, that would have been helpful. I was about to try the regsvr32 method but first thought I would trry and install the whole .Net SDK eventhough there is no way that would have anything to do with it. What trying that did...
  17. MikeL04

    Extended StoredProc causing error.

    Hello all, I am having some difficulty getting a extended stored proc to work on SQL2000 on a 2000 box. I wrote an extended proc that uses tcp/ip to send specified data to a specified ip and port. I wrote it in c++7 (.net) and installed it on MSDE sql2000 on my xp box and it runs perfect...
  18. MikeL04

    Continually poll db for changes and update display as nec.

    Thanks for all the replies and ideas. Sorry it took me so long to reply but I was off on vacation for a bit. Anyways,I have gone ahead and prototyped an extended stored proc that acts as a TCP/IP client app that connects to a server app on the same machine and sends the EventId which inturn is...

Part and Inventory Search

Back
Top