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!

Search results for query: *

  • Users: Craig0201
  • Content: Threads
  • Order by date
  1. Craig0201

    Can't access localhost.......

    I've installed IIS on a dev machine, as i've done plenty of times before. Set up for anonymous access. Except.....it asks for a password. And even when I supply it with a valid username and password, it fails. I've no idea why at all! Any ideas, anyone? C
  2. Craig0201

    OleDB failing to return data

    Hi, I have got a problem getting OLEDB to return any data. The connection is set up as this.conn = new System.Data.OleDb.OleDbConnection(); // // conn // this.conn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\\NeuroForm\\Database\\Neuroform.mdb;User...
  3. Craig0201

    What pattern is this???

    I need to create a collection. The rules by which the objects in the collection are created and added are dynamic. There may be one or more rules to use. It's like advanced Builder from what I can gather but how to go further is puzzling me, somewhat. Thanks for the help in advance. Craig
  4. Craig0201

    Header Row

    Hi, Is there any way I can add a header or footer row to an output text file using the jobs available in SQL Server 7? Craig
  5. Craig0201

    Add Header and Footer to text file

    I have some precreated text files which at present need headers and footers adding to them by hand. I cannot see a way of doing this at source as the header and footer do not have the same number of columns as the main data and SQL DTS requires a valid SQL statement. What would be the best way...
  6. Craig0201

    DomainObject Equivalent

    Hi, What's the equivalent in .Net to Java's domain object? Craig
  7. Craig0201

    DomainObject Equivalent

    Hi, I've got some Java code that I think will be extremely useful in my current project but it uses DomainObject heavily. What's the equivalent .Net class? Craig
  8. Craig0201

    Stop Insert Trigger Firing

    Hi, I have an insert trigger which changes some data and records an entry in a log table. The changes cause the update trigger which records a further entry in the log file. How can I stop the update trigger from firing when the data is changed by the insert trigger? Craig
  9. Craig0201

    Name From Enum Value

    Hello! Anyone know how I can return the name of the constant from an enum value? Craig
  10. Craig0201

    Intercept HTTP Post

    Anyone know how I can intercept what my IE6 browser is posting to a server? I want to automate a login process on a web server and need to know how I can pass it the user name and password. The webserver is remote and not mine. Craig
  11. Craig0201

    UK Contracting and IR35

    Help!!! I'm being interviewed for my first contract next Thursday and in need of desperate advice on how to ensure I don't fall foul of IR35. I am considering using an umbrella company to employ me and have the contract let to them. Has anyone done this? Does it work? I need the cash, not...
  12. Craig0201

    Cast based upon PropertyInfo

    Hi all..... I want to be able to cast using CType (or similar) to a value based upon the type returned from an instance of PropertyInfo. The name of the property is held in an array. So in my head, this runs like... Dim _PI As PropertyInfo = _Object.GetType().GetProperty(_RegexArray(2, j))...
  13. Craig0201

    Releasing Resources

    Hi all..... Where is the best place to release a resource? I'm streaming HTML via the WebResponse class and want to know where I should close the WebResponse. Should this be in the finalise method of my class? Craig
  14. Craig0201

    Looping to create joins

    Hi, Very stumped so all help appreciated.... I've got a table containing a hierarchy and a second table with the date in. In the second table, there is a self-join so that a record relates to a parent record in the same table. The number of parents relates to the number or records in the...
  15. Craig0201

    Variable Convert

    Hi, I've got 2 tables to store some custom attributes in my app, Custom_Attribute and Custom_Attribute_Value. The data is stored in a varchar field in Custom_Attribute_Value but the 'true' datatype is stored in Custom_Attribute (i.e. a bit or an int is stored in a varchar). How can I do a...
  16. Craig0201

    Binding Custom Collection to a Combobox in a User Control

    Hi, Long winded title I know but hey! OK, i've got a custom collection of objects inherited from System.Collection.CollectionBase that is populated as an app opens and placed in a global variable. As my form is opened, a property on the UserControl is passed the collection. As the property...
  17. Craig0201

    Should I throw an exception

    Hi all, Advice needed. I'm setting a property in an object that can only accept certain values. How do I respond if the value is set to on of the disallowed values? At the moment, I am throwing an ArgumentOutOfRangeException but this seems like a silly idea as the attempted entry of these...
  18. Craig0201

    DTS Subquery

    Hi, I'm trying to create a data warehouse in SQL Server using DTS to extract the data from Oracle Financials. I can't guarantee the time of day (or if) the data will be transformed. I therefore need to be able to compare the max of the last update date to the date held in Oracle to ensure I...
  19. Craig0201

    Master DB on MSDE

    Hi, I've installed MSDE on my laptop (not big enough to take SQL Server, damn....) but i'm not getting a Master DB. What have I missed or done incorrectly? Craig
  20. Craig0201

    Similar Classes......Or are they the same?

    Hi, Best to explain this by analogy..... Imagine a 100 Metre track and field race. A race contains a number of runners each of which produces a performance. A runner has a number a performances over a number of races. Races and runners therefore both contain the collection object...

Part and Inventory Search

Back
Top