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: *

  • Users: Aamin
  • Order by date
  1. Aamin

    Site Hanging on Occasion

    No, they did not provide me with any logs. They said that the server that the site is on has other sites on it as well and that those sites never have a prb when this site goes down. They said that i should try using DSN instead becuz it has a built-in Conneciton Pooling element that may help...
  2. Aamin

    Site Hanging on Occasion

    I talked to the ISP and they concluded that the code that creates the DB connection and recordsets have to be modified. I examined the code again and found a couple of files that I suspect may be the prb. The following is from an include file <adovbs.inc> that is included with each page: ' ADO...
  3. Aamin

    Site Hanging on Occasion

    I have a site that I maintain for a bookstore and recently it hangs whenever users try to access the home page or any other page. The browser page goes white and it seems as though its trying to find the page but it never does. I believe there is something wrong on the server side but my ISP...
  4. Aamin

    Site Hangs Occasionally

    I talked to the ISP and they concluded that the code that creates the DB connection and recordsets have to be modified. I examined the code again and found a couple of files that I suspect may be the prb. The following is from an include file <adovbs.inc> that is included with each page: ' ADO...
  5. Aamin

    Site Hangs Occasionally

    Hey Billy, I had the same idea of duplicating the site to another server. The client isn't happy with their ISP anyway so we'll wait until they're ready to make the switch. Do you think that tags that are in UPPERCASE would cause this prb? For instance, each page has the following piece of...
  6. Aamin

    Site Hangs Occasionally

    I have a site that I maintain for a bookstore and recently it hangs whenever users try to access the home page or any other page. The browser page goes white and it seems as though its trying to find the page but it never does. I believe there is something wrong on the server side but my ISP...
  7. Aamin

    Setting X and Y Coordinates of a form when it loads

    I have a MDI form that holds several child forms. I need the child forms to open at a particular location each time they are loaded. So for instance, I have a maximized MDI form that has a menu bar across the top. When i choose File-New-Member, the New Member Screen will open within the MDI...
  8. Aamin

    Attach IMG to Page After Button Click...

    I have an online registration form that the user has to fill-out in order to register a customer. Part of the form includes a section where the user needs to attach a picture of the customer onto the form that he/she is filling out (at this point the user has already taken the customer's picture...
  9. Aamin

    Recordcount = -1 , Why?

    I got it to work this way: set cmd4 = CreateObject("ADODB.Command") set rs = server.createobject("adodb.recordset" ) cmd4.ActiveConnection = conn cmd4.CommandText = "SELECT * FROM Customer Where CustLicenseNum = '" & custlnum & "'" rs.open cmd4,,1,3 I have another prb also...I need to attach...
  10. Aamin

    Recordcount = -1 , Why?

    ...After I open the connection, I have the following code: Set RS = Server.CreateObject("ADODB.Recordset") strq = "SELECT * FROM Customer Where CustLicenseNum = '" & custlnum & "'" set RS = conn.Execute(strq) if (RS.RecordCount < 1) then '"There were no records found. Please try your...
  11. Aamin

    How To Attach Files to a Customer Registration Form

    Im working on a registration form that requires the user to attach a picture taken from a webcam to the form before it is submitted. I want the picture taken with the webcam and stored in a temp. folder where they will access it using the Browse button on the registration page. After the image...
  12. Aamin

    Working with Session Variables Between Pages

    OK, another question: In this statement, <a href='page2.asp?txtSiteId=SITEID(i)'> is the querystring element being populated when the page first loads or when user clicks on the link? My goal is to populate the element when the page is loaded so that each company that is listed has a siteid...
  13. Aamin

    Working with Session Variables Between Pages

    FROM PAGE1.ASP: ... ... if session("icount") > 1 then 'Populate Arrays from Search page companyname = session("companyname") searchaddress = session("searchaddress") SITEID = session("id") prov = session("prov") city = session("city") 'Create Table response.write("<tr>")...
  14. Aamin

    Working with Session Variables Between Pages

    Hey DreX, thx for your help. How do I incorporate querystrings into Hrefs exactly?
  15. Aamin

    Working with Session Variables Between Pages

    This is what i have: (from page1.asp...) <% for i = 0 to (session("icount") - 1) response.write("<tr>") response.write("<td><a href='page2.asp')> ") response.write(companyname(i) + "</a></td>" next %> The user will be presented with a list of companies. WHen the user clicks on a company...
  16. Aamin

    I can't open forms to review visual components

    I am currently working on a project and I can edit the code but VB won't allow me to double-click the form name from the project window in order to view the form and its components. THe prgram says that it has generated errors and needs to restart...Help!
  17. Aamin

    sorting output?

    How do i get a list to be printed within a picBox sorted in alphabetical order? I already know how to use the print method (picDisplay.Print...); but i need to sort records that are being inputted from a file in notepad. ...Thanks to those who helped with my database question; i'm still...
  18. Aamin

    How do i create a database for a business using VB6?

    I need assiatance in developing a program for a friend of mine. She plans weddings and events and she needs a program that allows her to add customer profiles(Name, address, etc.), keep track of orders made by each customer, be able to analyze accounting info, and print invoices. I know that i...

Part and Inventory Search

Back
Top