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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by AppDev76

  1. AppDev76

    How to I dynamically show status

    I, I have an aspx page that on load creates a treeview. Loading the treeview takes a while and I want to show a message that the treeview is being loaded. Coming from windows forms I tried to do this: code: Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs)...
  2. AppDev76

    Treeview: tree does not appear / data does

    ISPrincess, Hi. I am having almost the same problem and was wondering if you were able to fix it. In my case everything works fine on the dev machine (the tree view works fine). But when I moved it to the production server, the treeview won't apear and only the data does (I have created the dll...
  3. AppDev76

    Build Server Controls Dynamically

    Never mind, I figured out how to do it: System.Web.UI.WebControls.TextBox tb = new TextBox(); tb.ID = "qa"+Reader["QuestionID"].ToString(); tb.TextMode=System.Web.UI.WebControls.TextBoxMode.MultiLine; tb.Height=50; tb.Width=220; Acell.Controls.Add(tb);
  4. AppDev76

    Build Server Controls Dynamically

    Hi, I am building a webpage for Surveys. I have many surveys and Each survey has many questions that change periodically. I want to build the survey pages so that the questions are displayed dynamically by reading from a database. Thats not a problem. The problem is that I have to create server...
  5. AppDev76

    How to call an ASP.NET Subroutine from a javascript function

    cesark, I was wondering if you ever found the solution cause I am facing the similar problem. I have a list box that I add items to it using java script, but when I use any server controls on the page (like calendar) the value go away! I need to invoke a C# function using java script so that I...
  6. AppDev76

    upgrade from Home to Pro causes fan to work constantly

    Thanks, thats what I just did and it solved the problem.
  7. AppDev76

    upgrade from Home to Pro causes fan to work constantly

    Thanks guys, I havn't touched the BIOS, I just used windows cd to do the fresh install, but I'm thinking that I may need to upgrade the BIOS. The other option is to use a fan utility to control it. Thanks
  8. AppDev76

    upgrade from Home to Pro causes fan to work constantly

    Thanks, I was wondering if there is some sort of settings in XP Pro that controls the fans.
  9. AppDev76

    upgrade from Home to Pro causes fan to work constantly

    Hi, I am having a strange problem. I have a SONY-VAIO PCV RX560. I wanted to upgrade it from XP Home to XP pro. The problem is that after upgrading to Pro (fresh install) the computer fan is working non stop! It used to work for a couple of minutes and then stop. The first time that I did the...
  10. AppDev76

    Passing an ntext parameter to a Stored Procedure

    Thanks for the fast reply! We've decided to do the exact same thing (##global temp table) I use SQL Server with ASP.NET and pass text fields with no problem, but I guess the temp table is better in this case. Thanks
  11. AppDev76

    Passing an ntext parameter to a Stored Procedure

    Hi, I have 2 sql server. A stored procedure on each. Stored procedure on server 1 needs to pass an ntext variable to sp on server 2 (this ntext parameter is basically an XML string). The problem is that since I can't declare a local varaible as ntext inside a stored procedure, I can't pass it to...
  12. AppDev76

    using the Deleted and Inserted tables

    Thanks for the fast response
  13. AppDev76

    using the Deleted and Inserted tables

    Hi, is it possible to use the Inserted and Deleted tables in a stored procedure or they can only be used with triggers? Thanks
  14. AppDev76

    How to hit a url without openning IE

    Never mind, I used MSXML2 Function Main() Dim xmlhttp Dim result Set xmlhttp = CreateObject("MSXML2.ServerXMLHTTP") xmlhttp.Open "GET", "myurl",true xmlhttp.Send Do While xmlhttp.readyState <> 4 Loop If Err.Number>0 Then Main=DTSTaskExecResult_Failure Else Main=...
  15. AppDev76

    How to hit a url without openning IE

    Hi, I have a package set up on a SQL Server, the first step is to hit an asp page. I initialy had the following vbscript code (under an Active X script task): ----------------- Function Main() Set ae = CreateObject("InternetExplorer.application.1") ae.visible=false ae.Navigate "http://myurl"...

Part and Inventory Search

Back
Top