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 bkrike 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: AppDev76
  • Content: Threads
  • Order by date
  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

    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...
  3. 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...
  4. 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...
  5. 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
  6. 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"...
  7. AppDev76

    Passing a recordset to a stored procedure

    Hi, I need to pass a recordset to a stored Procedure. Basically I'm retriving a set or records from a third-party application using API calls. I stored the returned set in a datatable. Now what I need to do is to pass these values to a stored Procedure , do some processing and then return the...
  8. AppDev76

    Databases won't appear in Enterprise Manager list

    Hi, I have a SQL Server (MSDE version) running on a remote server. Using the server ip address and sa account I have registered it in Enterprise Manager. It was working fine for a couple of month, but lately when I open enterprise manager the databases won't appear in the list;not even the...
  9. AppDev76

    Percentage field with 4 decimal

    Hi, I have a percentage field in one of my tables. I set the data type to float, I wan't 4 decimal places and the data in the table has 4 decimals, but when I run a query in query analyzer it returns: 4.4999999999999998E-2 instead of 0.045. How can I fix this?
  10. AppDev76

    Setting form recordsource to a stored procedure at runtime using vba

    Hi, I have a form that I use for adding and viewing records. I have a button that opens the form for adding records in a dataentry format and another button that opens the form for viewing and shows a specific record. The problem is that I need to change the recordsource of the form at runtime...
  11. AppDev76

    How would an image filed effect performace

    Hi, if designing a web application, would it make a differnce if an image field is in a table or the image field is saved in another table with a one-to-one relation. The assumption is that we won't be doing a "SELECT *" Thanks
  12. AppDev76

    Design question Order and OrderDetails ShipToAddress Fkeys

    hi, I'm designing a purchasing system. i have an orders and order details table. In the order table I need a ship to address. I have to options: 1.I can use a foreign key AddressID to reference an address in the Address table. The problem with this is if some one changes the address after an...
  13. AppDev76

    dynamically formating a listview based on data type

    Hi, i have a listview that I populate using a recordset. I need to format some fields,for example I have a currency field and a percentage field. How can I get the datatype of the retuned field in the recordset so that I can format the field properly. Thanks
  14. AppDev76

    Seting the value of a multi line text box,check box and combo box

    Hi, I was wondering how to set a default value of a text box (multi line),check box and combo box on a form to a session variable. I've got it working for single lines, but for some reason its not working for mulit line text boxes, check boxes and combo boxes. Thanks
  15. AppDev76

    Book Recomendation needed - Web App with VB.Net

    Hi, I am starting a project for building an e-commerce site. I will be using ASP.Net and MSDE 2000 (probably will upgrade to SQL Server later). I am familiar with asp and vbscript. I also have about a year and half experience with VBA and its development environment. I've also build a system in...
  16. AppDev76

    Adding bulk parent-child records

    Hi, I have a Orders and OrderDetails form for data entry. I know how to design parent child forms, but the problem here is that I want the user to add all the child records and then hit a "done" button. Then I will add the parent record and loop through the child records and add them to the...
  17. AppDev76

    Inserting Parent-Child relationships after validation

    Hi, I'm designing an asp page for registration. One parent can register many children. Problem: I want the parent to add all children and after he/she is done I want to insert them into the database all at once. In other words I want the parent to go through a wizard of adding all children and...
  18. AppDev76

    DataGrid control in msaccess

    Hi, I've seen the datagrid control on my "other controls" in my access toolbox, but for some reason when I'm trying to add it now it won't apear in the list! Which reference should I add to be able to view it? Thanks
  19. AppDev76

    creating a pane in MS Access form

    Hi, I was wondeing if its possible to create a pane on an access, somthing like outlook, where there are three panes/frames that are adjustible. Thanks
  20. AppDev76

    Ordering system data model

    Hi, (sorry if I'm not in the right forum but I didn't find a form for database design) I am designing an ordering system. I need to be able to accept orders from different objects: 1.Person 2.Division (departments) 3.Job Accounts In other words I can charge a purchase to a devision, person or a...

Part and Inventory Search

Back
Top