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!

Recent content by basil3legs

  1. basil3legs

    Cross Domain sending between child window and iframe

    Hi, I have created some javascript that reads data from a web page, creates an iframe with a form in it which autosubmits to a php page on another domain. This then returns some information to the original page using javascript's postMessage with an EventListener on the original page. This is...
  2. basil3legs

    Editing a textarea in a child window

    OK, I have now resolved this. javascript: var win2=window.open("webpage.php"); var x = setTimeout("win2.top.document.forms[0].getElementById('message').value='123';",1000); Does indeed work fine. Thanks for the help.
  3. basil3legs

    Editing a textarea in a child window

    Aha, now that makes sense. However, when I try using setTimeout it clears the parent window and puts a number between 1 and 4 on it. On clicking back on this page, it does the update. I now have: javascript: var a=window.open("webpage.php"); timeout =...
  4. basil3legs

    Editing a textarea in a child window

    I have tried everything I can think of to put text in a textarea in a child window opened via javascript. I can't get it to work. However, someone else had a look at this and came up with (which does work): javascript: var a=window.open("webpage.php"); alert(a.top)...
  5. basil3legs

    POSTing with requestWriter but not wanting a response

    I am using requestWriter to post to a website but as it takes ages for a response to come back, is there any way of sending the data and leaving it at that? I have tried removing the GetResponse parts but that doesn't seem to work. As the code stands (see below) it works fine but is too slow...
  6. basil3legs

    POSTing to a website but no response wanted.

    Ah! Sorry, wrong forum - this is VB 2005! Will post there instead.
  7. basil3legs

    POSTing to a website but no response wanted.

    I am using requestWriter to post to a website but as it takes ages for a response to come back, is there any way of sending the data and leaving it at that? I have tried removing the GetResponse parts but that doesn't seem to work. As the code stands (see below) it works fine but is too slow...
  8. basil3legs

    Multiple writes from Excel to Access

    Hi Mike, By the looks of the data, it appears Copy1 couldn't see it's own changes it had just made as often data needs writing to the same record (but different fields) consecutively 6 or 7 times and there were up to 6 or 7 duplicates of some records and as there is no set order for the data...
  9. basil3legs

    Multiple writes from Excel to Access

    Well, I have tried rmikesmith's idea and it seemed to help with the database locking problem (or at least this week it did as it tends to be a bit intermittent but hopefully it does) but there is a major problem with it!! If a record does not exist, the record is added, if it already exists...
  10. basil3legs

    Multiple writes from Excel to Access

    PHV I think that will be of no use to me as Excel is doing all the work, Access is only holding the data. rmikesmith, now that's a thought. I originally wrote it to keep the connection open only for short periods when writing to try and avoid this type of problem as much as possible. I will...
  11. basil3legs

    Multiple writes from Excel to Access

    Hi, I have an Excel spreadsheet which writes loads of data to an Access database and takes ages to run as most of the information is downloaded from tables on the internet. I have found that if I split the spreadsheet in 2 and run both copies at the same time with each doing half the work, it...
  12. basil3legs

    Reading Hyperlinks from Pictures in Excel

    OK, ignore this question, I have sussed it!! It should be pic.Hyperlink.Address and then it works fine!!
  13. basil3legs

    Reading Hyperlinks from Pictures in Excel

    Hi, I have a spreadsheet where I cut and paste a web-page to one of the pages and then strip data from it using VBA (the webpage won't let me import it using a web-query). On this page there are numerous pictures with hyperlinks attached. How can I get the hyperlinks from these pictures...
  14. basil3legs

    Replacing strange foreign characters in Excel 2000 VBA

    AMCCoder, that looks like it will work fine, thanks (wasn't aware of the CHRW and ASCW functions). Temporarily I was writing the text to a cell and then reading it back from another cell with a SUBSTITUTE formula in it which worked fine until Excel kindly loaded one of the webpages over it and...
  15. basil3legs

    Replacing strange foreign characters in Excel 2000 VBA

    the non-accented character (as previously stated) - C with an acute accent over it needs replacing with a C etc. The 2 Turkish characters which are now ?s (they looked right when this was previewed before posting) were an S with a cedilla under it and a G with a curved line above it which need...

Part and Inventory Search

Back
Top