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!

Recent content by spangeman

  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

    Thanks I couldn't do it like that as I'm using an old 2003 datagrid which doesn't have that property. I did this instead:- private void DataGrid_CurrentCellChanged(object sender, EventArgs e) { DataGrid.Select(DataGrid.CurrentRowIndex); } Seemed to do the trick. Cheers Spangeman...
  13. 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
  14. 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...

Part and Inventory Search

Back
Top