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 wOOdy-Soft 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 gibblin

  1. gibblin

    return attribute value containing certain characters

    hi, thanks for the reply, i'll let u know how i get on.
  2. gibblin

    return attribute value containing certain characters

    oh this is for a website being coded in php.
  3. gibblin

    return attribute value containing certain characters

    Hi, I have code which is working fine, it's picking up data from the following path:- path="/category/event[@name='Man U v Arsenal']/type[@name='Match']/@points"; However i need it to pick up all events where 'Arsenal' are involved, not just 'Man U v Arsenal'. So i need a 'like' statement or...
  4. gibblin

    Struggling to return xml attribute value from external url

    Hi, I have the following code from w3schools. ----------------------------------------------- <html> <body> <script type="text/javascript"> function loadXMLDoc(fname) { var xmlDoc; // code for IE if (window.ActiveXObject) { xmlDoc=new ActiveXObject("Microsoft.XMLDOM"); } // code for...
  5. gibblin

    Not counting or inserting all fields ???

    thanks for that, but it doesn't work. still have the same problem!
  6. gibblin

    Not counting or inserting all fields ???

    Hi, i'm tearing my hair out at this, i've got a submission form which is created from a mysql database. This works fine, it retrieves the data and creates fields for user input. i've got a table called 'games' where the game is either open or closed (open = yes/no). The form picks up which...
  7. gibblin

    What programming language to use??

    OK thanks to you both, on that advice i'll stick to the .NET application! Thanks again.
  8. gibblin

    What programming language to use??

    Hi there, sorry if this seems like a stupid question and one that can't really be answered (because there's pros and cons for all mainstream languages and everyone has their own preferences). My experience is mainly with VB. I have VB 2005 express and wanted to create a small system for...
  9. gibblin

    Listboxes, Multiple Selection &amp; Rowsource! Help!

    It's ok, i've finally figured it out. I made a few amendments, but this works perfectly. Thanks for your help. Dim varItem As Variant Dim strSQL As String If Lst1.ItemsSelected.Count <> 0 Then strSQL = "SELECT Data.Surname,Data.Forename from Data WHERE " For Each varItem In...
  10. gibblin

    Listboxes, Multiple Selection &amp; Rowsource! Help!

    I'm trying to incorporate this but it's not having it! It probably sounds dumb but what do i put in the SET statement? I've tried different things but in the end removed it And therefore it's not picking up the selected item from lst1. I tried strSql = strSql & "Competency = 'Tsk1'" just to...
  11. gibblin

    Listboxes, Multiple Selection &amp; Rowsource! Help!

    thanks for your reply, i'll try it out. unfortunately the database is at work and i'm not there til monday. But i will reply then.
  12. gibblin

    Listboxes, Multiple Selection &amp; Rowsource! Help!

    Many thanks for your reply. The data i've got is already in place from a spreadsheet which i'm trying to incorporate. The 'Tsk' field names were just generic ones i gave for the purposes of making my question a bit easier to understand. The real field names are a bit more complex. Regardless...
  13. gibblin

    Listboxes, Multiple Selection &amp; Rowsource! Help!

    I'm Currently building a database to track employees competencies. So certain people will be qualified to do certain tasks. E.g in a table called Data ive got Name Tsk1 Tsk2 Tsk3 Tsk4 Bob True True False False Billy False True True True Bryan True False...
  14. gibblin

    Database window size

    I'll have a look into them. Thanks for all your help everyone, appreciated.
  15. gibblin

    Database window size

    Hi, cheers for your reply i will have a look. However i've thought of another possibility, how about determining the DoCmd.movesize option of my forms depending on what resolution the screen is on start-up?

Part and Inventory Search

Back
Top