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 gunawandjon

  1. gunawandjon

    Updates nightmare

    I have the same problem when trying to install SP3, but I haven't got a chance to install SR-1A Perhaps this URL can help you http://softserv.murdoch.edu.au/pub/mswin/Updates/Office2000/SP3/SP3INST.HTM
  2. gunawandjon

    "Find" using Javascript?

    On a second thought, is there a way to call the built-in find window like vbkris asked?
  3. gunawandjon

    "Find" using Javascript?

    thx 801119, I have found it here http://javascript.internet.com/messages/find-in-page.html?string=install
  4. gunawandjon

    Firewire hard drives really flaky

    Hi TurboAdam12, I am using IceCube FireWire HDD enclosure (w Oxford911 chipset)+ IWill Elink1394 (w Via chipset) + XP Pro SP1 And only if turned it on and connected it before I rebooted the PC the HDD will be recognised. Should it be a plug-n-play? Have you solve this problem?
  5. gunawandjon

    A quick look at Delphi future

    Is this mean that we can code a .NET apps with Delphi language? Then it is worth looking. If it is only another IDE for C# or VB.NET then why bother?
  6. gunawandjon

    Get the value of an Attribute in XSL

    Hi, in IE5.5 I get error Unknown method. -->count()<-- when using xsl:stylesheet xmlns:xsl=&quot;http://www.w3.org/TR/WD-xsl&quot; name space but using xsl:stylesheet version=&quot;1.0&quot; xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot; only return an empty result I am trying to...
  7. gunawandjon

    Using linking tags?

    This will make the &quot;title&quot; text as a hyperlink to &quot;maindoc&quot; <xsl:element name=&quot;a&quot;> <xsl:attribute name=&quot;href&quot;> <xsl:value-of select=&quot;maindoc&quot;/> </xsl:attribute> <xsl:value-of select=&quot;title&quot;/> </xsl:element>
  8. gunawandjon

    Problems with system.data.sqloledb

    This statement is case sensitive so try change using System.Data.OleDB; to using System.Data.OleDb;
  9. gunawandjon

    How to read a text file line by line and assign them to variables?

    Sorry, The loop section should be <cfloop list=&quot;#filecontents#&quot; delimiters=&quot;#crlf#&quot; index=&quot;logline&quot;> <BR>#listgetat(filecontents,1,&quot;,&quot;)# #listgetat(filecontents,2,&quot;,&quot;)#<BR> </cfloop> The above loop will display the result, if you want to...
  10. gunawandjon

    How to read a text file line by line and assign them to variables?

    Try this conventional way <cfset crlf = chr(13) & chr (10)> <cffile action=&quot;READ&quot; file=&quot;data001.txt&quot; variable=&quot;filecontents&quot;> <CFOUTPUT> No. of Records : #listlen(filecontents,crlf)# records </CFOUTPUT> <cfloop list=&quot;#filecontents#&quot...
  11. gunawandjon

    How to join tables from different datasources

    In Access: Create a link table that link to other database (using odbc). The new table then can be queried as it is in the first database.
  12. gunawandjon

    variable in variable

    How about: <cfmail to=&quot;ksc@qubus.net&quot; from=&quot;me&quot; subject=&quot;anything&quot;> #evaluate(i.longtext)# </cfmail>
  13. gunawandjon

    Hidding Internet Options

    May I know which registry entry that controls the Internet Option menu? Djon
  14. gunawandjon

    Validate File Formfield

    I have a similiar question: I want to validate a file formfield so user can only upload files which filename is no longer than 20 chars (include its extension) For example if they upload this file &quot;C:\Program Files\Macromedia\Dreamweaver 4\ResourcesOfInterest.htm&quot; it will rejected but...

Part and Inventory Search

Back
Top