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 SkipVought 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: weedz
  • Order by date
  1. weedz

    Cursor blinking through element

    Thanks for your reply, much appreciated. Weedz (Edward W.F. Veld)
  2. weedz

    Cursor blinking through element

    Thanks for your reply. The sample code is just to show the problem. The actual problem pops up when a menu option drops down and then covers an input control that happens to be there. I do not want to hide the input but to not have the cursor blink through the element that happens to cover the...
  3. weedz

    Cursor blinking through element

    I have the following problem specifically in IE. I have a basic html with an input control and a div. The div overlaps the input control using position:absolute. In essence covering the input control. In IE the cursor can still be seen blinking through the div element. HEre is my simple test...
  4. weedz

    Coding question, using WITH block type coding in PHP

    Sorry my record class is a simple one record only handler. My recordset class is just to show lists, walk through records, build dropdown lists etc. and doesn't do anything spectacular, but it serves its purpose. I just like to encapsulate data handling and not have SQL statements in my page...
  5. weedz

    Coding question, using WITH block type coding in PHP

    Thank you all for the quick response, much appreciated ! @jpadie I already do a lot inside my recordset class (that in its turn is based on my record class) for handling datasets. The build clauses are actually depending on external variables such as posted values in a page, that is why I do...
  6. weedz

    Coding question, using WITH block type coding in PHP

    Thanks. It is not laziness, but I find it more readable. My code now looks like this: $objRecordSet->selectionclause = BuildSelectionClause(); $objRecordSet->joinclause = BuildJoinClause(); $objRecordSet->whereclause = SetUpWhereClause(); $objRecordSet->orderbyclause =...
  7. weedz

    Coding question, using WITH block type coding in PHP

    Is it possible to use a VB/VFP etc WITH block type coding in PHP ? Like for example: With $object ->property = value; ->property2 = value2; ->dosomething(); End with TIA.
  8. weedz

    How can I check the img.src value for a certain value

    I knew it was a beginners mistake. Thnx !. Weedz (Edward W.F. Veld)
  9. weedz

    How can I check the img.src value for a certain value

    Thanks for the help. My (test) code can be found here: http://www.crowncappage.nl/test/test.html Weedz (Edward W.F. Veld)
  10. weedz

    How can I check the img.src value for a certain value

    Hi all, I am quite new to javascript so please excuse me if this is a beginners question. I need to check an images src value against a constant value. Here is what I do in words: I fill an array with paths to different images. When a user click on an image, it will be replaced by a randomly...
  11. weedz

    Using echo to export simple xml string adds an anomalous extra space

    Guys, I have solved the problem. First of all I changed the header: text/html => text/xml and removed an included php that had ob_start() in it, probably causing the extra space in the output. Thanks for your help anyhow, much appreciated ! Weedz (Edward W.F. Veld)
  12. weedz

    Using echo to export simple xml string adds an anomalous extra space

    I have made a simple routine in which I build an xml string (no schema or validation). After building the string I export it to the user using the echo function. In my header I have the following: <?php session_start(); ?> <?php header("Content-Type: text/html; charset=utf-8");?> <?php...
  13. weedz

    faq184-2483

    Thanks Slighthaze !! ;-) I must say that I find it frustrating as well when you have put effort in something just to help someone out and you never know if it was helpfull because you never received any response on the things you have posted. It is like talking to a firewall ;-) Anyhow, it is...
  14. weedz

    Bar Code Software

    Just a reminder, some barcodereaders use prefixes and suffixes (most are programmable). Standards are <enter> as suffix and <tab> as a prefix. Reading a barcode is not the hard part. if you use a keyboard wedge barcode reader it will just send the dat to the keyboard buffer and windows will...
  15. weedz

    Data-type prefixes in VFP code

    IF have been doing VB fo the last year, after 5 years of Fox (FP26 and VFP) and I must say that in the beginning the notations used in VB looked odd to me as well. But I guess it is just a matter of getting used to...;-) Since VFP is a weak typing language (at least used to be, haven't fully...
  16. weedz

    export file over ftp

    I can remember that I have experimented with some shareware classes that were available at: http://www.west-wind.com/wwIPStuff.asp They were quite handy to use. HTH, Weedz (Edward W.F. Veld) My private project:http://www.crowncap.demon.nl\info\crwnbase Download the CrownBase source code !!
  17. weedz

    New Products and Accounting Products

    Well, here is my 2 cents: http://www.accountview.com is written in VFP and they won the 1999 Visual FoxPro excellence award. The package has got an integrated System Development Kit for VAR's to add their functionality (new functionality, db tables/fields/adjusted screens etc.). HTH, Weedz...
  18. weedz

    Errors found in vcx...how to find what is calling these bmps

    What you can do as well, is to convert you vcx to code classes using the class browser, this enables you to do a simple text search, so you can find out in which classes these bmp's are used. Most projects use a subdriectory to store all graphics of that project. If you add that path to you SET...
  19. weedz

    activate to toolbar save button using getfldstate()

    Ok., no problem, I am in the bosses time anyhow ;-) (Note that this is a simple solution, as you could see in my little app I used a somewhat complexer approach using sublclassing etc.) Step 1: Create a form with input controls and action buttons Step 2: Put a timer on that form and set the...
  20. weedz

    activate to toolbar save button using getfldstate()

    Hi Kosta, You can download the full source code at this link http://www.crowncap.demon.nl\info\crwnbase Weedz (Edward W.F. Veld) My private project:http://www.crowncap.demon.nl\info\crwnbase Download the CrownBase source code !!

Part and Inventory Search

Back
Top