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 bkrike 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 plork123

  1. plork123

    Adding a gif image to a richtextbox on a form

    is anyone able to show me an example of adding a gif to a richtextbox on a form. i have an image folder in my project and i want to use one the gif on a form. thanks for any help
  2. plork123

    ListViewItem adding button to each row

    hi there Is someone able to tell me how i programatically add a button to each row in a ListView? any help much appreciated
  3. plork123

    soap response help c#

    this is not my web service so have no control on what is returned. i get get the values in the first section of soap i posted above but i need to get the <multiRef id="id1" value of 123 can you give me an example of doing an xmldocument as a type? also do you know how i can get the raw soap...
  4. plork123

    soap response help c#

    hi all i'm calling a webservice using c# in a windows app that returns a complex type [] ComplextType [] complextType = null; complextType = service.getMethod(a, b, c, d) then iterating through to ge the results, here i'm using c# (visual studio 2005) inttli sense for (int i = 0; i <...
  5. plork123

    populating a combobox on a windows application

    Thanks for the help Is there a way to use this method but instead of an integer i pass a string value?
  6. plork123

    populating a combobox on a windows application

    I tring with frustration to populate a combo box in c# but not using a database e.g. combobox displays red white blue But want i want is if a person chooses red i want to pass back the number 1 value to another method i'm able to populate a combo box with the colours but not sure how i...
  7. plork123

    regex help

    thanks for your help
  8. plork123

    regex help

    i've got a reg ex that checks for nos only. i only put numbers in the input box but the code goes into the if statement and displays the alert. can someone shw me what i'm doing wrong? many thnaks var value = field.value; var numbers = /[^0-9]/; if (!numbers.test(value)) { alert...
  9. plork123

    regex help

    thank you i'll give that a try
  10. plork123

    regex help

    hi all, can someone show me a regular expression for this 01/07 (mm/yy) - first 2 have to be numbers, then followed by a slash then last 2 have to be numbers the first set of 2 numbers cannot be greater then 12 thanks for any help
  11. plork123

    transform a resultset

    hi all i'm doing a simple select statement and the results are being displyaed like this firstname lastname id type phone ------------------------------------------------------- Joe Blogs 1 Work 0123456789 Joe Blogs 1 Home 9876543210 I want the results deisplayed in...
  12. plork123

    php timeout

    cookie timeouts
  13. plork123

    php timeout

    thanks for the info do you have a simple test i can do to see if this works. i'm not familair with php and not sure how to create a siple file that will timeout and go back to a login page for eample many thanks
  14. plork123

    php timeout

    hi all, please can someone tell me what i need to do to set the idle timeout in php? many thanks for any help
  15. plork123

    escaping quotes

    i have a postgres function used by applications - but cannot rely on those applications to escape the parameters So i want to do it at the postgres end as a double check to make sure it doesn't fall over

Part and Inventory Search

Back
Top