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 SkipVought 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. saroyal

    Does a VPN server need DNS or WINS

    Well the subject says it all really. I am setting up Windows 2000 server in a small office behind a firewall router and I was wanting to know if I need to configure it as a DNS and/or WINS server now it is a VPN server?
  2. saroyal

    IIS NT Login prompt showing up when it shouldn't

    I am developing a site for our company's Intranet. Part of the site denies anonymous access so that the web pages can pickup the login ID. We are using IIS 5 and IE 6 on Windows 200 so the domain/userID is sent when anonymous access is disabled. This is ok when the site is placed in a virtual...
  3. saroyal

    Dataset only fills from one page and not on another

    I have a dataset that only seems to fill with records on one page only, namely the page I was in when I clicked on "generate dataset". I can put the dataset in another page but after using dataadapter.fill(dataset) the dataset is always empty. The is 99% the same on both pages, the only...
  4. saroyal

    write xml problem - puts new items in wrong place

    It was my first real decnt go at using XML and indeed it was the XSD file. After defining a table relationship or so I finally got it to run correctly. Thanks Simon
  5. saroyal

    write xml problem - puts new items in wrong place

    I have read the following xml file into a dataset: <?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; ?> <listsource xmlns=&quot;http://tempuri.org/listsource.xsd&quot;> <listcount>3</listcount> <lastUpdated>2004-02-18</lastUpdated> <listitems> <item itemID=&quot;1&quot...
  6. saroyal

    New class inherits from System.Web.UI.Page error

    Many thanks as after I modified it to check the current context it worked. Simon
  7. saroyal

    New class inherits from System.Web.UI.Page error

    --code behind file-- using System; using System.Collections; using System.ComponentModel; using System.Data; using System.Drawing; using System.Web; using System.Web.SessionState; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.HtmlControls; namespace...
  8. saroyal

    New class inherits from System.Web.UI.Page error

    I have created a new class that inherits from System.Web.UI.Page and then I can alter the web form code behind file to inherit from this new class instead. This compiles and runs ok but when I try to open the web form in designer view it fails to open with error &quot;An exception occurred...
  9. saroyal

    Accessing cookie from more than one folder in IIS

    I have IIS setup to default to inetpup\wwwroot\main\default.htm. I then have another folder inetpub\login\ which logs users and stores info such as username and email address in a cookie. The web pages within the login folder can access the cookie, but the main folder cannot, nor can other...
  10. saroyal

    Attaching tables error in Access 2002

    I am wanting to attach tables after a user selects a datbase to source them from. Last time I wrote anything like this was in Access 97 so I must be doing something wrong and its probably staring me in the face but I still cannot fathom it. If I use the property dbAttachedTable then I get...
  11. saroyal

    IIS and SQL server on same/separate servers

    thanks for the info. simon
  12. saroyal

    Can't Reference Property unless Control has the focus...???

    i'm not sure why value works and not text property. text property is used in visual basic and there isn't a value property. if B1 holds the names of the controls you wish to access then instead of using B1(q) to access the control you should be able to use...
  13. saroyal

    Can't Reference Property unless Control has the focus...???

    if you are trying to alter what is displayed in the text box then use the .value property instead of .text simon
  14. saroyal

    IIS and SQL server on same/separate servers

    I have some ASP sites that connect to SQL datbases. Is there any short answer on whether it is better to have IIS and SQL server on the same server or separate servers? In our company one guy proposes the same server to reduce network traffice but others want separate servers as it suppose to...
  15. saroyal

    get path of an open database

    lol. i thought it would be something simple that i overlooked. thanks simon
  16. saroyal

    get path of an open database

    i have a database that needs to know the path in which it resides as it is likely to change from time to time. can the path be found from any of the database properties or through some api function? simon
  17. saroyal

    Run time query creation

    if creating a new query def then: Set querydef = CurrentDB.CreateQueryDef(queryname, strSQL) if amending an existing querydef then: Set querydef = CurrentDB.QueryDefs(queryname) querydef.sql = strSQL querydef.close
  18. saroyal

    Open form as dialog

    I want to know if it is possible to have one form open up another form as a dialog form without passing the acDialog parameter? simon
  19. saroyal

    Run time query creation

    here is an idea for step 1 (assuming i've understood what u want) are these check boxes related to some fields in a table so that checkbox 1 represents field 1 in table x? if so then each checkbox could be named as chkBox1, chkBox2, etc., and in the tag property of each checkbox could be the...
  20. saroyal

    Displaying an Excel file in a webpage

    Are you having problems saving asp files you are creating to the inetpub folder? Simon

Part and Inventory Search

Back
Top