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 TouchToneTommy 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 year2000

  1. year2000

    Total Threads and Posts in a Forum

    Please help me writing the sql query, to return total numbers of THREADS and POSTs for each forum. I have 3 tables- 1) FORUM [ForumID,Title,Description] 2) THREADS [ThreadID,ForumID,Title,Description] 3) POSTS [PostID,ThreadID,Description,postedOn] So you can easily identify the relationship in...
  2. year2000

    Unicode character display problem in IE 5.X

    Hi, I am working on a multilingual site, which requires us to display various languages, stored as Unicode in SQL Server 2000. We need to retrieve those stored languages an display it in browser document. I am using HTML document charset as UTF-8 for this functionality. IE 6.0 is displaying...
  3. year2000

    Setting User specified text in Flash 5 button

    Hi, As per my requirement, I want to set the flash 5.0 button caption dynamically using dynamic text. Actually I am working on a multilingual web tool. I want to change the button caption as per the language selected by the application user. I need to to pass various text strings in flash...
  4. year2000

    How to import data from text and XML file to oracle database table?

    Yes becoz when you start TOAD, it always asks for username and password. Without proper authentication, you can not use its features, then obviously I was connected to database. Moreover in TOAD SQL* Loader wizard, there is no option for specifying username /password. The exact message I am...
  5. year2000

    How to import data from text and XML file to oracle database table?

    Hi, I am facing a problem. I want to load data from text file (comma delimited) to oracle database table. I tried using SQL* loader, which requires a control file. I created a control file for the same using TOAD (SQL* Loader wizard), but to my dismay, after execution it shows an error...
  6. year2000

    Can I use two XSL files in an XML page???

    Hi, My problem is that, I want to use two different XSL files in one XML page for different tags.So that few nodes can be viewed by one XSL and others, using next XSL. can I write following lines for implementing two different display rules in single XML...
  7. year2000

    Image Swap Behavior

    WHy you want to use onload event for image swap. You can use onclick or onmouseover for the same.
  8. year2000

    Dreamweaver and downloads

    Hi Bastien, I have just checked your code snippet. In that code block, you have specified as --------------------------------------------- fw_menu_1.addMenuItem(\"Download\",\"location='BastienKoertRes3.doc'\" ); --------------------------------------------- All you need...
  9. year2000

    Layers off when previewed in netscape

    You are right Mr. Flasher, I have just checked your page in IE, its working fine but it wont show the same effect in NEtscape. Becoz Netscape 4 does not support the position:absolute property of Style sheet. All you need to do is to check for browser using Javascript code and if browser is...
  10. year2000

    Videos size in iframes??

    Hey Sean, Your problem is a simple one. All you need to do is to specify a style for your IFRAME, to prevent it from showing scrollbars. As far as fullsize video is concerned, you can specify the video height and width to iframe height and width. I hope it will solve your problem.
  11. year2000

    size a pop-up window?

    Hey ZAV, Your problem is very simple. If you want to do it using DW, then you can do so using behaviour tab. WHen you select a behaviour, it will automatically give you onmouseover behaviour, which you need to change to onclick by clicking on it. Alternatively, you may switch to code view...
  12. year2000

    custom scrollbar?

    Congrats! Otherwise, you may simply customise your scrollbar, using CSS. Its very simple.
  13. year2000

    Placing iframes within an image design

    IFrames can be places anywhere within an HTML page. As far as positioning is concerned, either you place it in a table cell or you may use a style sheet. All you nned to do is to define IFrame withing the document and specify an inline style for positioning. After that on any desired event you...
  14. year2000

    Platform check

    Yeah why not? I will try to check it on other platforms! *** CHEERS ****
  15. year2000

    full page link

    Yes it is very easy.[dazed] You can always specify this within your javascript block. A typical code snippet will be like this- <script language=&quot;javascript&quot;> document.onClick=loadPage function loadPage() { window.location.href=&quot;your desired URL&quot;; return true; }...

Part and Inventory Search

Back
Top