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 TouchToneTommy 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: spangeman
  • Content: Threads
  • Order by date
  1. spangeman

    Tomcat Ubuntu Security

    I have installed tomcat on my Ubuntu Home 11.10 system and can successfully access the test page online after port forwarding on 8080 within my router. I have not made any other changes to the router, Ubuntu or the tomcat install, everything else has remained standard. I intend on using this to...
  2. spangeman

    XML, XSLT and CSS working together?

    Hi Could someone show me a quick example of having.... 1. Data in XML (simple dataset e.g. an address) 2. Doing an initial transformation for displaying that data using XSLT 3. Do some formatting using CSS. Three small code snippets (XML,XSLT,CSS) would do just to get me started. I realise...
  3. spangeman

    MS Access 2010 List Box - stuck on focus

    Hi, for some users my listbox on our Access forms seem to be getting the focus stuck on them. If the user tries to click on any other control on the form nothing happens, they can only select items in the listbox. The only way to get out of the focus is to press the escape key. Any ideas...
  4. spangeman

    ADO.Net - Populate dataset with sql server tables and relations

    Hi Is there an easy way of populating an ADO dataset with a set of tables (and their data) from SQL Server and then all their relations based on the Foreign Key constraints defined on the SQL server database. All examples I have seen online when googling show the relations being coded one by...
  5. spangeman

    C# Inheritance Design Question

    Hi All Complete newby question. I have some objects I want to generate and make available through a method that can be called to return them in a dictionary collection. There are a few different objects but they share some properties and methods so I thought this would be a good time to use...
  6. spangeman

    Put outlook folder items into a grid

    Hi Using an example I have written some code to put the contents of my outlook inbox into a string. How can I put the results into a grid on my form? I'd like to be able to select which fields go onto the form. Cheers Spange namespace OutlookExamples { public partial class Form1 : Form...
  7. spangeman

    Show which login a user is using to access database

    SQL 2000 Question - Logins / Groups / Users Hi, I tried some googling of this but didn't get very far. I have a user accessing the database via membership of a Windows NT group. The user should have read-only access to the database (as defined in their Database User) but they are actually...
  8. spangeman

    RegEx - Split Update Statement into back references

    Hi All I'm just starting to learn regular expressions using perl and am trying to write one to replace update statements in a text file using perl. The following seems to work fine:- UPDATE (.+) SET (.+) =(.+).WHERE (.+) = (.+) It allows me the back reference the table and column elements of...
  9. spangeman

    Is it possible to backup a SQL database without the data?

    So when you restore all you get is the tables,triggers etc but no data. Thanks Spangeman
  10. spangeman

    Backup without data

    Hi Is it possible to backup a SQL database without the data? So when you restore all you get is the tables,triggers etc i.e. but no data. Thanks Spangeman
  11. spangeman

    COUNT of records having more than 3 within a specfied time period

    Hi Everyone This is a little difficult to explain so please bear with me. I’ll use a simplified example to make it easier. I have a table called BOOKS and a table called ORDERS. BOOKS has the fields BOOK_ID, NAME and AUTHOR. ORDERS has the fields ORDERNO, DATE, CUSTOMER_NAME and BOOK_ID The...
  12. spangeman

    Data Grid - Select whole row when cell selected

    Hello I would like to be able to code my data grid (2005) so that when one cell is selected the whole row is selected instead. So everytime a cell is clicked on the whole row is selected as if the user had click to the far left to select the whole row. Cheers Spangeman
  13. spangeman

    C# Inheritance and Polymorphism Guidance

    I am missing something here with this topic, can someone please explain it? I have a base class class BaseClass { public void Test() { MessageBox.Show("Test"); } } Two sub classes class Class1 : BaseClass { public void...
  14. spangeman

    Insert into Multiple XML Files (Same Schema)

    Hi There We use XML configuration files in our VB6 application for holding things like connection strings, form titles etc. This way each user can have their own XML file which is validated by the application against an XSD before it is processed. This seems like a great idea until you add a...
  15. spangeman

    A dynamic SSIS package with Configuration file

    Hello I've been using a combination of SQL Scripts and SQL 2000 DTS packages for data transfer work for the past 18 months. I would like to start using SSIS instead but am not really sure where to start. I have managed to do a simple import in the SSIS environment but I would really like...
  16. spangeman

    PC Won't boot or even make a beep

    Hi there. Could you tell me what could cause my PC to:- Power up Fans on Mobo, power supply and graphics card start up Hard disks power up But then no beeps can be heard and nothing is printed on the screen. Cheers Spangeman
  17. spangeman

    Data Grid Selected Rows

    I would like to perform actions on multiple rows of data on a datagrid. However I only want to use those the user has selected by holding down the CTRL key and clicking each required row with the mouse. Is there a property of the grid that tells you what has been selected/highlighted by the...
  18. spangeman

    Execute multi lined SQL

    Hi there. Using ADO Dot Net could you show me how to execute multi-lined sql. For example I may have some SQL in a string like this that I want to execute string SqlToExecute = "UPDATE MYTABLE SET COL1 = 'FRED' WHERE COL2 = '1' GO" SqlToExecute = SqlToExecute + Environment.NewLine + "UPDATE...
  19. spangeman

    Merge Recordset

    Hello there. I'm working on a VB 6 application and I need to combine data from different ODBC data sources e.g. their could be one from a SQL DB and one from an excel spreadsheet. I can get all the data into ADO fine but is it then possible to merge the data based on some kind of join and...
  20. spangeman

    DB Design 2 FK's to same Primary Key Table

    Database design question for you all I want to save on data storage by having an address table which stores the address of many different tables in the database. This works fine in the following example:- Table - School SchoolID cola colb AddrID (FK to Address.AddrID) Table - Building...

Part and Inventory Search

Back
Top